win10 同步批处理禁用和启用网卡

@ echo off
echo 正在启用超级管理员权限... 

%1 %2

ver|find "5.">nul&&goto :st

mshta vbscript:createobject("shell.application").shellexecute("%~s0","goto :st","","runas",1)(window.close)&goto :eof


:st

copy "%~0" "%windir%system32"

echo 启用超级管理员权限成功 

netsh interface set interface "以太网" disabled
netsh interface set interface "以太网" enabled

  

原文地址:https://www.cnblogs.com/xzlive/p/10097203.html