0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

プリンタのインストール(自動化)

Last updated at Posted at 2022-06-14

事前にドライバをダウンロードしておき、その中のinfファイルから必要な情報を把握します。
ドライバ名やプリンタポートを間違えるとエラーになるため、ご注意ください。
①プリンタドライバのインストール
 cd C:\Windows\System32\Printing_Admin_Scripts\ja-JP
 cscript prndrvr.vbs -a -m 「ドライバ名」 -v 3 -e "windows x64" -h 「ドライバフォルダへのフルパス」-i 「INFファイルのフルパス」
②ポートの設定
 cscript prnport.vbs -a -r「ポート名」 -h 「IP」 -o raw -n 9100
③プリンタのインストール
 cscript prnmngr.vbs -a -p 「プリンタ名」 -m 「プリンタドライバ」 -r IP_192.168.1.100

2台のプリンタを同時に入れるスクリプトは、例えば以下のように書けば動作します。

REM プリンタ2台の設定例--------------------★

cd C:\Windows\System32\Printing_Admin_Scripts\ja-JP\

REM プリンタドライバのインストール
cscript prndrvr.vbs -a -m "Canon Generic Plus LIPSLX" -v 3 -e "windows x64" -h  "C:\Users\accounttestuser\Desktop\wingpluslipslxv260x6400\x64\Driver" -i  "C:\Users\accounttestuser\Desktop\wingpluslipslxv260x6400\x64\Driver\CNLB0MA64.INF"

REM プリンタポートの作成①
cscript prnport.vbs -a -r IP_192.168.1.40 -h 192.168.1.40 -o raw -n 9100

REM プリンタ作成(インストール)①
cscript prnmngr.vbs -a -p "LBP443i" -m "Canon Generic Plus LIPSLX" -r IP_192.168.1.40

REM 'プリンタポートの作成②
cd C:\Windows\System32\Printing_Admin_Scripts\ja-JP\
cscript prnport.vbs -a -r IP_192.168.1.41 -h 192.168.1.41 -o raw -n 9100

REM 'プリンタ作成(インストール)②
cd C:\Windows\System32\Printing_Admin_Scripts\ja-JP\
cscript prnmngr.vbs -a -p "LBP8730" -m "Canon Generic Plus LIPSLX" -r IP_192.168.1.41
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?