标题: [网络连接] 循环修改路由跳数的批处理无法运行,请问怎么修改? [打印本页]
作者: mlc8686 时间: 2015-6-20 16:19 标题: 循环修改路由跳数的批处理无法运行,请问怎么修改?
本帖最后由 mlc8686 于 2015-6-24 12:08 编辑
我自己乱写的,通过判断接口跳数,从而达到循环修改路由跳数。加了“for /f tokens^=2^ delims^=^" %%i in (%temp%\1.txt) do set n=%%i”
却不能运行了,麻烦大家看看是什么问题。- @echo off
- wmic nicconfig where index=14 get DefaultIPGateway /value | findstr /c:"{" >%temp%\1.txt
- for /f tokens^=2^ delims^=^" %%i in (%temp%\1.txt) do set n=%%i
- netsh interface ipv4 show interface | findstr /c:"14 1" && netsh interface ipv4 set interface "14" metric=5 | netsh interface ipv4 set interface "16" metric=1 | route change 0.0.0.0 mask 0.0.0.0 %n% metric 100 if 14 || netsh interface ipv4 set interface "14" metric=1 | netsh interface ipv4 set interface "16" metric=5 | route change 0.0.0.0 mask 0.0.0.0 %n% metric 1 if 14
- pause
复制代码
作者: yu2n 时间: 2015-6-22 09:02
第 2 行修改为:- for /f "tokens=2 delims=" %%i in ('type "%temp%\1.txt"') do (set "n=%%i")
复制代码
作者: mlc8686 时间: 2015-6-22 21:35
回复 2# yu2n
不能运行,是替换第二行吗?还是第三行? 我替换的第三行后,运行结果如图:
作者: yu2n 时间: 2015-6-22 21:40
回复 3# mlc8686
第 1、5 行目前正确。
作者: mlc8686 时间: 2015-6-23 09:42
回复 4# yu2n
教教我吧,谢谢。
作者: terse 时间: 2015-6-24 02:19
还真乱写 这样吗- @echo off
- for /f "skip=1tokens=2 delims={}" %%i in ('wmic Nicconfig where "Index='7'" get DefaultIPGateway /value') do set n=%%~i
- echo %n%
- pause
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |