Windows – No internet connectivity after uninstalling VPN in win10

internet connectionvpnwindows 10wireless-networking

A barracuda VPN client was installed in my windows 10 machine which was not working. I simply uninstalled the VPN and restarted my machine as required. Since the next boot my windows can't access internet through either wifi or Ethernet port. It can connect to the wifi hotspot though but always says "No internet". Same goes for ethernet port too.

I am sure that my wifi is working because I'm using my mobile to ask this question here that is using the same hotspot.

Please help. The only way left at this moment is to reinstall the OS which I'm trying to avoid.

Best Answer

Reinitialise the network states

Run the following commands in a cmd shell:

  • Reset WINSOCK entries to installation defaults:

    netsh winsock reset catalog
    
  • Reset TCP/IP stack to installation defaults:

    netsh int ip reset reset.log
    
  • Reset Firewall to installation defaults:

    netsh advfirewall reset
    
  • Flush DNS resolver cache :

    ipconfig /flushdns
    
  • Renew DNS client registration and refresh DHCP leases:

    ipconfig /registerdns
    
  • Flush routing table:

    route /f 
    

    (reboot required)


Further Reading

Related Question