Skip to main content
Microsoftbeginner

Fix "No internet, secured" Wi-Fi Error in Windows 11 and 10

Fix the "No internet, secured" Wi-Fi status in Windows 11 and 10. Renew the IP lease, reset the TCP/IP stack, fix DNS, disable adapter power saving and clear a stale VPN or proxy configuration.

8 min readUpdated August 2026

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.x link-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.

  1. Settings → Network & internet → Proxy.
  2. 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:

  1. Settings → Network & internet → Wi-Fi → Hardware properties.
  2. Next to DNS server assignment, choose Edit → Manual, enable IPv4.
  3. Preferred 1.1.1.1, alternate 8.8.8.8.
  4. 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".

Advertisement

Fix 5: Stop Windows Powering Down the Adapter

This is the fix for "it breaks every time I open the lid".

  1. Open Device Manager (devmgmt.msc) → Network adapters.
  2. Right-click the Wi-Fi adapter → Properties → Power Management.
  3. Clear Allow the computer to turn off this device to save power.
  4. Click OK.

Then stop the power plan doing the same thing:

  1. Control Panel → Power Options → Change plan settings → Change advanced power settings.
  2. Expand Wireless Adapter Settings → Power Saving Mode.
  3. 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.

  1. Settings → Network & internet → Wi-Fi → Manage known networks.
  2. Select the network → Forget.
  3. 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:

  1. Device Manager → Network adapters, right-click the Wi-Fi adapter → Update driver → Search automatically.
  2. 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.
  3. 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.

Frequently Asked Questions

Find answers to common questions

"Secured" means the Wi-Fi encryption handshake succeeded — you are genuinely joined to the network. "No internet" means Windows then failed its connectivity check beyond the router. So the wireless part is working and something in the path after the connection is not: the IP lease, the gateway, DNS, or a proxy or VPN setting.

Test another device on the same Wi-Fi. If everything else is online, the problem is the PC. If nothing is online, the problem is the router or the internet service, and no amount of Windows troubleshooting will help.

Release and renew the IP address, then flush DNS. If that does not clear it, reset the TCP/IP stack and Winsock and reboot. That sequence resolves most cases on a PC where other devices are working fine.

Almost always adapter power management. Windows is allowed to power down the Wi-Fi adapter to save battery and it does not always recover cleanly. Clearing "Allow the computer to turn off this device to save power" in Device Manager fixes the recurring pattern.

Yes, and it is a common cause. A VPN client that exits badly can leave routes, DNS servers or a proxy configuration behind that point at a tunnel no longer there. The connection looks healthy while nothing routes.

Windows decides using its own connectivity check against a Microsoft endpoint. If that specific check is blocked — by a captive portal, a content filter or a strict firewall — the indicator reports no internet even though browsing works. The indicator is wrong, not your connection.

Yes, when simpler steps have failed. Be aware it clears third-party layered service providers, so VPN clients, proxies and some security software may need reinstalling afterwards. That is expected, and it is often exactly what fixes the problem.

That points at that network rather than the PC — a captive portal waiting for sign-in, a DHCP scope with no addresses left, or a guest network with client isolation. Try forgetting the network and rejoining it, which clears any stale saved configuration.