Microsoft Windows Script Host 2.0 | 语言参考 |
将 strRemoteName 指定的远程打印机映射到本地资源名 strLocalName。
object.AddPrinterConnection strLocalName, strRemoteName[,bUpdateProfile][,strUser][,strPassword]
object
WshNetwork 对象。
strLocalName
本地打印机资源
strRemoteName
远程打印机资源。
bUpdateProfile
可选项。如果提供了 bUpdateProfile 而且其值为 TRUE,则该映射被保存在用户的配置文件中。
strUser
可选项。如果在映射远程打印机时使用了与当前用户不同的帐号,可以指定 strUser 和 strPassword。
strPassword
可选项。如果在映射远程打印机时使用了与当前用户不同的帐号,可以指定 strUser 和 strPassword。
下例使用 AddPrinterConnection 方法将一台网络打印机连接到 LPT1 端口。
Set WshNetwork = CreateObject("WScript.Network")
WshNetwork.AddPrinterConnection "LPT1", "\\Server\Print1"
AddWindowsPrinterConnection 方法 | EnumPrinterConnections 方法 | RemovePrinterConnection 方法 | SetDefaultPrinter 方法
应用于: WshNetwork 对象