Fix Wi-Fi Disappears After Sleep on Windows 11 Laptops
🔍 WiseChecker

Fix Wi-Fi Disappears After Sleep on Windows 11 Laptops

Quick fix: Open Device Manager → your Wi-Fi adapter → Power Management tab, and uncheck Allow the computer to turn off this device to save power. This single setting fixes the “Wi-Fi gone after sleep” problem on most Windows 11 laptops.

You close the lid, walk away, come back ten minutes later — and Wi-Fi is gone. The network icon shows the “not connected” globe, the available-network list is empty, or worse, the adapter itself has vanished from the system tray. Toggling Wi-Fi off and on in Quick Settings doesn’t help; only a full reboot brings it back. This is one of the most reported Windows 11 laptop issues, and the underlying cause is almost always one of three things.

Symptom: Wi-Fi adapter does not reconnect (or disappears entirely) after the laptop wakes from sleep; restart restores it.
Affects: Windows 11 laptops, especially Intel AX-series and Realtek RTL8852-series Wi-Fi adapters.
Fix time: ~5 minutes.

ADVERTISEMENT

What causes this

Windows 11 puts the Wi-Fi adapter into a low-power state during sleep to save battery. On most laptops the adapter wakes correctly, but two driver behaviors break this: the adapter can be turned off so aggressively that it loses its driver context (the “device removed” state in Device Manager), or the Wi-Fi service waits for a connection that never comes because the adapter is still asleep when it’s polled.

A secondary cause is the Connected Standby (Modern Standby / S0ix) feature: instead of true sleep, the laptop stays in a network-aware low-power state. When the firmware mis-handles the wake transition, Wi-Fi enters a deadlock state until the next full power cycle.

Method 1: Disable the “allow turning off” power-save flag

This is the most common fix. Stops Windows from removing power from the radio during sleep.

  1. Press Win + X and choose Device Manager.
  2. Expand Network adapters. Identify your Wi-Fi adapter (it usually contains “Wi-Fi”, “Wireless”, “AX”, or “802.11” in the name).
  3. Right-click the adapter and choose Properties.
  4. Switch to the Power Management tab.
  5. Uncheck Allow the computer to turn off this device to save power.
  6. Click OK. No reboot required — the change applies on the next sleep cycle.

Verify by closing the lid for two minutes, then waking the laptop. Wi-Fi should reconnect within five seconds. Battery cost is negligible on modern Wi-Fi chips (about 30 mW idle).

ADVERTISEMENT

Method 2: Switch the adapter from Connected Standby to traditional sleep

If Method 1 doesn’t hold (you uncheck the box, sleep, and find it re-enabled later), the Modern Standby framework is overriding it. The fix is to switch to traditional S3 sleep where supported.

  1. Open an elevated Command Prompt (right-click Start → Terminal (Admin)).
  2. Run powercfg /a. Look for the line beginning The following sleep states are available…. If Standby (S3) is listed under The following sleep states are available on this system, your laptop supports it.
  3. If S3 is supported, reboot into UEFI/BIOS (mash F2 or Del during boot, depending on manufacturer) and look for an option named Sleep State Selection, Modern Standby, or OS-Based / Linux S3. Set it to Linux S3 or Disabled (for Modern Standby).
  4. Save and exit. Windows will use traditional S3 sleep; Wi-Fi gets a clean power-off and a clean power-on each cycle.
  5. If S3 is not listed in powercfg /a, your firmware doesn’t support it. Skip to Method 3.

The trade-off: you lose Modern Standby’s “screen off but mail still delivers” behavior. For most laptop users that’s a small price for reliable Wi-Fi.

Method 3: Force a clean adapter reload on wake

Use this when Methods 1 and 2 don’t apply (Modern Standby is firmware-locked). You schedule a task to reset the adapter the moment the system resumes.

  1. Open Task Scheduler from the Start menu.
  2. Choose Create Task (not Basic Task).
  3. On the General tab, name it WiFi Reset On Wake. Tick Run with highest privileges.
  4. On the Triggers tab, click New and set Begin the task to On an event. Set the log to System, source to Power-Troubleshooter, and Event ID to 1. Click OK.
  5. On the Actions tab, click New and add Program: powershell.exe, Arguments: -Command "Disable-NetAdapter -Name 'Wi-Fi' -Confirm:$false; Start-Sleep -Seconds 2; Enable-NetAdapter -Name 'Wi-Fi' -Confirm:$false" (adjust Wi-Fi to your adapter’s exact name from Get-NetAdapter).
  6. On the Conditions tab, untick Start the task only if the computer is on AC power.
  7. Click OK. Sleep and wake to verify the task fires (check Last Run Result shows 0x0).

This adds a one-second pause on wake, but it guarantees a clean adapter reload regardless of the underlying sleep state.

How to verify the fix worked

  • Close the lid, wait five minutes, open the lid. Wi-Fi should reconnect to your known network within ten seconds.
  • In Device Manager, the Wi-Fi adapter should remain visible throughout — no “device removed” events.
  • Run Get-NetAdapter | Format-Table Name, Status, MediaType, LinkSpeed in PowerShell. Status should read Up.

If none of these work

Update the Wi-Fi adapter driver from the laptop manufacturer’s support page (not Windows Update, which lags behind on Wi-Fi drivers). Intel’s standalone Wireless Adapter Driver from intel.com is current and works on all OEMs. If you’re on a Realtek adapter and the driver doesn’t exist on the OEM page, the Realtek site’s reference driver is usually safe to install. If a driver update doesn’t fix it, the radio firmware may be stale — many Wi-Fi cards have firmware updated via the driver package, so a clean reinstall often pushes a new firmware image. If none of that works and the issue started after a BIOS update, roll the BIOS back to the previous version (most laptop vendors keep older BIOS files available for downgrade). Persistent failure across drivers and BIOS revisions points to a defective Wi-Fi module — on most laptops it’s an M.2 card that can be swapped for a $15–25 Intel AX210.

Bottom line: Wi-Fi after sleep is a power-management trap. Stop the OS from turning the radio off, or force a clean reload on wake, and the problem goes away.

ADVERTISEMENT