Posted on 2007-09-22 22:38 Gin 阅读(724)
评论(1) 编辑 收藏
@echo off
rem eth //eth 为网卡名称,可在网络连接中查询,如"本地链接"
set eth="VMware Network Adapter VMnet8"
rem ip //ip 为你想更改的IP
set ip=192.168.144.1
rem gw //gw 为网关地址
set gw=none
rem netmasks //netmasks 为子网掩码
set netmasks=255.255.255.0
echo 正在将%eth%的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 /all
echo.........................
echo 成功将%eth%的IP更改为%ip%!
pause
close