Board logo

标题: [系统相关] 批处理怎样修改计算机名和IP? [打印本页]

作者: xyboss    时间: 2011-5-24 19:09     标题: 批处理怎样修改计算机名和IP?

网吧。共有60台电脑 机器名从GAME01-GAME60,IP从192.168.1.1到192.168.1.60
求一批处理。可以根据机器名的后两位,自动更改机器名和IP。如:GAME01改为GAME101,IP改为192.168.1.101  也就是说。有机器名和IP的后两位都加1,如果IP最后只有一位。则自动加0.  
要求是不能重启电脑
求解各位大神如何写这段批处理。
作者: fengyun530    时间: 2011-5-24 22:15

@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位数值的情况。我忽略了。




欢迎光临 批处理之家 (http://bathome.net./) Powered by Discuz! 7.2