How-to guides · clear steps · safer fixes
troubleshooting

Fix ‘No Internet’ Wi-Fi Connection Status in Windows 10 and Windows 11

Short answer

Troubleshoot the 'No Internet' Wi-Fi connection status in Windows 10 and Windows 11 with Microsoft-documented steps: ping default gateways, renew IP/DNS, and reset adapters.

Research-based

Last verified:

Applies to: Windows 10 and Windows 11

Comparison of local Wi-Fi access and internet access in Windows troubleshooting

When Windows connects to your local Wi-Fi network but shows No Internet under the network name, your PC is connected to the local network without reaching the internet. According to Microsoft Support documentation for Windows 10 and Windows 11, Windows identifies this limited connectivity state by sending a small HTTP request to a server on the internet; if no reply is received, the No Internet icon and status appear.

Initial Quick Checks and Isolation

Before changing system settings, perform the initial checks documented by Microsoft for Windows 10 and Windows 11:

  • Toggle Wi-Fi: Turn off Wi-Fi, turn it back on, and reconnect to your wireless network.
  • Test another device: Try connecting a separate phone or laptop to the same network. If the second device connects, the issue is likely on your PC.
  • Switch frequency bands: Many routers broadcast separate 2.4 GHz and 5 GHz frequency bands. If both appear in your available networks list, try connecting to the other band.

Renewing IP Configuration and Flushing DNS

You can release and renew your IP lease and clear DNS records from an administrative Command Prompt:

  1. Select Search on the taskbar, type command prompt, and next to the result select Run as administrator > Yes.
  2. Release the current IP address:
    ipconfig /release
  3. Request a new IP address:
    ipconfig /renew
  4. Clear the DNS resolver cache:
    ipconfig /flushdns

If you are not using static IP addresses on your network, check your router’s documentation to verify that DHCP is enabled. If enabling DHCP resolves the issue, the No connection icon changes to Wi-Fi connected within a few seconds.

Testing the Router Gateway and Interpreting Modem/ISP Issues

To determine whether communication is failing at your local router or further upstream, ping your default gateway:

  1. Open Command Prompt as Administrator.
  2. Type ipconfig and press Enter.
  3. Find your Wi-Fi network in the output and locate the IP address listed next to Default gateway (such as 192.168.1.1).
  4. Ping that address:
    ping 192.168.1.1

If you receive normal replies with zero packet loss, your PC can reach the Wi-Fi router. In that situation, Microsoft notes the issue is likely with your modem or Internet service provider (ISP), and recommends contacting your ISP or checking another device for an outage.

Verifying and Pinging the DNS Server

If your PC has an IP address but cannot resolve internet locations, verify communication with your assigned DNS server:

  1. In Command Prompt as Administrator, find your DNS server address:
    ipconfig /all | findstr /c:"DNS Servers"
  2. Note the displayed DNS server IP address.
  3. Send diagnostic packets to that address:
    ping [DNS server address]
  4. If you have a valid IP address but cannot ping your DNS server, Microsoft notes you can change your DNS server to an alternative public address and test again.

Resetting the Network Stack

If limited connectivity remains, run the manual network reset commands in the exact order documented by Microsoft:

  1. Open Command Prompt as Administrator.
  2. Reset the Winsock catalog:
    netsh winsock reset
  3. Reset the TCP/IP stack:
    netsh int ip reset
  4. Release the IP address:
    ipconfig /release
  5. Renew the IP address:
    ipconfig /renew
  6. Flush the DNS cache:
    ipconfig /flushdns
  7. Check if your connection is restored.

Managing Services and Adapter Power Settings

If the Wi-Fi connection drops or fails to stay associated, Microsoft documents these service and power checks:

  • Restart WLAN Service: Press Win + R, type services.msc, press Enter, right-click WLAN AutoConfig, and select Restart.
  • Disable Power Saving for Wi-Fi Adapter: Open Device Manager, expand Network adapters, right-click your Wi-Fi adapter, and select Properties. On the Power Management tab, uncheck Allow the computer to turn off this device to save power.

Driver Reinstallation and Network Reset

When prior steps do not restore full access, reinstall the wireless adapter driver or perform a network reset.

Reinstalling the Network Adapter Driver

  1. Ensure you have backup drivers available before uninstalling.
  2. Open Device Manager, expand Network adapters, right-click your Wi-Fi adapter, and select uninstall.
  3. Select Start > Power > Restart. Windows will look for and install the adapter driver automatically. If it does not, install your saved backup driver.

Windows Network Reset

Network reset is documented by Microsoft as a last-resort step that removes installed network adapters and restores default network settings. You may need to reinstall VPN clients or virtual switches (such as Hyper-V) afterward.

  1. Select Start > Settings > Network & internet.
  2. On Windows 11, select Advanced network settings > Network reset. On Windows 10, select Status > Network reset.
  3. Select Reset now > Yes to confirm.
  4. Wait for your PC to restart and check your connection.

Research Method and Limitations

This answer was prepared strictly from the supplied public source excerpt from Microsoft Support’s documentation for Windows 10 and Windows 11. Material limitations apply: passages in the supplied excerpt were truncated, no accessible competing coverage was available, and no live operating system or hardware testing was conducted. Technical guidance is limited to the visible diagnostic commands, UI sequences, and router interpretations in the provided text.

Comparison of gateway and DNS diagnostic checks

Text version of the diagrams

  • Local Network vs Internet: PC to Wi-Fi — Connected to local network; Router gateway — Local reachability test; Internet service — Upstream access may fail
  • Two Diagnostic Checks: Gateway ping — Tests router reachability; DNS server — Tests resolver reachability; Next action — Change scope of troubleshooting

Source references

Related guides