使用批处理自动安装网络打印机

更新时间:2023-08-06 04:20:01 阅读量: 实用文档 文档下载

说明:文章内容仅供预览,部分内容可能不全。下载后的文档,内容与下面显示的完全一致。下载之前请确认下面内容是否您想要的,是否完整无缺。

使用批处理自动安装网络打印机

使用批处理自动安装网络打印机

文章转载自:http://www.77cn.com.cn/racukasei/blog/item/d7829f3329fd5e94a8018ec2.html
作者:racukasei


先将以下代码保存成为Add_Printer_Port.reg文件,用于创建网络打印机使用的标准TCP/IP端口:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors\Standard TCP/IP Port\Ports]
"StatusUpdateInterval"=dword:0000000a
"StatusUpdateEnabled"=dword:00000001

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors\Standard TCP/IP Port\Ports\IP_10.xx.xx.xx]
"Protocol"=dword:00000001
"Version"=dword:00000001
"HostName"=""
"IPAddress"="10.xx.xx.xx"
"HWAddress"=""
"PortNumber"=dword:0000238c
"SNMP Community"="public"
"SNMP Enabled"=dword:00000001
"SNMP Index"=dword:00000001


然后使用rundll32 printui.dll,PrintUIEntry的方法可以为客户端安装网络打印机,驱动程序位于客户端可以访问的网络路径上,参考以下示例:

REM #*************************************************************************************
REM #
REM # Modified by Acer for YK Printer hp LaserJet 1300 PS in Dec 06 2005
REM # 使用此脚本需要本地安装驱动的权限
REM #
REM #*************************************************************************************

@echo off

cls
echo Please log on as administrator to run this script.
echo Press any key or use Ctrl+C to terminate the script and log on as administrator.
pause

echo.
echo Import Standard TCP/IP Port register info
regedit /s Add_Printer_Port.reg

echo.
echo After making changes to the registry, the Spooler service must be restarted for the new ports to be available.
net stop spooler & net start spooler

REM #*************************************************************************************
REM #
REM # /ia 用 inf 文件安装打印机驱动程序
REM # /if 用 inf 文件安装打印机
REM # /b[name] 基本打印机名
REM # /c[name] 如果操作在远程机器上,unc 机器名
REM # /dl 删除本地打印机
REM # /dn 删除网络打印机连接
REM # /dd 删除打印机驱动程序
REM # /f[file] inf 文件或输出文件
REM # /h[arch] 驱动程序体系结构,为下列之一: Alpha | Intel | IA64
REM # /m[model] 打印机驱动程序型号名
REM # /n[name] 打印机名
REM # /v[version] 驱动程序版本属于下列中的一个: Windows 95、98 和 ME | Windows NT 4.0 | Windows NT 4.0 或 2000 | Windows 2000 或 XP| Windows XP
REM # /q 安静模式,不显示错误信息
REM # /r[port] 端口名
REM # /y 将打印机设为默认打印机
REM # /z 不要自动共享这台打印机
REM # /Z 共享这台打印机,只能跟 /if 选项一起使用
REM #
REM #
REM # 更多的帮助请使用rundll32 printui.dll,PrintUIEntry /?
REM #
REM #*************************************************************************************

echo Remove existing Printer with the same Name t

使用批处理自动安装网络打印机

o avoid getting copy after copy
rundll32 printui.dll,PrintUIEntry /dl /n "hp LaserJet 1300 PS" /q

echo .
echo Installing hp LaserJet 1300 PS Printer......
rundll32 printui.dll,PrintUIEntry /if /b "hp LaserJet 1300 PS" /f "\MyServerPrint Drivershp1300Nlj1300pswin2kxp-schp1300mp.inf" /r "IP_10.xx.xx.xx" /m "hp LaserJet 1300 PS" /z

其中/m参数后面的打印机驱动程序型号名为inf文件中用于指明驱动的打印机名称,一般在使用向导安装的时候在选定inf文件后出来的所有驱动名称中你自己需要的那个。

安装好打印机后,也可以在批处理文件最后加一行命令,把这个打印机设置为默认。

echo.
echo Set this printer as default......
rundll32 printui.dll,PrintUIEntry /y /n "hp LaserJet 1300 PS"


本文来源:https://www.bwwdw.com/article/itum.html

Top