@echo off
set ip=%computername:~4,3%
netsh interface ip set address name="本地连接" source=static addr=192.168.1.%ip% mask=255.255.255.0
pause
修改一个地方。红色部分。必须考虑3位数值的情况。我忽略了。
@echo off
set ip=%computername:~4,2%
netsh interface ip set address name="本地连接" source=static addr=192.168.1.%ip% mask=255.255.255.0
pause
看看这样可以吗。我还没有测试过。