Your WiFi drops. Again. For the fourth time in the last hour.
You look at your phone sitting right next to your laptop — full bars, streaming video without a hiccup. Your smart TV is fine. The tablet is fine. Every device in your house is connected and working perfectly.
Except your Windows 11 computer.
If this sounds familiar, I want you to understand something right now: your router is almost certainly not the problem. Your internet connection is fine. The issue is between Windows 11 and your WiFi adapter, and I’m going to show you exactly how to fix it.
I’ve seen this problem hit thousands of Windows 11 users, and the frustrating part is that the fix is usually simple — but most troubleshooting guides online waste your time with steps like “restart your router” and “toggle Airplane mode on and off.” You’ve already tried that. Let’s skip to what actually works.
Why Windows 11 Keeps Dropping Your WiFi
Before we fix it, you need to understand the three real causes. Knowing which one applies to you saves time.
Cause 1: Power Management is killing your adapter.
This is the culprit about 60% of the time. Windows 11 has a power management feature that tells your WiFi adapter to go to sleep when it thinks you’re not using it — to save battery. The problem is that the adapter doesn’t always wake up properly. It sleeps, the connection drops, and you’re left staring at “No Internet, Secured” in your system tray.
This happens more on laptops, but desktop users with USB WiFi adapters are hit too. The feature is enabled by default and almost nobody knows it’s there.
Cause 2: Your WiFi driver is broken or mismatched.
Windows Update is supposed to keep your drivers current. In practice, it sometimes installs a generic Microsoft WiFi driver instead of the one made by your adapter’s manufacturer — Intel, Realtek, Qualcomm, whoever. The generic driver technically works, but it’s missing optimizations and stability fixes that the manufacturer’s driver includes.
Even worse: some Windows 11 updates actively break previously working WiFi drivers. There have been multiple documented cases through 2025 and into 2026 where a system update caused WiFi adapters to start disconnecting randomly. Users who rolled back the driver to an older version saw the problem disappear immediately.
Cause 3: Your network stack is corrupted.
Windows maintains a complex set of network configurations — DNS cache, socket settings, IP assignments, routing tables. Over time, especially after multiple updates and network changes, these configurations can become corrupted. The result is unpredictable: random disconnections, slow speeds, inability to reconnect without a full restart.
Now let’s fix all three.
Fix 1: Disable Power Management for Your WiFi Adapter
This is the fix you try first because it solves the majority of cases.
Right-click the Start button → Device Manager
Find and expand Network adapters. You’ll see your WiFi adapter listed — it’ll have a name like “Intel Wi-Fi 6E AX211,” “Realtek 8852BE,” “Qualcomm Atheros,” or something similar. It’s the one that doesn’t say “Ethernet” or “Virtual.”
Right-click your WiFi adapter → Properties → Power Management tab
You’ll see a checkbox that says “Allow the computer to turn off this device to save power.” If it’s checked — and it almost certainly is — uncheck it.
Click OK. Restart your computer.
That’s it. For more than half of all Windows 11 WiFi disconnection cases, this single checkbox is the entire problem.
Why it works: With this option enabled, Windows puts your WiFi adapter into a low-power sleep state during periods of low network activity. When it tries to wake the adapter up, the handshake between the adapter and your router sometimes fails. The adapter comes back in a confused state — connected to the router but unable to route internet traffic (hence “No Internet, Secured”), or it disconnects entirely.
Important for laptop users: You should also check your power plan settings. Go to Settings → System → Power & battery → and make sure your power mode isn’t set to “Best power efficiency.” Switch it to “Balanced” or “Best performance.” The aggressive power-saving mode can override your Device Manager settings and put the adapter to sleep anyway.
If you’re on a desktop with a USB WiFi adapter, do the same thing but also check the USB hub’s power management: Device Manager → Universal Serial Bus controllers → right-click your USB Root Hub → Properties → Power Management → uncheck the power-saving box there too. A sleeping USB port means a dead WiFi adapter.
Fix 2: Install a Clean WiFi Driver from the Manufacturer
If disabling power management reduced the disconnections but didn’t eliminate them, or if the problem started right after a Windows Update, your driver is likely the issue.
Here’s what most people get wrong: they go to Device Manager, right-click the adapter, click “Update driver,” and Windows says “The best drivers for your device are already installed.” That message is misleading. It means Windows doesn’t have a newer driver in its own catalog — not that your driver is actually the best available.
The right way to update your WiFi driver:
Step 1: Identify your WiFi adapter. Open Device Manager → Network adapters → note the exact name. For example: “Intel Wi-Fi 6E AX211 160MHz.”
Step 2: Go directly to the source. If it’s an Intel adapter (most common in laptops from 2020 onwards), go to intel.com and search for “Intel WiFi driver.” Download the latest version of the “Intel® Wi-Fi Driver for Windows 10/11” package. If it’s Realtek, go to realtek.com. If it’s Qualcomm/Atheros, check your laptop manufacturer’s support page — Dell, HP, Lenovo, ASUS — because Qualcomm drivers are typically distributed through them.
Step 3: Before installing the new driver, remove the old one cleanly. Open Device Manager → right-click your WiFi adapter → Uninstall device → check the box that says “Attempt to remove the driver for this device” → click Uninstall.
Your WiFi will stop working. That’s expected.
Step 4: Run the driver installer you downloaded. Follow the prompts. Restart when asked.
After the restart, connect to your WiFi network again. You may need to re-enter the password since the old network profile was likely cleared during the driver removal.
The nuclear option — driver rollback: If the disconnections started immediately after a specific Windows Update, you might get faster results by rolling back the driver. Device Manager → right-click WiFi adapter → Properties → Driver tab → Roll Back Driver. If the button is grayed out, Windows doesn’t have a previous driver version stored, and you’ll need to do the clean install method above.
Fix 3: Reset the Entire Network Stack
If your WiFi still disconnects after fixing power management and updating the driver, your network stack is probably corrupted. This reset clears everything — DNS cache, Winsock catalog, IP configuration, DHCP leases — and rebuilds it from scratch.
Open Command Prompt as Administrator:
Right-click Start → Terminal (Admin)
Run these commands one at a time, pressing Enter after each:
netsh winsock reset
netsh int ip reset
ipconfig /release
ipconfig /renew
ipconfig /flushdns
Now restart your computer.
After the restart, Windows will rebuild your entire network configuration from zero. You’ll reconnect to your WiFi network with a completely fresh set of settings. Any corruption that was causing random disconnections is gone.
What if even this doesn’t work? Go one step further with a full network reset through Settings:
Settings → Network & Internet → Advanced network settings → Network reset → Reset now
This uninstalls and reinstalls all your network adapters and sets every network component back to factory defaults. You’ll need to re-enter your WiFi password and reconfigure any custom DNS settings after the reset. It’s the most thorough option and solves even deeply embedded configuration issues.
Fix 4: Set Your Connection to Private and Disable Random MAC
These are two smaller settings that cause disconnections in specific situations.
Switch to Private network profile:
Settings → Network & Internet → WiFi → click your network name → Network profile type → Private
When set to “Public,” Windows applies stricter security that can interfere with your connection to your own home router. Setting it to Private tells Windows this is a trusted network.
Disable Random Hardware (MAC) Addresses:
Settings → Network & Internet → WiFi → click your network name → Random hardware addresses → Off
Random MAC addresses are a privacy feature that changes your computer’s hardware identifier periodically. Great for public WiFi at coffee shops. Terrible for your home network. Every time the MAC address changes, your router sees your computer as a completely new device and has to assign a new IP address and reconnect. Some routers handle this gracefully. Others drop the connection.
Turn it off for your home network. Leave it on for public networks if you want privacy — but know that it can cause occasional disconnections there too.
Fix 5: Make Sure WLAN AutoConfig is Running Properly
WLAN AutoConfig is the Windows service responsible for discovering wireless networks, connecting to them, and maintaining the connection. If this service isn’t running correctly, nothing else matters — your WiFi will be unreliable.
Press Windows + R → type services.msc → Enter
Scroll down to find WLAN AutoConfig. Right-click it → Properties.
Check two things:
-
Startup type should be set to Automatic — not “Automatic (Delayed Start)” and definitely not “Disabled.” Delayed Start means the service waits before starting, which can cause WiFi to not connect immediately after booting up or waking from sleep.
-
Service status should say Running. If it says “Stopped,” click the Start button.
Click Apply → OK.
While you’re in Services, also check that Network Connection Broker and Network List Service are both set to Automatic and Running. These support services help WLAN AutoConfig manage your connections.
The “After Update” Scenario
A significant number of WiFi disconnection reports come from users who say “it was working fine until the last update.”
If that’s you, here’s the fast track:
- Check which update was installed: Settings → Windows Update → Update history
- If a driver update was included (usually listed under “Driver updates”), roll it back through Device Manager
- If it was a cumulative update, try the network stack reset first
- If nothing works, you can temporarily uninstall the problematic update: Settings → Windows Update → Update history → Uninstall updates → find the update → Uninstall
Note: uninstalling updates is a temporary measure. Microsoft will try to reinstall it. The permanent fix is getting the right driver from your manufacturer that’s compatible with the latest Windows version.
When It’s Actually a Hardware Problem
In rare cases, the WiFi adapter itself is failing. Signs of hardware failure:
- Disconnections happen even in Safe Mode with Networking
- The adapter disappears from Device Manager entirely (not just “not working” — completely gone)
- A USB WiFi adapter works perfectly while the built-in adapter keeps failing
- The disconnections get progressively worse over weeks regardless of driver changes
If you suspect hardware failure, a USB WiFi adapter is a cheap and effective workaround. You can get a decent USB WiFi 6 adapter for under $20, and it plugs in and works immediately. Not elegant, but it solves the problem while you decide whether to repair or replace the built-in adapter.
Prevent Future Disconnections
After applying the fixes above, a few habits keep the problem from coming back:
Don’t let Windows Update install WiFi drivers automatically. Go to Settings → Windows Update → Advanced options → and under “Additional options,” look for optional updates. WiFi driver updates usually appear here instead of installing automatically. Review them before installing.
Keep your manufacturer’s driver installer handy. Bookmark the download page for your specific laptop model’s WiFi driver. When a Windows Update breaks your WiFi — and it might happen again — you’ll have the fix ready in seconds instead of troubleshooting for hours.
Check power management after major updates. Some Windows updates reset your power management settings back to defaults. After any major update, quickly check that the “Allow the computer to turn off this device” checkbox is still unchecked.
Your WiFi should be solid now. If your phone works and your laptop doesn’t, the problem was always Windows — and now you know exactly where to look.