1

我正在尝试使用 Powershell 脚本在 Windows 7 x64 上自动安装打印机。到目前为止,我有一个脚本可以成功创建 TCP/IP 端口,但给了我一个错误 - The arguments are invalid,当它执行代码的打印机安装部分时。关于如何解决问题并通过 Powershell 成功安装打印机的任何想法?代码如下:

$hostAddress = "172.16.2.24" 
$portNumber = "9100"  
$computer = $env:COMPUTERNAME 

$wmi= [wmiclass]"\\$computer\root\cimv2:win32_tcpipPrinterPort" 
#$wmi.psbase.scope.options.enablePrivileges = $true 
$newPort = $wmi.createInstance() 

$newPort.hostAddress = $hostAddress 
$newPort.name = "IP_" + $hostAddress 
$newPort.portNumber = $portNumber 
$newPort.SNMPEnabled = $false 
$newPort.Protocol = 1 
$newPort.put()

CMD.EXE /C "printui.exe /if /b "Test Printer" /f C:\inetpub\wwwroot\ftp\Prdrivers\HP Universal Print Driver\pcl6-x64-5.7.0.16448\hpbuio100l.inf /r "IP_172.16.2.24" /m "HP Laser Jet P3015""

问题更新:这是有效的 CMD 代码,那么如何将其合并到上面的 Powershell 代码中?

printui.exe /if /b "HP Universal Printing PCL 6" /f "C:\inetpub\wwwroot\ftp\Prdrivers\HP Universal Print Driver\pcl6-x64-5.7.0.16448\hpbuio100l.inf" /u /r "IP_172.16.2.24" /m "HP Universal Printing PCL 6"
4

4 回答 4

2

要在双引号字符串中嵌入双引号,您需要对它们进行转义。由于您没有使用变量,因此使用单引号字符串更容易,例如:

CMD.EXE /C 'printui.exe /if /b "Test Printer" /f C:\inetpub\wwwroot\ftp\Prdrivers\HP Universal Print Driver\pcl6-x64-5.7.0.16448\hpbuio100l.inf /r "IP_172.16.2.24" /m "HP Laser Jet P3015"'

如果您需要在此字符串中使用 PowerShell 变量,则需要切换回双引号并转义必要的 DQ 字符,例如:

CMD.EXE /C "printui.exe /if /b `"$PrinterName`" /f C:\inetpub\wwwroot\ftp\Prdrivers\HP Universal Print Driver\pcl6-x64-5.7.0.16448\hpbuio100l.inf /r `"IP_172.16.2.24`" /m `"HP Laser Jet P3015`""
于 2013-11-12T18:06:48.613 回答
2

抱歉,但我不确定您为什么要调用 CMD /C @PARAMS。我只是直接调用 printui.exe 并且它正在工作,我只双引号 Args

# Printer Info, I keep this in an SQL DB, and return these values with a query:
$printerID = "<PrinterNameOrID>"
$printerIP = "<PrinterIP>"
$printerPort = "IP_$printerIP"
$printerModel = "<PrinterModelFromINF>"
$driverINFPath = "<UNCPathToDriverINF>"

# Build a new Local TCP Printer Port, naming it with values unique to the Printer ID:
$newPort = ([wmiclass]"Win32_TcpIpPrinterPort").CreateInstance()
$newPort.HostAddress = $printerIP
$newPort.Name = $printerPort
$newPort.PortNumber = "9100"
$newPort.Protocol = 1
$newPort.Put()

# Add the printer
printui.exe /if /b "$printerID" /f "$driverINFPath" /u /r "$printerPort" /m "$printerModel"
于 2014-05-28T01:41:41.747 回答
1

我知道这已经得到解答,但您可以借用我在此 Excel 工作簿中的代码(文章中有链接)。我意识到它使用 VBS,但这些是内置在 Windows 中的脚本,剪切/粘贴到 Excel 中为我节省了很多次,我已经以这种方式安装了数千台打印机

打印机创建的最佳工具-excel-vs-打印-管理-控制台

于 2013-12-18T05:37:59.537 回答
0

试试这个:

runas /user:Contoso.com\user1 "printui.exe /if /b \"Test Printer\" /f \"C:\inetpub\wwwroot\ftp\Prdrivers\HP Universal Print Driver\pcl6-x64-5.7.0.16448\hpbuio100l.inf\" /r \"IP_172.16.2.24\" /m \"HP Laser Jet P3015\""
于 2014-08-22T12:43:45.517 回答