Microsoft Windows Script Host 2.0 | 语言参考 |
将缺省打印机设置为指定的远程打印机。
object.SetDefaultPrinter strPrinterName
object
WshNetwork 对象。
strPrinterName
要被设置为缺省打印机的远程打印机名称,例如 "\\Server\Printer1"。
下例使用 AddPrinterConnection 方法将一台网络打印机连接到 LPT1:,然后将其设置为缺省打印机:
Set WshNetwork = WScript.CreateObject("WScript.Network")
WshNetwork.AddPrinterConnection "LPT1:", "\\Server\Print1"
WshNetwork.SetDefaultPrinter "\\Server\Print1"
AddPrinterConnection 方法 | AddWindowsPrinterConnection 方法 | EnumPrinterConnections 方法 | RemovePrinterConnection 方法
应用于: WshNetwork 对象