一旦发生这种情况,有没有办法可以自动执行重拨过程?
答案1
[PowerShell] 禁用+启用所有连接
重置所有连接最优雅的方法可能是 PowerShell。将其保存为 .PS1 脚本,然后使用以下命令执行行政权利。
Get-WMIObject Win32_NetworkAdapter -Filter "NetConnectionID LIKE '%'" | %{
netsh interface set interface "$($_.NetConnectionID)" DISABLED
Start-Sleep 3
netsh interface set interface "$($_.NetConnectionID)" ENABLED
}
[CMD]禁用+启用连接
将其保存在批处理中并以管理员身份执行,其中<interface_name>
代表您要禁用并重新启用的界面。
netsh interface set interface <interface_name> disabled
ping -n 5 127.0.0.1 > NUL
netsh interface set interface <interface_name> enabled
- 要获取正确的接口名称,请键入
netsh interface show interface
- 当接口名称包含空格时,用引号括起来(否则不包含)
- ping 命令只需暂停 5 秒即可看到效果网络和共享中心
[CMD]重新连接移动连接
(感谢@laggingreflex)
netsh mbn connect interface=<interface_name> connmode=name name=<profile_name>
答案2
它留在 EDGE 上的原因是驾驶员喜欢与可以正常工作的事物保持连接,遵循“如果它没坏,就不要修理它”。
至于修复。看来无论是谁制作了驱动程序都需要修复它。