denrl 当前离线
列兵
TOP
xxpinqz (YiFeng)当前离线
中校
@echo off for /f "delims=." %%a in ('route print^|find "WAN (PPP/SLIP) Interface"') do ( echo ruote delete 1.48.0.0 echo route add 1.48.0.0 mask 255.254.0.0 30.30.30.1 if %%a ) pause复制代码
@echo off for /f "delims=." %%a in ('route print^|find "WAN (PPP/SLIP) Interface"') do ( route delete 1.48.0.0 route add 1.48.0.0 mask 255.254.0.0 30.30.30.1 if %%a )复制代码
@echo off for /f "delims=." %%a in ('route print^|find "WAN (PPP/SLIP) Interface"') do set "int=%%~na" echo route delete 1.48.0.0 echo route add 1.48.0.0 mask 255.254.0.0 30.30.30.1 if %int% pause复制代码