How to Resetting Network Adapter in Windows 10 (without restarting)?
I just found that on Windows 7, it can be done with another netsh command. Maybe this also works on Win 10?
First, find out the complete name of your network device you want to cycle:
netsh interface show interface
This will give you a list of available interfaces in your system like so (excuse the german :D):
Verw.-status Status Typ Schnittstellenname
-------------------------------------------------------------------------
Aktiviert Verbunden Dediziert LAN-Verbindung 3
Note down the name of the device you want to cycle as you will need it in a second.
Then, enter:
netsh interface set interface name="<YOUR-IF-NAME>" admin=DISABLED
This will disable the selected network device. After a few seconds, you should see the device status toggle (in the tray or network device list or wherever..).
Then, enter:
netsh interface set interface name="<YOUR-IF-NAME>" admin=ENABLED
This will start the interface up again and hopefully, your connection can then be established.
I have a similar issue, and use Disable
and then Enable
of the network adapter. That takes only 10 seconds total, and solves the issue consistently:
Right-click the icon, chose Open Network and Sharing Center
, there chose Change Adapter Settings
, right click, Disable
, and then right-click Enable
.
I can provide a suggestion. Restart the VPN service under services.msc. I've also tried disabling the network adapter and re-enabling it and using netsh commands. The only thing that did work was a restart at the time. My problem was that occasionally when I put my laptop into sleep and resume from that state, I won't have any access to the internet even though DHCP had given the correct gateway IP, DNS, and host IP address to my machine. I could ping my gateway and other devices on my private network but nothing beyond the WAN connection. When I restarted the VPN service, it immediately connected back online. My particular problem seemed to be a misconfiguration issue or bug associated with my VPN service after coming from a sleep state.