# How to Fix the 'No Internet, secured' Wi-Fi Error URL: https://www.mytechnician.tech/tips/fix-no-internet-secured-wifi/ Published: 2026-04-04 | Updated: 2026-08-10 | Author: Ankit Kumar Tags: Windows, Network, Wi-Fi, Fix Summary: Windows says 'Connected, secured' but pages won't load? Fix the no-internet Wi-Fi error with DNS swaps, IP reset, driver checks, and adapter resets. Recommended app: Network Traffic Monitor & Analyzer — https://www.mytechnician.tech/apps/network-monitor/ (Microsoft Store: https://apps.microsoft.com/detail/9NGCWN2BKVSC?hl=en-us&cid=mytechnician-web). Optional; every step below uses built-in Windows tools. ## The Problem Wi-Fi shows as connected and the password was accepted, but Windows labels the network **"No Internet, secured"** and nothing loads. Phones on the same router usually work fine, which points at the PC—DNS, the IP configuration, or a stuck network stack. ## Symptoms * A yellow warning triangle or globe over the Wi-Fi icon. * Browsers reporting `DNS_PROBE_FINISHED_NO_INTERNET` or `ERR_INTERNET_DISCONNECTED`. * Local devices reachable (a network printer works) while the internet is not. ## Step 1: Establish Where It Breaks Three commands narrow this down in under a minute. Open **Terminal**: ```cmd ping 192.168.1.1 ``` (Use your gateway address from `ipconfig` if it differs.) **Fails** → the problem is between the PC and the router: Wi-Fi, the adapter, or the IP configuration. ```cmd ping 1.1.1.1 ``` **Works while the previous one also worked, but websites do not load** → the routing is fine and DNS is the fault. Go to Step 4. ```cmd ping google.com ``` **Fails while `ping 1.1.1.1` succeeds** → confirmed DNS problem. ## Step 2: Check the IP Address You Were Given ```cmd ipconfig /all ``` Read the **IPv4 Address** for the Wi-Fi adapter: * **169.254.x.x** — Windows self-assigned an address because DHCP never answered. The router did not give you a lease; restart the router and see Step 3. * **0.0.0.0** or blank — the adapter is not connected properly. * **A normal address such as 192.168.1.x with a matching Default Gateway** — the connection is fine and the fault is DNS or beyond the router. Also check **DNS Servers**. If they are blank or point at something odd, Step 4 is your fix. ## Step 3: Reset the Network Stack The standard repair, and it resolves the majority of these cases. In **Terminal (Admin)**, run each in turn: ```cmd netsh winsock reset ``` ```cmd netsh int ip reset ``` ```cmd ipconfig /release ``` ```cmd ipconfig /renew ``` ```cmd ipconfig /flushdns ``` **Restart the PC afterwards**—`netsh winsock reset` does not take effect until you do. Note this clears layered service providers installed by VPN clients and older security suites, which is often exactly the point. ## Step 4: Set a Reliable DNS Server 1. Press `Win + R`, type `ncpa.cpl`, press Enter. 2. Right-click your Wi-Fi adapter → **Properties**. 3. Double-click **Internet Protocol Version 4 (TCP/IPv4)**. 4. Choose **Use the following DNS server addresses**: * Cloudflare: `1.1.1.1` / `1.0.0.1` * Google: `8.8.8.8` / `8.8.4.4` * Quad9 with malware filtering: `9.9.9.9` / `149.112.112.112` 5. Click **OK** twice, then run `ipconfig /flushdns`. Deeper walkthrough: [how to change DNS servers](https://www.mytechnician.tech/tips/how-to-change-dns-servers-windows-11/) and [fix "DNS server not responding"](https://www.mytechnician.tech/tips/fix-dns-server-not-responding-windows-11/). ## Step 5: Check IPv6 and Static Settings 1. Back in the adapter's **Properties**, confirm **Internet Protocol Version 6 (TCP/IPv6)** is ticked. Some networks require it. 2. In the IPv4 properties, confirm **Obtain an IP address automatically** is selected unless you deliberately set a static address. A leftover static IP from another network produces this exact error. ## Step 6: Reinstall the Wi-Fi Driver 1. Right-click **Start** → **Device Manager** → **Network adapters**. 2. Right-click your Wi-Fi adapter → **Uninstall device**. Tick **Attempt to remove the driver** only if you have the replacement driver downloaded already. 3. **Action** → **Scan for hardware changes**, or restart. 4. Reconnect to Wi-Fi. Then, in **Properties** → **Power Management**, untick **Allow the computer to turn off this device to save power**. That setting causes drop-outs that present as this error after sleep. ## Step 7: Rule Out Software Interference * **VPN clients** are the most common cause when this appears suddenly. Disconnect and, if that fixes it, reinstall the client—a half-removed VPN leaves broken routes behind. * **Third-party firewalls and security suites** can block traffic after an update. Uninstall as a test rather than merely disabling. * Check the proxy settings: **Settings** → **Network & internet** → **Proxy** → everything off unless your workplace requires it. Malware and adware set proxies here. * Check the routing table for junk left by a VPN: ```cmd route print ``` ## Step 8: Use the Windows Reset (Last Resort) **Settings** → **Network & internet** → **Advanced network settings** → **Network reset**. This removes and reinstalls every adapter and returns all networking settings to default. You will need to reconnect to Wi-Fi and reinstall VPN clients afterwards. ## When It Is Not the PC If every device on the network shows the same symptom, the router or the ISP is at fault: 1. Restart the router—unplug for 30 seconds. 2. Check whether the router's own status page reports a WAN connection. 3. Check the ISP's outage page. Related: [fix Wi-Fi keeps disconnecting](https://www.mytechnician.tech/tips/fix-wifi-keeps-disconnecting-windows-11/) and [fix "Can't connect to this network"](https://www.mytechnician.tech/tips/fix-cant-connect-to-this-network-windows-11/). --- Source: https://www.mytechnician.tech/tips/fix-no-internet-secured-wifi/ — My Technician, free Windows 10/11 troubleshooting guides. Related tool: Network Traffic Monitor & Analyzer (Network Traffic Monitor & Analyzer shows real-time bandwidth usage, active connections, and per-app network traffic on Windows 10 and 11.) — https://www.mytechnician.tech/apps/network-monitor/ More guides: https://www.mytechnician.tech/llms.txt