[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
本帖最后由 idwma 于 2021-9-7 22:24 编辑
  1. for /f "tokens=3* delims= " %%i in ('netsh int show int') do (
  2. netsh int set int "%%j" disabled
  3. )
  4. for /f "tokens=3* delims= " %%i in ('netsh int show int') do (
  5. netsh int set int "%%j" enabled
  6. ping 163.com&&goto :eof
  7. )
复制代码

TOP

返回列表