用bat批处理自动修改本机IP地址

@ECHO OFF
@ECHO ----------  设置本机IP地址  ----------
if {%1}=={} netsh interface IP set address "本地连接" static 192.168.1.88 255.255.255.0 >nul
if NOT {%1}=={} netsh interface IP set address "本地连接" static %1 255.255.255.0 >nul
netsh interface IP set address "本地连接" static gateway=192.168.1.1 gwmetric=1 >nul
@ECHO.
@ECHO 设置成功!
netsh interface IP set dns "本地连接" static 202.96.128.86 >nul
netsh interface ip add dns "本地连接" 202.96.128.166 index=2 >nul

设置完成后系统变成这样:

可根据需要修改

用bat批处理自动修改本机IP地址