Windows Networking

When to use Windows network reset

Practical Windows guide: when to use Windows network reset without the usual guesswork.

10 min read Beginner Updated 9 Jun 2026

Step-by-step guide

Work through each section in order. Stop when your issue is resolved — you do not need every step for every situation.

Warning

Network reset removes and reinstalls all network adapters, resets VPN profiles, and forgets Wi‑Fi passwords. Use only after simpler fixes fail.

What you will achieve

Know when Windows network reset is appropriate, what it destroys, and how to run it safely on Windows 11/10.

1) Try these before reset

  1. Run ipconfig /flushdns and reboot the router and PC.
  2. Disable and re-enable the adapter in Settings → Network & internet → Advanced network settings.
  3. Run the built-in troubleshooter: Settings → System → Troubleshoot → Other troubleshooters → Network Adapter.
  4. Reset Winsock: netsh winsock reset (reboot required) — lighter than full network reset.

2) When reset makes sense

  1. All adapters show limited connectivity despite a working router.
  2. VPN or virtual switches left the stack broken after uninstalling Hyper-V or third-party VPNs.
  3. Wi‑Fi connects but no DNS or DHCP after driver reinstall.

3) Run network reset

  1. Settings → Network & internet → Advanced network settings → Network reset.
  2. Click Reset now and confirm. The PC reboots automatically.
  3. Rejoin Wi‑Fi networks and reconfigure VPN connections manually afterward.

4) Command-line equivalent

netsh int ip reset
netsh winsock reset
shutdown /r /t 0

5) Document before reset

  1. Export VPN profiles, note static IPs, DNS suffixes, and proxy PAC URLs.
  2. Export Wi‑Fi profiles: netsh wlan export profile folder=C:\Temp key=clear.

6) Re-import Wi‑Fi after reset

netsh wlan add profile filename="C:\Temp\YourNetwork.xml"

7) Hyper-V virtual switch breakage

  1. Network reset removes vSwitch bindings — recreate switches in Hyper-V Manager after reset on dev PCs.

8) When NOT to reset

  1. Single app offline while browser works — fix app proxy or DNS, not entire stack.
  2. Domain-joined PC with 802.1X certificate auth — reset removes certs; re-enrol instead.
  3. Only Wi‑Fi fails — try netsh wlan delete profile name="BadProfile" before global reset.

Verification checklist

Post-reset checklist: Wi‑Fi rejoined, VPN reimported, static IP reapplied, Hyper-V vSwitch recreated if used. Document total downtime minutes for future go/no-go decisions.

  1. Reboot once after changes that affect services, drivers, or firmware.
  2. Confirm the original problem is resolved under normal daily use, not only immediately after the fix.
  3. Note date, Windows version (Settings → System → About), and what changed in your personal runbook for next time.

Quick reference paths

  • Settings → Network & internet → Advanced network settings → Network reset
  • netsh winsock reset
  • netsh int ip reset
  • Admin tools: press Win + X for Terminal (Admin), Device Manager, and Computer Management.

Related guides

11 network reset windows