一旦發生這種情況,有沒有辦法自動執行重撥過程?
答案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 上的原因是駕駛員喜歡與可用的東西保持連接,遵循「如果它沒有壞,就不要修理它」。
至於修復。看來誰製造了驅動程式就需要修復它。