wind批处理设置IP(脚本) 说明在xxxx处填上自己的IP地址 保存成“bat”文件以管理员身份运行即可 代码如下 @echo off :main cls echo 请按提示操作 echo echo STIHUST echo DianHUST echo DHCP echo Exit echo set /p choice= Input a number: echo if "%choice%"=="" goto ip_STI if "%choice%"=="" goto ip_Dian if "%choice%"=="" goto ip_DHCP if "%choice%"=="" goto ip_Exit goto main :ip_STI echo IP自动设置中 echo echo 更新IP及子网掩码 netsh interface ip set address name="本地连接" source=static addr=xxxx mask=xxxx gateway=xxxx gwmetric= echo 更新DNS服务器 netsh interface ip set dns name="本地连接" source=static addr=xxxx register=PRIMARY netsh interface ip add dns name="本地连接" addr=xxxx echo 设置完成 pause exit if errorlevel goto main if errorlevel goto end :ip_Dian echo IP自动设置中 echo echo 更新IP及子网掩码 netsh interface ip set address name="本地连接" source=static addr=xxxx mask=xxxx gateway=xxxx gwmetric= echo 更新DNS服务器 netsh interface ip set dns name="本地连接" source=static addr=xxxx register=PRIMARY netsh interface ip add dns name="本地连接" addr=xxxx echo 设置完成 pause exit if errorlevel goto main if errorlevel 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 goto main if errorlevel goto end :ip_Exit exit |