답변:
모든 연결을 재설정하는 가장 우아한 방법은 PowerShell 일 수 있습니다. 이것을 .PS1 스크립트로 저장하고 관리자 권한으로 실행하십시오 .
Get-WMIObject Win32_NetworkAdapter -Filter "NetConnectionID LIKE '%'" | %{
netsh interface set interface "$($_.NetConnectionID)" DISABLED
Start-Sleep 3
netsh interface set interface "$($_.NetConnectionID)" ENABLED
}
이것을 배치로 저장 <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
(thx @laggingreflex)
netsh mbn connect interface=<interface_name> connmode=name name=<profile_name>
netsh mbn show interface