[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[网络连接] 循环修改路由跳数的批处理无法运行,请问怎么修改?

本帖最后由 mlc8686 于 2015-6-24 12:08 编辑

我自己乱写的,通过判断接口跳数,从而达到循环修改路由跳数。加了“for /f tokens^=2^ delims^=^" %%i in (%temp%\1.txt) do set n=%%i”
却不能运行了,麻烦大家看看是什么问题。
  1. @echo off
  2. wmic nicconfig where index=14 get DefaultIPGateway /value | findstr /c:"{" >%temp%\1.txt
  3. for /f tokens^=2^ delims^=^" %%i in (%temp%\1.txt) do set n=%%i
  4. 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
  5. pause
复制代码

第 2 行修改为:
  1. for /f "tokens=2 delims=" %%i in ('type "%temp%\1.txt"') do (set "n=%%i")
复制代码
『千江有水千江月』千江有水,月映千江;万里无云,万里青天。    http://yu2n.qiniudn.com/

TOP

回复 2# yu2n


    不能运行,是替换第二行吗?还是第三行? 我替换的第三行后,运行结果如图:

TOP

回复 3# mlc8686

第 1、5 行目前正确。
『千江有水千江月』千江有水,月映千江;万里无云,万里青天。    http://yu2n.qiniudn.com/

TOP

回复 4# yu2n


    教教我吧,谢谢。

TOP

还真乱写 这样吗
  1. @echo off
  2. for /f "skip=1tokens=2 delims={}" %%i in ('wmic Nicconfig where "Index='7'" get DefaultIPGateway /value') do set n=%%~i
  3. echo %n%
  4. pause
复制代码

TOP

返回列表