WiFi keeps dropping on Windows 11 23H2 – fix the power saving trap

Network & Connectivity Intermediate 👁 1 views 📅 May 29, 2026

Random WiFi disconnects on Windows 11 23H2. The culprit is usually a hidden power saving setting. Here's how to kill it.

You're in the middle of something – maybe a Zoom call, maybe a game – and your WiFi icon shows that yellow exclamation. Again. Yeah, I've been there. Let's fix it right now.

Kill power saving on the WiFi adapter

  1. Right-click the Start button and select Device Manager.
  2. Expand Network adapters. You'll see your WiFi adapter – probably Intel, Realtek, or Qualcomm.
  3. Right-click that adapter, choose Properties, then go to the Power Management tab.
  4. Uncheck the box that says “Allow the computer to turn off this device to save power.”
  5. Click OK, close Device Manager, reboot.

That's it. If this was your issue, the disconnects stop immediately after the reboot. I've seen this fix work on Dell XPS 15 (2022), Lenovo ThinkPad X1 Carbon (Gen 11), and custom desktops with Intel AX210 adapters.

Why this works

What's actually happening here is that Windows 11's power management scheme tells your WiFi adapter to go into a low-power state after a short period of inactivity. Sounds reasonable – until you're on a Teams call with moments of silence between sentences. The OS sees no traffic for a few seconds and tells the adapter to sleep. The adapter wakes up slowly, misses the next packet burst, and the connection drops. Reconnecting takes 5-15 seconds.

The checkbox in Device Manager is the user-facing toggle for the adapter's internal power management D-state transitions. When unchecked, the adapter stays in D0 (fully active) regardless of idle time. The reason step 3 works is that most adapters ship with this box checked by default – a tradeoff of battery life over stability that's bad for anyone not browsing static web pages.

Less common variations of the same issue

1. The “NetAdapterCaps” registry override

Some adapters hide the Power Management tab. This happens when the vendor's driver doesn't expose that setting. You can still force it off via registry:

reg add "HKLM\SYSTEM\CurrentControlSet\Control\Class\{4d36e972-e325-11ce-bfc1-08002be10318}\0001" /v PnPCapabilities /t REG_DWORD /d 24 /f

Replace 0001 with the correct subkey for your adapter – check each subkey under that GUID until you find one with a DriverDesc matching your WiFi adapter. Setting PnPCapabilities to 24 tells Windows to skip power management for that device entirely.

2. USB WiFi adapters that ignore the setting

If you're using a USB dongle (like a TP-Link Archer T3U or Netgear A7000), the power management checkbox might not exist. Instead, go to Control Panel > Power Options > Change plan settings > Change advanced power settings. Find Wireless Adapter Settings > Power Saving Mode and set it to Maximum Performance. This overrides the adapter's own power saving at the system level.

3. Intel-specific driver bug

On Intel WiFi 6 (AX201) and WiFi 6E (AX210) adapters with driver versions 22.160.0.3 to 22.200.2.1, there's a known bug where the adapter drops connection even after disabling power management. The real fix here is to roll back the driver to version 22.150.0.3 or install the latest from Intel's website (not Windows Update). Intel's driver support page has the historical versions.

# Check your driver version
Get-NetAdapter -Name "Wi-Fi" | Get-NetAdapterBinding | fl

Prevention so it doesn't come back

  • Keep your WiFi driver updated – but only through the manufacturer's site, not Windows Update. Windows Update often pushes generic drivers that miss chipset-specific fixes.
  • Disable Bluetooth if you're not using it. On many laptops, the WiFi and Bluetooth radios share the same antenna path. Bluetooth scanning can cause interference and force the WiFi adapter to retrain, dropping the connection for a split second.
  • Change your power plan to High Performance when plugged in. This prevents the OS from idling the adapter in the first place.
  • Check for 2.4GHz congestion – if the dropouts happen only on 2.4GHz, try forcing your router to use a less crowded channel or switch to 5GHz manually. The adapter's power saving isn't to blame there; it's just radio interference.

One more thing: if you're on a corporate laptop with managed Group Policies, the power management checkbox might reappear after every reboot. In that case, talk to your IT team about applying a GPO that sets the “Power Management” policy for wireless adapters to disabled. They'll know what that means.

That's it. Go kill that checkbox.

Was this solution helpful?