欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

windows下通过批处理快速批量更换IP方法

程序员文章站 2022-06-23 18:43:58
复制代码 代码如下:@echo offrem eth //eth 为网卡名称,可在网络连接中查询,如”本地链接”set eth=”无线网络连接”rem ip //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