windows 快速批处理更换IP

2014-08-18 17:18:47  阅读 2610 次 评论 0 条

办公室电脑与自己的电脑网络不属于同一IP断,经常要来回切换,故百度出如下代码,记录下

@echo off
rem eth //eth 为网卡名称,可在网络连接中查询,如”本地链接”
set eth=”无线网络连接”
rem ip //ip 为你想更改的IP
set ip=192.168.1.8
rem gw //gw 为网关地址
set gw=192.168.1.1
rem netmasks //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

本文地址:http://ee123.net/post/40.html
版权声明:本文为原创文章,版权归 廖文杰 所有,欢迎分享本文,转载请保留出处!

发表评论


表情

还没有留言,还不快点抢沙发?