使用指令的方式修改(設定)電腦的ip

>> 2011年2月11日 星期五

無意間找到的資料,紀錄起來,以後可以使用。

有時候如果需要批次進行好幾台電腦的ip設定,或者要讓使用者第一次登入的時候就進行電腦的ip設定,等等這些需求,可以透過指令或批次檔的方式進行,寫好得批次檔指令如下:

@echo off
netsh interface ip set address name="區域連線" source=static addr=192.168.%1% mask=255.255.255.0
netsh interface ip set address name="區域連線" gateway=192.168.1.254 gwmetric=1
netsh interface ip set dns name="區域連線" source=static addr=192.168.1.3
netsh interface ip add dns name="區域連線" addr=192.168.1.1
netsh interface ip set wins name="區域連線" source=static addr=192.168.1.5
netsh interface ip add wins name="區域連線" addr=192.168.1.4
wmic.exe ComputerSystem Where Name="%ComputerName%" Rename Name="%2"
 怎麼應用,就看你批次檔要再如何改囉~

About This Blog

程式碼標示

  © Free Blogger Templates Joy by Ourblogtemplates.com 2008

Back to TOP