@echo off
rem eth
set eth="本地连接"
rem ip
set ip=192.168.0.8
rem gw
set gw=192.168.0.254
rem netmasks
set netmasks=255.255.255.0
echo 正在将本机IP更改到: %ip%
rem
if %gw%==none netsh interface ip set address %eth% static %ip% %netmasks% %gw% > nul
if not %gw%==none netsh interface ip set address %eth% static %ip% %netmasks% %gw% 1 > nul
echo.........................
echo 检查当前本机IP:
ipconfig
echo.........................
echo 成功将本机IP更改为%ip%!
pause
close
然后把以上内容保存在一个txt文档中,然后将后缀名修改为bat即可。
可以根据自己的需要调整。
posted on 2007-11-17 15:58
windone 阅读(1287)
评论(2) 编辑 收藏 引用 所属分类:
计算机软件