更改IP地址的一个小批处理

贴上来一个更改IP地址最简捷的一个批处理,给大家分享
 
@echo off
rem eth  // 设置网卡名称,如"本地连接"
set eth="本地连接"
rem ip   // 设置IP地址
set ip=192.168.0.198
rem gw   // 设置网关
set gw=192.168.0.1
rem netmasks  //设置子网掩码
set netmasks=255.255.0.0
rem dns1    //设置主DNS
set dns1=202.106.0.20
rem dns2         //设置辅DNS
set dns2=202.106.127.1
echo 正在将本机IP更改到:%ip%
netsh interface ip set address "%eth%" static %ip% %netmasks% %gw% default
echo 正在添加本机主DNS:%dns1%
netsh interface ip set dns "%eth%" static %dns1%
echo 正在添加本机副DNS:%dns2%
netsh interface ip add dns "%eth%" %dns2%
echo -------------------------------------------
echo   IP更改完毕,如有冲突提示,请重新启动计算机.
echo -------------------------------------------
pause
close

你可能感兴趣的:(职场,批处理,IP地址,休闲)