注意
需要以管理方式运行。
代码:
@echo off
cls
color 0A
@echo off
echo.
echo ===修改 [以太网] ip地址===
echo.
echo 1:自动获取
echo.
echo 2:重设ip地址
echo.
echo.
set/p sel=请选择修改方式:
if '%sel%'=='1' goto auto
if '%sel%'=='2' goto zt
echo 您没有选择修改方式。
goto end
:auto
netsh interface ip set address name = "以太网 2" source = dhcp
netsh interface ip set dns name = "以太网 2" source = dhcp
goto end
:zt
echo 正在更改IP地址,请稍等......
netsh interface ip set address name = "以太网 2" source=static addr=192.168.60.2 mask=255.255.0.0
echo 更改IP地址完成!
goto end
:end
Pause