要使用netsh来做这件事:
获取接口名称。
netsh interface show interface
启用接口。
netsh interface set interface "Interface Name" enabled
为了完成问题的解决,你可以创建一个快捷方式,让它在Windows启动时运行。例如,如果你的无线适配器在netsh中的名字是Wi-Fi,那么快捷方式就会是这样的(一行):
C:\Windows\System32\runas.exe /savecred /user:administrator "C:\Windows\System32\netsh.exe interface set interface \"Wi-Fi\" enabled"
runas命令可以确保以管理员身份运行该命令,这是将接口上移或下移所需要的。/savecred开关会保存凭证,第一次可能会被问到,但之后一般不会被问到。