If your Wi-Fi and Bluetooth stop working after Windows 10 wakes from sleep, that’s a common power management issue. It usually happens because Windows is turning off network adapters to save power or due to outdated drivers.
Here’s a complete fix guide — go step by step:
Step-by-Step Fix for Wi-Fi and Bluetooth Loss After Sleep
STEP 1: Disable Power Saving for Network and Bluetooth Adapters
Press Windows + X → select Device Manager.
Expand Network adapters → right-click your Wi-Fi adapter → Properties.
Go to the Power Management tab.
Uncheck: “Allow the computer to turn off this device to save power”
Click OK.
Repeat the same for your Bluetooth adapter (under Bluetooth section).
STEP 2: Change Power Plan Settings
Press Windows + R, type
control, and press Enter.Go to Hardware and Sound → Power Options.
Click Change plan settings next to your selected plan.
Click Change advanced power settings.
Expand Wireless Adapter Settings → Power Saving Mode.
Set both On battery and Plugged in to Maximum Performance.
Expand USB settings → USB selective suspend setting → Set both to Disabled.
Click Apply → OK.
STEP 3: Update or Reinstall Drivers
Open Device Manager again.
For both Wi-Fi and Bluetooth adapters, right-click → Update driver →
Search automatically for drivers.If no update is found:
Visit your laptop or motherboard manufacturer’s website.
Download and install the latest Wi-Fi and Bluetooth drivers manually.
Reboot your PC.
STEP 4: Reset Network Stack (if still broken)
Run these commands in Command Prompt (Admin):
Then restart your PC.
STEP 5: Disable “Fast Startup”
Go to Control Panel → Power Options → Choose what the power buttons do.
Click Change settings that are currently unavailable.
Uncheck Turn on fast startup (recommended).
Save and reboot.
STEP 6: Check BIOS / UEFI Power Settings (optional)
If nothing else works:
Enter BIOS/UEFI (press Del, F2, or Esc during boot).
Look for Power Management or Advanced → make sure Wake from USB, Wireless LAN, and Bluetooth are enabled.
After these steps:
Your Wi-Fi and Bluetooth should reconnect automatically after sleep or hibernation.
Here’s a PowerShell script that automatically applies the key fixes (disables power-saving for network and Bluetooth adapters, adjusts power plan, and disables USB selective suspend).
Instructions
Copy the script below into Notepad.
Save it as:
Fix-WiFi-Bluetooth-Sleep.ps1Right-click the saved file → Run with PowerShell (choose Run as Administrator when asked).
Restart your PC afterward.
PowerShell Script
What it Does
Turns off Windows power-saving on all Wi-Fi and Bluetooth adapters.
Sets Wireless Power Saving Mode → Maximum Performance.
Disables USB Selective Suspend.
Turns off Fast Startup (which often breaks drivers after sleep).
