久久精品人人爽,华人av在线,亚洲性视频网站,欧美专区一二三

批處理如何安裝網絡打印機

152次閱讀
沒有評論

共計 3328 個字符,預計需要花費 9 分鐘才能閱讀完成。

這篇文章主要為大家展示了“批處理如何安裝網絡打印機”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓丸趣 TV 小編帶領大家一起研究并學習一下“批處理如何安裝網絡打印機”這篇文章吧。

*Because there are many Windows computers in the company, using traditional manual steps to install printer drivers step by step is really too cumbersome and wasting time. Now we want to implement script installation of network printers.

@echo on
echo     Auto to inistall print driver!!!

color 0a

rem 以下是判斷端口
set count=0
:addreginfo
set /a count=%count%+1
if exist 打印機 %count%.txt (set filename= 打印機 %count%.txt) else (goto eof)
for /f tokens=2 delims== %%a in (type %filename% ^|findstr /I 打印機 IP=) do set pIP=%%a

if /I %pIP% == LPT1: goto addreginfo
if /I %pIP% == LPT2: goto addreginfo

rem 以下是添加端口在注冊表中的信息
set regpath2=HKEYLOCALMACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors\Standard TCP/IP Port\Ports\IP
set regpath3=HKEYLOCALMACHINE\SYSTEM\ControlSet001\Control\Print\Monitors\Standard TCP/IP Port\Ports\IP
@echo off
:addreg1
@reg add %regpath2%%pip% /v Protocol /d 00000001 /f /t REGDWORD nul 2 nul
@reg add %regpath2%%pip% /v Version /d 00000001 /f /t REGDWORD nul 2 nul
@reg add %regpath2%%pip% /v HostName /d /f nul 2 nul
@reg add %regpath2%%pip% /v IPAddress /d %pip% /f nul 2 nul
@reg add %regpath2%%pip% /v HWAddress /d /f nul 2 nul
@reg add %regpath2%%pip% /v PortNumber /d 9100 /f /t REGDWORD nul 2 nul
@reg add %regpath2%%pip% /v SNMP Community /d public /f nul 2 nul
@reg add %regpath2%%pip% /v SNMP Enabled /d 00000000 /f /t REGDWORD nul 2 nul
@reg add %regpath2%%pip% /v SNMP Index /d 00000001 /f /t REGDWORD nul 2 nul

:addreg2
@reg add %regpath3%%pip% /v Protocol /d 00000001 /f /t REGDWORD nul 2 nul
@reg add %regpath3%%pip% /v Version /d 00000001 /f /t REGDWORD nul 2 nul
@reg add %regpath3%%pip% /v HostName /d /f nul 2 nul
@reg add %regpath3%%pip% /v IPAddress /d %pip% /f nul 2 nul
@reg add %regpath3%%pip% /v HWAddress /d /f nul 2 nul
@reg add %regpath3%%pip% /v PortNumber /d 9100 /f /t REGDWORD nul 2 nul
@reg add %regpath3%%pip% /v SNMP Community /d public /f nul 2 nul
@reg add %regpath3%%pip% /v SNMP Enabled /d 00000000 /f /t REGDWORD nul 2 nul
@reg add %regpath3%%pip% /v SNMP Index /d 00000001 /f /t REGDWORD nul 2 nul
goto addreginfo
:eof

rem 以下是重新啟動打印服務,使新端口生效
:restartservice
cls
echo.           Don`t close this window, you are adding a printer. Please wait a minute.

echo.
echo 正在啟用打印機端口 …
echo.
net stop spooler nul 2 nul
net start spooler nul 2 nul

rundll32 printui.dll,PrintUIEntry /dl /n TOSHIBA e-STUDIO455Series PCL6 /f %pinf% /r %pIP% /q

rem 以下是添加打印機
set count=0
:instprinter
set /a count=%count%+1
if exist 打印機 %count%.txt (set filename= 打印機 %count%.txt) else (goto over)

for /f tokens=2 delims== %%a in (type %filename% ^|findstr 打印機 IP=) do set pIP=%%a
for /f tokens=2 delims== %%a in (type %filename% ^|findstr 打印機名稱 =) do set pname=%%a
for /f tokens=2 delims== %%a in (type %filename% ^|findstr 打印機型號 =) do set pmodel=%%a
for /f tokens=2 delims== %%a in (type %filename% ^|findstr 打印機 INF 位置 =) do set pinf=%%a
echo.

echo.
echo.Already added, the printer information is as follows:
echo.
echo  IP  :%pIP%
echo 名稱:%pname%
echo 型號:%pmodel%
:echo 驅動:%pinf%
if /I %pIP% == LPT1: (goto ok)
if /I %pIP% == LPT2: (goto ok) else (set pip=IP%pip%)
:ok
rundll32 printui.dll,PrintUIEntry /if /b %pname% /f %pinf% /r %pIP% /m %pmodel%
goto instprinter
:over
echo.
color 0b
echo  If you have any problems, please contact the administrator.
pause
exit
echo 請按任意鍵退出
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ *

網絡打印服務器配置文件“打印機 1.txt”的內容:

打印機 IP=172.16.9.2
打印機名稱 =TOSHIBA e-STUDIO
打印機型號 =TOSHIBA e-STUDIO455Series PCL6
打印機 INF 位置 =E:\TOSHIBA_64\110104_Loire_CDV210_CN_XP_VISTA_X64_PLC6\Driver\eS4px6.inf

本地打印機配置文件“打印機 2.txt”的內容:
打印機 IP=LPT1:
打印機名稱 = 本地 HP 3050
打印機型號 =HP LaserJet 3050 Series PCL 5e
打印機 INF 位置 =D:\sysbak\ 打印機 \hp3055\Drivers\2K_XP_Vista\hppcp501.inf

以上是“批處理如何安裝網絡打印機”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注丸趣 TV 行業資訊頻道!

正文完
 
丸趣
版權聲明:本站原創文章,由 丸趣 2023-08-25發表,共計3328字。
轉載說明:除特殊說明外本站除技術相關以外文章皆由網絡搜集發布,轉載請注明出處。
評論(沒有評論)
主站蜘蛛池模板: 额敏县| 自治县| 忻城县| 长子县| 都兰县| 建阳市| 利津县| 鹤壁市| 鹰潭市| 夏邑县| 漳平市| 青铜峡市| 运城市| 扶风县| 五大连池市| 正安县| 巧家县| 罗田县| 余庆县| 德昌县| 沧源| 阿图什市| 昌黎县| 阿克苏市| 津市市| 华蓥市| 辛集市| 老河口市| 喜德县| 简阳市| 海宁市| SHOW| 安顺市| 天峨县| 微山县| 攀枝花市| 山阳县| 博湖县| 天台县| 德化县| 九龙坡区|