@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
看看这样可以吗。我还没有测试过。作者: fengyun530 时间: 2011-5-24 22:16
@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位数值的情况。我忽略了。