Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Windows 7系統教程 >> win7常見問題解答 >> wind7批處理設置IP(腳本)

wind7批處理設置IP(腳本)

日期:2017/1/20 14:48:02      編輯:win7常見問題解答
說明:在x.x.x.x處填上自己的IP地址。   保存成“.bat”文件,以管理員身份運行即可。   代碼如下:      @echo off :main cls echo 請按提示操作... echo. echo 1 STI-HUST echo 2 Dian-HUST-711 echo 3 DHCP echo 4 Exit echo. set /p choice= Input a number: echo. if "%choice%"=="1" goto ip_STI if "%choice%"=="2" goto ip_Dian711 if "%choice%"=="3" goto ip_DHCP if "%choice%"=="4" goto ip_Exit goto main :ip_STI echo IP自動設置中... echo. echo 更新IP及子網掩碼 netsh interface ip set address name="本地連接" source=static addr=x.x.x.x mask=x.x.x.x gateway=x.x.x.x gwmetric=1 echo 更新DNS服務器 netsh interface ip set dns name="本地連接" source=static addr=x.x.x.x register=PRIMARY netsh interface ip add dns name="本地連接" addr=x.x.x.x echo 設置完成 pause exit if errorlevel 2 goto main if errorlevel 1 goto end   :ip_Dian711 echo IP自動設置中... echo. echo 更新IP及子網掩碼 netsh interface ip set address name="本地連接" source=static addr=x.x.x.x mask=x.x.x.x gateway=x.x.x.x gwmetric=1 echo 更新DNS服務器 netsh interface ip set dns name="本地連接" source=static addr=x.x.x.x register=PRIMARY netsh interface ip add dns name="本地連接" addr=x.x.x.x echo 設置完成 pause exit if errorlevel 2 goto main if errorlevel 1 goto end   :ip_DHCP netsh interface ip set address name="本地連接" source=dhcp netsh interface ip set dns name="本地連接" source=dhcp netsh interface ip set wins name="本地連接" source=dhcp echo 設置完成 pause exit if errorlevel 2 goto main if errorlevel 1 goto end   :ip_Exit exit
 
Copyright © Windows教程網 All Rights Reserved