Back to Blog
troubleshootingwindowswifi speeddrivers

WiFi Slow After Windows Update? 8 Fixes That Actually Work

Did your WiFi slow down after a Windows update? You're not alone. Driver resets, changed TCP/IP settings, and power management tweaks are common culprits. Here are 8 proven fixes.

WiFi Speed TeamApril 3, 20268 min read

You installed a Windows update, rebooted, and now your WiFi feels like it’s crawling. Speeds that used to hit 300 Mbps are suddenly stuck at 30. Video calls stutter. Pages load slowly. The rest of your household is fine — it’s just your Windows PC.

This is a well-documented problem. Windows updates can silently change network adapter drivers, reset TCP/IP settings, modify power management policies, and alter network stack configurations. The good news: the fixes are almost always software-only and don’t require any hardware changes. Work through these eight steps in order, and you’ll almost certainly find the one that restores your speed.

Before you start: Run a speed test and write down your current speeds so you can compare after each fix.

Fix 1: Restart Your Router and PC

This sounds too simple, but Windows updates often leave the network stack in an inconsistent state until a full restart completes. If you haven’t fully shut down and restarted (not just sleep/wake), do that first. Also power-cycle your router and modem — unplug both, wait 30 seconds, plug the modem in first, wait for it to fully connect, then plug in the router.

A surprising number of post-update slowdowns resolve after a clean router restart, because Windows’s new network settings negotiate fresh parameters with the router.

Fix 2: Roll Back the Network Adapter Driver

Windows Update frequently installs new network adapter drivers as part of cumulative updates, and these can conflict with your hardware. Rolling back to the previous driver is often the fastest fix.

  1. Right-click the Start button and select Device Manager.
  2. Expand Network adapters and locate your WiFi adapter (e.g., “Intel Wi-Fi 6 AX201” or “Realtek RTL8821CE”).
  3. Right-click it and select Properties.
  4. Click the Driver tab, then click Roll Back Driver.
  5. Choose a reason and confirm. Restart when prompted.

If the Roll Back Driver button is greyed out, Windows doesn’t have a previous driver stored — skip to Fix 3.

Fix 3: Update Your Driver Directly From the Manufacturer

Windows Update drivers are often generic or outdated. Getting the latest driver directly from your adapter’s manufacturer — Intel, Realtek, Qualcomm, or Broadcom — usually delivers better performance and stability than whatever Windows auto-installed.

  1. In Device Manager, right-click your WiFi adapter and note the exact model name.
  2. Visit the manufacturer’s website and search for your adapter model.
  3. Download the latest driver package and run the installer.
  4. Restart your PC after installation.

For laptops, your laptop manufacturer (Dell, HP, Lenovo, ASUS) often provides optimized drivers for your exact hardware configuration on their support page — always prefer those over generic chipset drivers.

Fix 4: Reset the TCP/IP Stack and Winsock

Windows updates can corrupt or misconfigure the TCP/IP stack and Winsock catalog — the low-level networking components that all internet traffic flows through. Resetting them is safe and often dramatically improves speed.

Open Command Prompt as Administrator (search for “cmd”, right-click, select “Run as administrator”) and run these commands one at a time:

netsh winsock reset
netsh int ip reset
ipconfig /release
ipconfig /renew
ipconfig /flushdns

Restart your PC after running all five commands. The Winsock reset clears the catalog of registered network service providers. The TCP/IP reset rewrites key registry entries that govern how packets are sent and received. The ipconfig commands clear your IP lease and DNS cache.

Fix 5: Flush the DNS Cache

If you’re not seeing speed test improvements but web pages feel slow to load, your DNS cache may have been corrupted by the update. DNS lookups translate domain names (like google.com) into IP addresses — a stale or corrupted cache makes every new website load sluggishly.

Run this single command in an elevated Command Prompt:

ipconfig /flushdns

You should see: “Successfully flushed the DNS Resolver Cache.” No restart required. This is quick and harmless to run anytime.

Fix 6: Disable Network Adapter Power Management

Windows updates frequently reset power management settings, re-enabling a feature that tells Windows to power down your WiFi adapter to save battery. On desktops this is pointless; on laptops it causes intermittent drops and speed fluctuations as the adapter cycles in and out of low-power states.

  1. Open Device Manager and expand Network adapters.
  2. Right-click your WiFi adapter and select Properties.
  3. Click the Power Management tab.
  4. Uncheck “Allow the computer to turn off this device to save power.”
  5. Click OK.

Note for Windows 11 users: On systems using Modern Standby (S0 sleep mode), this Power Management tab may not appear for network adapters — Microsoft removed it because it’s handled differently in S0. If you don’t see the tab, proceed to Fix 7.

Fix 7: Set Wireless Adapter to Maximum Performance

Even if you disabled the Device Manager power setting, Windows Power Plans have a separate wireless adapter power-saving control that can throttle your WiFi speed. This setting often gets reset to “Medium Power Saving” after a feature update.

  1. Open Control Panel → Power Options (search “power options” in the Start menu).
  2. Click Change plan settings next to your active plan.
  3. Click Change advanced power settings.
  4. Expand Wireless Adapter Settings → Power Saving Mode.
  5. Change the value to Maximum Performance.
  6. Click Apply and OK.

This ensures your WiFi adapter always operates at full power, at the cost of slightly higher battery drain on laptops — a worthwhile trade-off if you’re usually plugged in.

Fix 8: Run Windows Network Reset

If none of the above fixes work, Windows includes a nuclear option: Network Reset. This reinstalls all network adapters and sets all networking components back to their defaults. It’s the equivalent of a factory reset for your network stack — it fixes almost everything but also removes any custom settings (VPN clients, static IPs, custom DNS servers).

  1. Open Settings → Network & Internet.
  2. Scroll down and click Advanced network settings.
  3. Click Network reset.
  4. Click Reset now and confirm.
  5. Your PC will restart automatically.

After the reset, Windows reinstalls all network adapters from scratch. You’ll need to reconnect to your WiFi network and re-enter the password. Any third-party VPN software will need to be reinstalled. But in most cases, post-update WiFi speed returns to normal immediately.

Why Windows Updates Cause WiFi Problems

Understanding why this happens can help you diagnose it faster next time:

  • Driver replacement: Cumulative updates and feature updates (like 24H2 or 25H2) frequently include updated or replaced inbox network drivers. The new driver may perform worse with your specific hardware.
  • Registry overwrites: Updates can reset TCP/IP registry values, including TCP Receive Window Auto-Tuning Level, which governs how efficiently large data transfers use your available bandwidth.
  • Power policy resets: Feature updates in particular are known to reset the wireless adapter power saving mode back to “Balanced” or “Medium Power Saving.”
  • Winsock corruption: Occasionally, an update will partially modify the Winsock catalog, leaving it in an inconsistent state that degrades throughput without outright breaking connectivity.

Quick Reference: Commands to Run

If you want to try the command-line fixes all at once, open an elevated Command Prompt and paste these:

netsh winsock reset
netsh int ip reset
ipconfig /release
ipconfig /flushdns
ipconfig /renew

Then restart your PC. This covers Fixes 4 and 5 in one shot and resolves the majority of post-update network issues.

Still Slow? Check Your Router

If your Windows PC is still slow after all eight fixes, run a speed test on a second device (phone or another laptop) connected to the same WiFi network. If the second device is also slow, the problem is your router or internet connection — not Windows. Try rebooting your router, or check out our guide on why your WiFi is slow for a full diagnosis. If only your Windows PC is affected, the issue is almost certainly driver- or software-related — and the fixes above should resolve it.

Related Articles