首页 > 代码库 > 使用DOS批处理更改IP地址

使用DOS批处理更改IP地址

有时候电脑在家需要自动获取IP,在公司需要手动填写IP,改来改去很麻烦,于是做一个批处理一键修改很方便:

@echo offclscolor 0A @echo offecho.echo ===修改 [本地连接] ip地址===echo.echo 1:自动获取echo.echo 2:重通ip地址echo.echo.set/p sel=请选择修改方式:if "%sel%"=="1" goto autoif "%sel%"=="2" goto ztecho 您没有选择修改方式。goto end :autonetsh interface ip set address name="本地连接" source=dhcpnetsh interface ip delete dns "本地连接" allipconfig /flushdnsipconfig /allgoto end :ztecho 正在更改IP地址,请稍等......netsh interface ip set address name="本地连接" source=static addr=10.12.12.125 mask=255.255.255.0 gateway=10.12.12.12 gwmetric=1netsh interface ip set dns name="本地连接" source=static addr=10.13.107.51netsh interface ip add dns name="本地连接" addr=8.8.8.8 index=2 ipconfig /flushdnsipconfig /allecho 更改IP地址完成!goto end :endpause

拷贝以上DOS命令保存为BAT文件(参数可自行修改),双击运行即可