Created
January 29, 2019 22:21
-
-
Save scheffler/dbda14fddf29cb89d1b0432a8982db47 to your computer and use it in GitHub Desktop.
Resolve 'modem' in use vpn connection issue in Windows 10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # 'Modem in use' vpn issue can be resolved by resetting the newtork stack. Run this from an elevated perm powershell | |
| # | |
| # https://support.microsoft.com/en-us/help/10741/windows-fix-network-connection-issues | |
| # | |
| netsh winsock reset | |
| netsh int ip reset | |
| ipconfig /release | |
| ipconfig /renew | |
| ipconfig /flushdns | |
| Restart-Computer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment