@echo off
echo.
echo 修改ip地址,1为自动获取ip地址,2为修改ip地址192.168.2.2
echo.
set sel=
set/p sel=请选择修改方式:
if "%sel%"=="1" goto auto
if "%sel%"=="2" goto manual
echo 您没有选择修改方式。
goto end
:auto
echo 正在更改IP地址,请稍等......
netsh interface ip set address name="本地连接 2" source=dhcp
@rem echo 正在更改DNS地址,请稍等......
@rem netsh interface ip set dns name="本地连接 2" source=dhcp
echo 更改IP地址完成!
goto end
:manual
echo 正在更改IP地址,请稍等......
netsh interface ip add address "本地连接 2" 192.168.2.2 255.255.255.0
@rem echo 正在更改DNS地址,请稍等......
@rem netsh interface ip set dns name="本地连接 2" source=dhcp
echo 更改IP地址完成!
goto end
:end
echo. & pause
存为xxxx.bat
阅读(2539) | 评论(0) | 转发(0) |