There's nothing more annoying than your laptop showing full Wi-Fi bars and 'No Internet, Secured' while your phone streams Netflix three feet away.
Before you reboot your router for the tenth time, stop. If other devices on the same network are fine, the problem isn't your router, ISP, or the Wi-Fi password. It's your Windows machine failing to grab a valid IP or reach a DNS server.
Step 1: Run a Quick Network Reset (Works 80% of the Time)
Open Command Prompt as Administrator. Right-click Start, pick Windows Terminal (Admin) or Command Prompt (Admin).
Run these commands one at a time. Don't skip any.
ipconfig /release
ipconfig /flushdns
ipconfig /renew
netsh winsock reset
netsh int ip reset
Reboot. Seriously — don't skip the reboot. Winsock reset doesn't fully apply until the stack reloads.
If that doesn't do it, move on.
Step 2: Force a Public DNS Server
Your router's DNS relay is probably the culprit. This is the single most common cause of 'No Internet, Secured' where the connection itself is fine.
- Right-click the Wi-Fi icon in your taskbar → Open Network & Internet settings.
- Click Change adapter options.
- Right-click your Wi-Fi adapter → Properties.
- Select Internet Protocol Version 4 (TCP/IPv4) → Properties.
- Choose Use the following DNS server addresses.
- Enter
1.1.1.1and8.8.8.8. - Click OK, then run
ipconfig /flushdnsagain.
Test with ping 1.1.1.1 (IP) then ping google.com (name). If the IP responds but the name doesn't, DNS is your problem — confirmed.
Step 3: Disable IPv6 (Temporarily)
Some routers and ISPs handle IPv6 badly, and Windows tries it first. Uncheck Internet Protocol Version 6 (TCP/IPv6) in the same adapter properties window. If things start working, you've found it. You can re-enable it later once you've updated your router firmware.
Why This Actually Fixes It
Windows is aggressively optimistic about network state. When it can't reach Microsoft's NCSI (Network Connectivity Status Indicator) endpoint — www.msftconnecttest.com — it slaps that yellow triangle on your Wi-Fi icon regardless of whether real traffic works.
Three things break that check:
- Stale DHCP lease. Your adapter holds an IP that the router has since handed to another device. DHCP conflict. No routing. Every other device works because they grabbed fresh leases.
- DNS relay failure. The router accepts DNS queries but doesn't forward them. Common on older Asus, Netgear, and ISP-supplied boxes running firmware from 2019 or earlier.
- Corrupted Winsock catalog. Usually caused by VPN clients, third-party firewalls, or leftover proxy settings from a corporate network. The stack itself is broken above the driver level.
Resetting Winsock and forcing a public DNS bypasses all three. The reset clears binding corruption; the public DNS removes the router from the query path entirely.
Less Common Variations
VPN or Proxy Left Enabled
Check Settings → Network & Internet → Proxy. If 'Use a proxy server' is on and you don't know why, turn it off. NordVPN, ExpressVPN, and old corporate AnyConnect profiles love leaving proxy settings behind after uninstall.
Wi-Fi Adapter Power Saving
Device Manager → Network adapters → your Wi-Fi adapter → Properties → Power Management. Uncheck Allow the computer to turn off this device to save power. On Intel AX200/AX201 cards this causes intermittent drops that Windows reports as 'No Internet'.
Bad Wi-Fi Driver After a Windows Update
If this started right after a Patch Tuesday, roll the driver back. Device Manager → Network adapters → right-click adapter → Properties → Driver tab → Roll Back Driver. Realtek RTL8822BE cards on Dell XPS 15s and Lenovo IdeaPads get hit by this constantly.
Metered Connection Flag Stuck
Settings → Network & Internet → Wi-Fi → your network → turn off Metered connection. Windows sometimes flags a network as metered after a hotfix and throttles background connectivity checks.
Prevention
You can't stop every Windows networking bug, but you can cut the odds significantly:
- Set static DNS (1.1.1.1, 9.9.9.9, or 8.8.8.8) on every machine you own. It sidesteps the entire class of router DNS relay failures.
- Update router firmware every 6 months. Most 'No Internet, Secured' issues that aren't Windows-side live in router firmware from 2018-2021.
- Don't install random VPN clients 'just to try'. They're the #1 cause of corrupted Winsock catalogs on consumer Windows.
- After any major Windows feature update, run
ipconfig /flushdnsonce as a habit.
One more thing: if you're on a laptop, plug in Ethernet for 30 seconds and let Windows renegotiate the network profile. It resets the NCSI state faster than anything else. Weird, but it works.