将基于 MS-DOS 的远程打印机连接添加到计算机系统中。
object.AddPrinterConnection(strLocalName, strRemoteName[,bUpdateProfile][,strUser][,strPassword])
AddPrinterConnection 方法将网络打印机添加到 MS-DOS 打印机端口,如 LPT1。不能利用该方法添加基于 Windows 的远程打印机连接。要添加基于 Windows 的远程打印机连接,请使用 AddWindowsPrinterConnection 方法。
以下代码使用 AddPrinterConnection 方法将网络打印机连接到 LPT1。
Set WshNetwork = WScript.CreateObject("WScript.Network") WshNetwork.AddPrinterConnection "LPT1", "\\Server\Print1"
var WshNetwork = WScript.CreateObject("WScript.Network");
WshNetwork.AddPrinterConnection
("LPT1", "\\\\Server\\Print1");
WshNetwork 对象 | AddWindowsPrinterConnection 方法 | EnumPrinterConnections 方法 | RemovePrinterConnection 方法 | SetDefaultPrinter 方法