Skip to content

Instantly share code, notes, and snippets.

@scheffler
Created January 29, 2019 22:21
Show Gist options
  • Select an option

  • Save scheffler/dbda14fddf29cb89d1b0432a8982db47 to your computer and use it in GitHub Desktop.

Select an option

Save scheffler/dbda14fddf29cb89d1b0432a8982db47 to your computer and use it in GitHub Desktop.
Resolve 'modem' in use vpn connection issue in Windows 10
#
# '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