Windows 7使用.vbs scrpits添加网络打印机

时间:2018-06-13 09:10:35

标签: windows printing

我想使用目录C:\ Windows \ System32 \ Printing_Admin_Scripts中的vbs脚本添加网络打印机。

第一行有效:

cscript C:\Windows\System32\Printing_Admin_Scripts\de-DE\prnport.vbs -a -r IP_192.168.55.110 -h 192.168.55.110 -o raw -n 9100

但下一行:

cscript C:\Windows\System32\Printing_Admin_Scripts\de-DE\prndrvr.vbs -a -m "Xerox GPD PCL6 V4.1.585.13.0" -i  .\driver\x3UNIVX.inf -h .\driver

抛出错误: 无法添加打印机。 Xerox GPD PCL6 V4.1.585.13.0。 Win32-Errorcode 87。

我错了什么? 是否有更好的解决方案可以添加打印机并使用cmd或VB脚本安装驱动程序。

1 个答案:

答案 0 :(得分:0)

路径必须用引号引起来,并且您需要双反斜杠。

new_list = [{ k: v * 2 if k == 'two' else v for k,v in x.items()} for x in myList]
print (new_list)
[{'one': 1, 'two': 4, 'three': 3}, 
 {'one': 4, 'two': 10, 'three': 6}, 
 {'one': 7, 'two': 16, 'three': 9}]