使用命令行和批處理腳本修改windows系統靜態IP地址

系統爲win server 2012 英文版網絡

批處理腳本以下:spa

@echo off
set /p op="Command 1 MyIP 2 Internet IP:"

if "%op%" == "1" (
netsh interface ip set address name="Ethernet0" static addr=192.168.1.100 mask=255.255.255.0 gateway=192.168.1.1 gwmetric=1
echo MyIP Changed
) 

if "%op%" == "2" (
netsh interface ip set address name="Ethernet0" static addr=192.168.1.101 mask=255.255.255.0 gateway=192.168.1.1 gwmetric=1
echo Internet IP Changed
) 

pause

 

其中name後面的參數要與網絡和共享中心中相同,是英文就寫英文,是中文就寫中文的,寫在英文雙引號裏邊。code

執行結果以下:server

 

沒有報錯,就說明執行成功,能夠在本地鏈接中查看修改後的結果。blog

相關文章
相關標籤/搜索