制作批理文件(备份/恢复/修改网络参数)
发布网友
发布时间:2022-04-20 08:09
我来回答
共1个回答
热心网友
时间:2023-07-14 08:38
弄了一晚上,本来想只改网关的,但没找到好的方法,就先这个你试试吧。
@echo off
echo.
echo.
echo 根据配置文件更改IP地址
echo.
echo.
set choice=
set /p choice=1.备份 2.网关248 3.网关250 4.网关252 5.恢复 6.返回:
if /i "%choice%"=="" goto end
if /i "%choice%"=="1" goto backup
if /i "%choice%"=="2" goto g248
if /i "%choice%"=="3" goto g250
if /i "%choice%"=="4" goto g252
if /i "%choice%"=="5" goto restore
if /i "%choice%"=="6" goto end
:backup
netsh -c interface ip mp >IP设置备份.txt
goto end
:g248
rem 执行一次时网关不更改,不知为何。
netsh interface ip set address 1394 static addr=你的IP mask=你的掩码 gateway=192.168.8.248 1
netsh interface ip set address 1394 static addr=你的IP mask=你的掩码 gateway=192.168.8.248 1
goto end
:g250
netsh interface ip set address 1394 static addr=你的IP mask=你的掩码 gateway=192.168.8.250 1
netsh interface ip set address 1394 static addr=你的IP mask=你的掩码 gateway=192.168.8.250 1
goto end
:g252
netsh interface ip set address 1394 static addr=你的IP mask=你的掩码 gateway=192.168.8.252 1
netsh interface ip set address 1394 static addr=你的IP mask=你的掩码 gateway=192.168.8.252 1
goto end
:restore
netsh -f IP设置备份.txt
:end
echo 已更改IP配置
@echo on