When Wi-Fi stops working on Windows 11, the first question that actually matters is: is it just this machine, or everything? Open your phone and check whether it connects to the same network and loads pages normally. If the phone has the same problem, restart the router — unplug it completely for 60 seconds, plug back in, wait two minutes for it to fully reconnect. That fixes the problem for every device at once and takes three minutes. If everything works on the phone while the Windows 11 machine still shows a problem, it’s specific to the PC. We go deeper on the whole subject in our Complete Guide to Fixing Windows, Browser, and Software Errors.
From there, the symptom tells you where to look. No Wi-Fi icon in the taskbar at all means the adapter is disabled or missing — go to Fix 4 immediately. “Connected, no internet” means the adapter is fine but DNS or IP routing is broken — Fix 3 is your starting point. Constant disconnecting means a driver or power management problem — Fix 5 covers that. Networks visible but the connection fails to establish means something authentication-related — Fix 2 is worth starting there.
Fix 1: Restart the Network Adapter
This works far more often than it should. The Wi-Fi adapter can get stuck — especially after sleep — in a state where it’s technically on but not functioning. Disabling and re-enabling it forces a fresh initialisation.
Right-click Start → Device Manager → expand Network Adapters → right-click your Wi-Fi adapter (usually has “Wireless,” “Wi-Fi,” or the adapter brand in the name) → Disable device → wait 10 seconds → right-click → Enable device. Give Windows 15–20 seconds to reconnect to your saved network.
Alternatively: Settings → Network and internet → Advanced network settings → More network adapter options → right-click the Wi-Fi adapter → Disable → wait → Enable. Same result, different path.
Fix 2: Forget and Reconnect to the Network
If Windows connects but immediately loses internet, or if the network authentication keeps failing even with the correct password, the saved network profile may have become corrupted. This happens more commonly than you’d expect — especially after a Windows update that changes how network credentials are stored.
Click the Wi-Fi icon in the taskbar → click the arrow next to your network name → Forget. Wait 10 seconds. Click the network name → Connect → re-enter the password. Windows creates a completely fresh connection profile and re-authenticates from scratch. If the connection works correctly after this, the old profile was the problem.
Fix 3: Flush DNS and Reset the Network Stack
The “connected but no internet” pattern — where Wi-Fi shows connected and the icon looks normal but nothing loads — is almost always a DNS or IP stack problem. Websites work by translating names to IP addresses using DNS, and if that process is broken, nothing loads even though the physical connection is fine. This set of commands clears the DNS cache, resets the IP stack, and renews the IP address:
- Open Command Prompt as administrator (search cmd, right-click, Run as administrator)
- Run these commands in order:
netsh winsock reset
netsh int ip reset
ipconfig /release
ipconfig /flushdns
ipconfig /renew - Restart the PC after all commands complete
- Test whether internet works
If pages still don’t load after this, try changing the DNS server. The router’s default DNS (provided by your ISP) is sometimes slow or has outages that affect specific sites. Switching to a public DNS resolver takes about a minute:
Settings → Network and internet → Wi-Fi → click your network name → DNS server assignment → Edit → Manual → enable IPv4 → set Preferred DNS to 1.1.1.1 (Cloudflare) and Alternate to 8.8.8.8 (Google) → Save. Test immediately — this often resolves connected-but-no-internet within seconds of saving.
Fix 4: Update or Roll Back the Wi-Fi Driver
Driver problems are the most common software cause of Wi-Fi not working that doesn’t resolve with simpler fixes. Windows updates sometimes replace working manufacturer drivers with generic Microsoft versions that don’t perform as well with specific hardware. Intel Wi-Fi adapters are particularly prone to this after feature updates.
If the Wi-Fi adapter is missing entirely from Device Manager (or shows a yellow warning triangle): right-click it → Update driver → Search automatically. If Windows finds nothing useful, go to your laptop manufacturer’s support page, search by model number, and download the current Wi-Fi driver directly. Manufacturer drivers are almost always better than what Windows Update provides.
If Wi-Fi stopped working after a recent Windows update: Device Manager → right-click the Wi-Fi adapter → Properties → Driver tab → Roll Back Driver. This restores the previously installed driver version. If Roll Back Driver is greyed out, the previous version isn’t stored and you’ll need to download it from the manufacturer’s site.
For a clean driver reinstall when updating doesn’t help: Device Manager → right-click Wi-Fi adapter → Uninstall device → tick “Delete the driver software for this device” → Uninstall → restart. Windows reinstalls a fresh driver automatically on boot. This clears corrupted driver state that an update alone doesn’t fix.
Fix 5: Fix Wi-Fi That Keeps Disconnecting
If Wi-Fi connects but drops every few minutes, power management is cutting the adapter off to save battery — a legitimate feature that causes legitimate problems, especially on laptops. Windows tells the adapter it can go to sleep to conserve power, and sometimes it doesn’t wake up properly when needed.
Disable this: Device Manager → right-click Wi-Fi adapter → Properties → Power Management tab → uncheck “Allow the computer to turn off this device to save power” → OK.
Also check the Advanced tab in the same Properties window. Look for settings called “Power Management Level,” “802.11 Power Save Mode,” or “U-APSD Support” and set them to disabled or off. These adapter-level power settings cause the same problem but exist below the Device Manager power management checkbox, so unchecking the power management tab alone sometimes isn’t enough.
On laptops, also check the power plan: Control Panel → Power Options → your current plan → Change plan settings → Change advanced power settings → Wireless Adapter Settings → Power Saving Mode → change to Maximum Performance. This prevents Windows from applying any power-saving restrictions to the adapter regardless of battery status.
Fix 6: Run the Network Troubleshooter
It’s worth running even if you’re skeptical — the Windows Network Troubleshooter reliably fixes a specific set of problems including stopped services and misconfigured adapter settings. Settings → System → Troubleshoot → Other troubleshooters → Internet Connections → Run. Also run Network Adapter from the same list. Apply any recommended fixes, restart if prompted. This takes three minutes and occasionally saves the more involved steps.
Fix 7: Reset Network Settings
When nothing else works, a full network reset reinstalls all network adapters from scratch and returns every network setting to defaults. This is the most thorough non-destructive option available:
Settings → Network and internet → Advanced network settings → Network reset → Reset now → confirm.
Important: network reset also removes VPN software adapters and clears all saved Wi-Fi passwords. Have your Wi-Fi password ready before doing this, and plan to reinstall any VPN applications afterward. The reset takes about a minute and requires a restart — after that, Wi-Fi typically works correctly because everything has been rebuilt from default state.
Wi-Fi Adapter Power Settings in Detail
The Wi-Fi adapter’s Advanced tab in Device Manager contains multiple power-related settings that are worth going through when disconnections persist despite fixing the main Power Management checkbox. The exact options depend on the adapter make and driver version, but these are worth checking:
- 802.11 Power Save Mode or Power Management Level — Set to Off or Maximum Performance
- Roaming Aggressiveness — For laptops that roam between access points, set to Highest for faster handoffs
- Energy Efficient Ethernet or Green Ethernet — Disable this; it reduces power to the adapter when link activity is low and can cause reconnection problems
- Wake on Magic Packet / Wake on Pattern Match — Try disabling both if disconnections coincide with the adapter appearing to reset
When the Problem Is the Router’s DHCP
“Connected, no internet” sometimes comes from the router side, not Windows. When the router’s DHCP pool runs out of addresses — all addresses are assigned to devices (including ones that haven’t been connected recently) — Windows connects to the network but gets no valid IP address. Without a valid IP, nothing routes.
Confirm this: open Command Prompt and type ipconfig /all. Look at the IPv4 Address for the Wi-Fi adapter. If it starts with 169.254, DHCP failed — Windows assigned itself a fallback address that can’t reach the internet. Fix: restart the router (clears the DHCP lease table), or in Windows run ipconfig /release then ipconfig /renew to request a fresh address.
Our guide on DNS server not responding covers the DNS-specific failures that produce identical “connected but no internet” symptoms when DNS is the broken layer rather than the IP address. For the adapter driver details relevant to specific hardware, Microsoft’s Wi-Fi troubleshooting documentation covers driver management for Intel, Qualcomm, and Realtek adapters by generation, with specific known issues for Windows 11 versions documented by hardware ID.
Mesh Wi-Fi and Roaming-Related Disconnections
Mesh Wi-Fi systems — Google Nest, Eero, Orbi, Deco — create a single network from multiple access points. Roaming between them should be seamless, but Windows 11’s roaming aggressiveness setting affects how quickly the adapter switches to a stronger access point versus holding onto a weaker one. When the adapter clings to a distant access point while walking toward a closer one, the signal degrades until the connection drops entirely.
Device Manager → Wi-Fi adapter → Properties → Advanced tab → find Roaming Aggressiveness (may be called Roaming Tendency, Roaming Threshold, or similar) → set to Highest. This makes the adapter switch to a stronger access point earlier rather than waiting until signal becomes unusable. Combine this with ensuring all mesh nodes are broadcasting under the same SSID with band steering enabled — the mesh handles which access point to connect to automatically when the adapter is willing to roam.
On mesh networks where disconnections are frequent and the roaming setting doesn’t fully resolve them: check whether the mesh backlink is wired (Ethernet between nodes) or wireless. A wireless backlink introduces additional latency and occasional packet loss at the backlink level that appears to connected devices as intermittent internet interruptions. Connecting at least one secondary mesh node via Ethernet significantly stabilises the network for all wireless clients.
5 GHz vs 2.4 GHz Band Selection
Modern routers and mesh systems broadcast both 2.4 GHz and 5 GHz. The 5 GHz band is faster and less congested but has shorter range. The 2.4 GHz band carries farther but is crowded — especially in apartments where every neighbouring router also uses 2.4 GHz — and more prone to interference from microwave ovens, baby monitors, and Bluetooth devices.
If Wi-Fi is working but slow and unreliable from a specific room, check which band the machine is connected to. In the Wi-Fi network details (click the network icon → Properties), look at the frequency band. If it shows 2.4 GHz and you’re close to the router, try connecting to the 5 GHz network specifically (on routers that broadcast separate SSIDs for each band) or enable band steering on the router and let it select the optimal band automatically.
In dense apartment buildings, changing the 2.4 GHz channel on the router makes a meaningful difference. Channels 1, 6, and 11 are the non-overlapping channels for 2.4 GHz — check which channels neighbouring networks use (Wi-Fi Analyzer apps show this) and pick one that’s least occupied. This doesn’t require any Windows changes but significantly improves 2.4 GHz reliability and is worth doing before spending time on Windows-side fixes.
Wireless Interference from USB 3.0 Devices
USB 3.0 devices emit radio frequency interference in the 2.4 GHz band — the same band Wi-Fi uses. A USB 3.0 external drive or hub plugged into a port near the Wi-Fi antenna (common on laptops where the USB ports and antenna are all in the same chassis) can noticeably degrade 2.4 GHz Wi-Fi signal quality. The symptom is Wi-Fi working worse specifically while certain USB devices are connected.
Test: unplug any USB 3.0 devices and check whether Wi-Fi stability improves. If it does, solutions include: using a USB extension cable to move the USB device further from the laptop’s antenna, switching Wi-Fi to 5 GHz (which isn’t affected by USB 3.0 interference), or using a USB hub with better shielding. This is a physical issue rather than a software one, and no amount of driver updating resolves it — the fix is physical separation or band switching.
Corporate Network Wi-Fi: 802.1X and Certificate Issues
Corporate Wi-Fi networks often use 802.1X authentication — which requires the device to authenticate with a certificate or username/password before being allowed on the network. When this authentication fails, Windows shows “Can’t connect to this network” or connects briefly then drops. This is separate from the regular WPA2 password-based connection that home networks use. Related: How to Fix Discord Not Working.
For 802.1X authentication failures: forget the corporate network and reconnect — Windows may prompt for credentials or show the enterprise connection dialog. If it’s a certificate-based network, the device certificate may have expired or the enterprise CA certificate may not be in the Windows trust store. Contact IT for both scenarios — 802.1X configuration is managed server-side and most fixes require IT involvement. Users can confirm the issue by checking Event Viewer → Applications and Services Logs → Microsoft → Windows → WLAN-AutoConfig → Operational for authentication error entries that name the specific 802.1X component that’s failing. If this sounds familiar, How to Fix Ethernet Not Working on Windows 11 is worth a look.







