Wifi Keeps Disconnecting on Windows 11? Real Fixes

Short answer: on Windows 11, wifi that keeps disconnecting is almost always one of three things — the adapter's power management putting the radio to sleep, an outdated or generic driver instead of the vendor's, or a router/access point mismatch (band, channel, or a saved profile with stale settings). Fix those three in order and most random drops stop.

I've chased this exact problem on laptops that were "fine on Windows 10" and started dropping wifi every 10-20 minutes after the Windows 11 upgrade. It's rarely the router. Nine times out of ten it's Windows aggressively power-managing the wifi adapter, or a driver that never got updated past whatever shipped in the box. Let's go through this the way I'd actually troubleshoot it on someone's machine, not the "have you tried restarting your router" checklist.

First, get Windows to tell you why it's disconnecting

Before changing anything, generate the built-in wireless report. It's the fastest way to see whether you're dealing with driver errors, authentication failures, or the adapter going to sleep.

Open Command Prompt or Windows Terminal as administrator and run:

netsh wlan show wlanreport

Windows scans its event logs and builds an HTML report, saved by default at:

C:\ProgramData\Microsoft\Windows\WlanReport\wlan-report-latest.html

Open that file in a browser. It covers roughly the last three days of wifi activity, grouped into sessions, with a summary chart, disconnect reasons, and driver details. If you run it right after a normal admin Command Prompt (not elevated), it'll fail silently or throw an access error — that trips people up constantly.

Look specifically at the Disconnect Reasons and Session Success/Failures sections. If you see repeated "driver" errors, skip to the driver section below. If you see the adapter going idle and reconnecting on a regular interval that lines up with your screen turning off or the PC going idle, it's power management — go to the next section.

One limitation worth knowing: the report only covers about three days, and it doesn't track signal strength over time. If the problem happened last week and you didn't generate a report near the time it happened, that data's gone.

Why does Windows 11 turn off the wifi adapter to save power?

By default, Windows is allowed to power down your wifi adapter to save battery — even on desktops, oddly enough, because the setting isn't always adjusted per device type. This is the single most common cause of "wifi randomly disconnects" complaints I see, especially on laptops.

Here's the confusing part: despite the checkbox saying "turn off," what it's actually doing is closer to putting the adapter to sleep (device power state D3) rather than powering it off completely. Either way, the practical result is the same — your connection drops, especially after a period of inactivity or when the system enters modern standby.

Disable adapter power management (GUI method)

  1. Right-click Start > Device Manager.
  2. Expand Network adapters.
  3. Right-click your wifi adapter (Intel Wi-Fi, Killer, Realtek, whatever it is) > Properties.
  4. Go to the Power Management tab.
  5. Uncheck Allow the computer to turn off this device to save power.

Then also check the system power plan, because the adapter-level setting and the plan-level setting are separate and both matter:

  1. Control Panel > Hardware and Sound > Power Options.
  2. Next to your active plan, click Change plan settings > Change advanced power settings.
  3. Expand Wireless Adapter Settings > Power Saving Mode.
  4. Set it to Maximum Performance for both On battery and Plugged in.

Do both. I've seen people fix the adapter checkbox and still get drops because the power plan was still set to "Maximum Power Saving."

Disable it via PowerShell instead (no GUI, scriptable)

If you're doing this across multiple machines or the GUI setting keeps reverting after a reboot (which happens with some OEM power management software fighting Windows for control), use PowerShell:

$adapters = Get-NetAdapter -Physical | Get-NetAdapterPowerManagement
foreach ($adapter in $adapters) {
    $adapter.AllowComputerToTurnOffDevice = 'Disabled'
    $adapter | Set-NetAdapterPowerManagement
}

Run this from an elevated PowerShell session. If it reverts on reboot, the usual cause is Intel's or the OEM's own power management utility reasserting its default — check for something like "Intel Killer Control Center" or a vendor-specific app and disable power saving there too.

Update the wifi driver — but the right way

"Update your driver" is generic advice, and half the time people do it wrong by grabbing whatever Windows Update offers instead of the vendor's actual release. Here's the order I actually use:

  1. Check Device Manager > your wifi adapter > Driver tab for the current version and date.
  2. Go to the chipset vendor's site directly — Intel, Qualcomm, MediaTek, Realtek, Broadcom, whoever makes the actual wifi chip in the machine (not just the laptop brand) — and download the current driver for your exact model and Windows 11 build.
  3. If you can't identify the chip, run netsh wlan show drivers from Command Prompt, which lists the driver provider, version, and date.

If the OEM (Dell, Lenovo, HP, etc.) has a newer driver package specifically validated for that laptop, use theirs instead of the raw chipset vendor's generic package — some OEMs tweak power/radio settings that the generic driver doesn't include, and installing the wrong one can actually reintroduce the disconnect problem.

To do a clean reinstall instead of an in-place update:

  1. Device Manager > right-click the wifi adapter > Uninstall device.
  2. Do not check "Attempt to remove the driver" unless you've downloaded the new driver package first and can install it manually — otherwise you'll have no wifi to redownload anything with.
  3. Restart. Windows will either reinstall a driver automatically or you install the one you downloaded.

Check "Random hardware addresses" — it breaks some routers

Windows 11 randomizes your MAC address by default for privacy on public networks. Good for a coffee shop. Bad for a home router that assigns a DHCP reservation, has a MAC allowlist, or applies parental controls by device address — the router doesn't recognize the "new" device and can boot it or fail to hand out an address properly, which looks exactly like random disconnects.

To turn it off for your home/office network specifically:

  1. Settings > Network & internet > Wi-Fi > Manage known networks.
  2. Select your network.
  3. Set Random hardware addresses to Off for that profile.

If you change this on an already-connected network, expect a brief disconnect/reconnect while Windows presents the real MAC address — that's expected, not a new problem.

Reset the network stack if nothing else explains it

If the wlan report shows no driver errors and power management is already sorted, corruption in the Winsock catalog or TCP/IP stack is worth ruling out — especially if you've installed and removed VPN clients or antivirus software recently, since those often insert Layered Service Providers that don't get cleaned up properly on uninstall.

Run these from an elevated Command Prompt, in order, then reboot:

netsh winsock reset
netsh int ip reset resetlog.txt
ipconfig /flushdns

Both netsh winsock reset and netsh int ip reset require a restart to fully apply. Don't skip the reboot and then conclude it didn't work.

I'd treat this as a later step, not a first move — it's broad, it can knock out third-party VPN hooks you actually wanted, and it doesn't touch the two much more common causes above.

Router-side things that mimic a Windows problem

Before you conclude it's 100% the PC, rule out the access point side:

  • Mixed-mode 802.11 settings — some routers set to "mixed" b/g/n/ac can cause compatibility hiccups with newer Wi-Fi 6/6E cards. Try locking the router to 802.11ac or ax only and see if it's more stable.
  • Channel congestion — in a dense apartment building, an overcrowded 2.4GHz channel causes exactly this kind of intermittent drop. Switching the PC (or the router) to 5GHz often fixes it outright.
  • Firmware — check for a router firmware update; band-steering and roaming bugs get patched more often than people realize.

Wifi keeps disconnecting windows 11 — quick reference

SymptomLikely causeFix
Drops after a few minutes idleAdapter power managementUncheck "allow computer to turn off this device," set Power Saving Mode to Maximum Performance
Drops randomly, no patternOutdated/generic driverInstall vendor/OEM driver, not just Windows Update's default
Can't reconnect to home router after upgradeMAC randomizationTurn off Random hardware addresses for that network
wlan report shows driver-caused disconnectsDriver/firmware bugUpdate driver, check OEM release notes for known wifi bugs
Fine on other devices, only this PC dropsLocal network stack corruptionnetsh winsock reset + netsh int ip reset + reboot

FAQ

Does disabling power management on the wifi adapter hurt battery life?

A little, on battery. In practice the difference is small compared to the display and CPU, and a laptop that keeps dropping wifi and reconnecting probably burns more power doing that than it saves from letting the radio sleep.

Why does my wifi disconnect only when the laptop is on battery, not plugged in?

That's the Power Saving Mode setting under Wireless Adapter Settings in the advanced power plan options — check the "On battery" column specifically, since it's set separately from "Plugged in."

I updated the driver and it's still dropping. What's next?

Generate a fresh netsh wlan show wlanreport after the update and check Disconnect Reasons again. If it now points to something like "Radio State Change" or authentication failures instead of driver errors, that shifts the suspicion toward the router or a specific security protocol (WPA3 compatibility issues with older routers show up here sometimes).

Is Network Reset the same as netsh winsock reset?

No — Network Reset (Settings > Network & Internet > Advanced network settings) is more aggressive. It removes and reinstalls every network adapter and forgets all saved wifi profiles and passwords. The netsh commands are more targeted and don't wipe your saved networks.

Should I just turn off modern standby instead of chasing all this?

You can, but it's a bigger hammer than most people need, and it affects sleep behavior system-wide, not just wifi. Worth trying only if you've already ruled out power management, driver, and MAC randomization and you're still stuck.

What I'd actually do, in order

Run the wlan report first — it takes thirty seconds and tells you whether you're chasing a driver problem or a power problem. Fix adapter power management and the power plan setting together, since fixing only one leaves the other free to cause the same symptom. Update the driver from the vendor, not just Windows Update. Check Random hardware addresses if it's your home network specifically that's the problem. Save the netsh resets for last, since they're broad and can undo VPN configuration you wanted kept.

Most of the "wifi keeps disconnecting windows 11" reports I've dealt with resolve at step two. If you've done all of this and it's still dropping, it's worth testing the same adapter on a different router entirely (a phone hotspot is an easy test) — if it stays connected there, the problem was never the PC.