@echo off
rem eth //eth 为网卡名称,可在网络链接中查询,如”本地链接”
set eth=”Local Area Connection”
rem ip //ip 为你想更改的IP
set ip=192.168.0.50
rem gw //gw 为网关地址
set gw=192.168.0.1
rem netmasks //netmasks 为子网掩码
set netmasks=255.255.255.0
echo Change IP Address to: %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 Check Current IP Address:
ipconfig
echo.
close
Leave a reply