命名为*.bat,例如命名为setip.bat
windows xp系统的设置如下:
@echo off
echo HTMer修改IP地址工具
echo 正在设置您的IP地址,请稍等......
netsh interface ip set address name="本地连接" source=static addr=58.0.99.124 mask=255.255.255.0
netsh interface ip set address name="本地连接" gateway=58.0.99.254 gwmetric=0
netsh interface ip delete dns "本地连接" all
netsh interface ip set wins name="本地连接" source=static addr=none
windows 7系统的设置如下:
@echo off
echo HTMer修改IP地址工具
echo 正在设置您的外网IP地址,请稍等......
netsh interface ip set address name="本地连接" static 58.0.183.213 255.255.255.0 58.0.183.254
其中:echo表示输出
netsh表示命令
@echo off
echo HTMer修改IP地址工具
echo 正在设置您的IP地址,请稍等......
netsh interface ip set address name="本地连接" source=static addr=58.0.99.124 mask=255.255.255.0
netsh interface ip set address name="本地连接" gateway=58.0.99.254 gwmetric=0
netsh interface ip delete dns "本地连接" all
netsh interface ip set wins name="本地连接" source=static addr=none
windows 7系统的设置如下:
@echo off
echo HTMer修改IP地址工具
echo 正在设置您的外网IP地址,请稍等......
netsh interface ip set address name="本地连接" static 58.0.183.213 255.255.255.0 58.0.183.254
其中:echo表示输出
netsh表示命令
没有评论:
发表评论