The Wi-Fi icon shows a warning and the network status reads:
No internet, secured
The two words matter separately. Secured means the wireless handshake succeeded — you really are joined to the network. No internet means Windows then failed to confirm connectivity beyond the router. The radio link is fine; something after it is not.
Why This Happens
Windows checks internet availability by making a request to a known Microsoft endpoint after connecting. When that fails, you get this status. The break is in one of five places:
- No usable IP address. The adapter joined but DHCP failed, leaving a
169.254.x.xlink-local address that routes nowhere. - DNS is broken. The connection works but names cannot be resolved, so nothing loads and the check fails.
- A stale VPN or proxy configuration. A VPN that exited badly can leave routes, DNS entries or a proxy pointing at a tunnel that no longer exists.
- Adapter power management. Windows powered the adapter down to save battery and it did not resume cleanly — the classic "breaks after sleep" pattern.
- A captive portal. Hotel, airport and guest networks intercept traffic until you sign in, so the connectivity check fails by design.
Fix 0: Is It Just This PC?
Thirty seconds that can save an hour. Check whether another device on the same Wi-Fi has internet.
- Other devices work → the problem is this PC. Continue below.
- Nothing works → the problem is the router or the internet service. Reboot the router and check with your ISP; nothing in Windows will fix it.
Fix 1: Renew the IP Address and Flush DNS
Open Terminal (Admin) — right-click Start — and run:
ipconfig /release
ipconfig /renew
ipconfig /flushdns
Then check what you got:
ipconfig /all
If the Wi-Fi adapter shows an address starting 169.254., DHCP failed and that is the real problem — the same underlying fault covered in Ethernet doesn't have a valid IP configuration, which applies equally to wireless adapters.
If you have a proper address and a default gateway, move on.
Fix 2: Reset the Network Stack
This clears the corrupted-configuration and stale-VPN cases in one pass:
netsh int ip reset
netsh winsock reset
netsh winhttp reset proxy
Reboot. These do not take effect until you do.
netsh winsock reset removes third-party layered service providers, so a VPN client, proxy tool or some security software may need reinstalling afterwards. That is expected — and since leftover VPN plumbing is a leading cause of this exact symptom, it is frequently the step that fixes it.
Fix 3: Check for a Leftover Proxy
A proxy setting pointing at something unreachable produces "no internet" on a perfectly healthy connection.
- Settings → Network & internet → Proxy.
- Unless your organisation requires one, Automatically detect settings should be on, and Use a proxy server off.
Confirm the system-level proxy too, which the UI does not always reflect:
netsh winhttp show proxy
It should report a direct connection unless you deliberately use a proxy. Reset it if not:
netsh winhttp reset proxy
Fix 4: Fix DNS
If you can reach addresses by IP but not by name, DNS is the fault:
ping 8.8.8.8
nslookup microsoft.com
The first succeeding and the second failing is the signature. Set reliable resolvers to test:
- Settings → Network & internet → Wi-Fi → Hardware properties.
- Next to DNS server assignment, choose Edit → Manual, enable IPv4.
- Preferred
1.1.1.1, alternate8.8.8.8. - Save, then
ipconfig /flushdns.
If that fixes it, your router's DNS or your ISP's resolvers were the problem. For the full DNS-specific path, see fixing "The DNS server isn't responding".
Fix 5: Stop Windows Powering Down the Adapter
This is the fix for "it breaks every time I open the lid".
- Open Device Manager (
devmgmt.msc) → Network adapters. - Right-click the Wi-Fi adapter → Properties → Power Management.
- Clear Allow the computer to turn off this device to save power.
- Click OK.
Then stop the power plan doing the same thing:
- Control Panel → Power Options → Change plan settings → Change advanced power settings.
- Expand Wireless Adapter Settings → Power Saving Mode.
- Set both On battery and Plugged in to Maximum Performance.
Fix 6: Forget and Rejoin the Network
A saved profile can hold stale settings — an old security type, a manual IP, a proxy from a previous configuration.
- Settings → Network & internet → Wi-Fi → Manage known networks.
- Select the network → Forget.
- Reconnect and re-enter the password.
If it is a public or guest network, watch for a captive portal sign-in page. Open a plain http:// site (not https://) to force the portal to appear — HTTPS sites often fail silently instead of redirecting.
Fix 7: Update the Wi-Fi Driver
Especially if this began after a Windows update:
- Device Manager → Network adapters, right-click the Wi-Fi adapter → Update driver → Search automatically.
- If Windows finds nothing, download the current driver from your laptop or motherboard manufacturer's support site — Dell, HP, Lenovo, ASUS — rather than a generic driver site.
- Reboot.
As a last resort, Settings → Network & internet → Advanced network settings → Network reset removes and reinstalls every adapter and returns networking to defaults. It also removes saved Wi-Fi passwords and VPN configurations, so have those to hand before running it.
Verify the Fix
Work up the stack rather than just checking the icon:
ipconfig /all
ping 192.168.1.1
ping 8.8.8.8
nslookup microsoft.com
Valid address, then gateway, then internet by IP, then name resolution. If all four pass but the indicator still shows "No internet", the connectivity check itself is being blocked by a filter or firewall — your connection is fine and the indicator is wrong. Confirm by browsing normally.
Prevention
- Disable Wi-Fi adapter power saving on laptops. It is the single biggest cause of the recurring version of this problem.
- Uninstall VPN clients properly rather than deleting their folders, so routes and proxy settings are cleaned up.
- Keep wireless drivers current from the hardware vendor, particularly after Windows feature updates.
- Note which networks it happens on. A fault on one network only is that network's problem, not your PC's.
- Prefer 5 GHz or 6 GHz bands where available. Congested 2.4 GHz produces intermittent drops that look like this.