๐Ÿ› ๏ธ HowToFixNow

Windows 11 Wi-Fi Not Connecting: Step-by-Step Fix

Updated on 5/9/20264 min readHowToFixNow

Windows 11 Wi-Fi problems range from the connection refusing to establish at all, to connecting successfully but showing "No Internet, Secured", to dropping every few minutes. In most cases the root cause is a driver issue, a corrupted network profile, or a broken TCP/IP stack โ€” all of which are fixable in software.

Quick fix (TL;DR)

  • Run the Network Troubleshooter: Settings โ†’ System โ†’ Troubleshoot โ†’ Other troubleshooters โ†’ Internet Connections
  • Forget and re-add the network: Settings โ†’ Network & Internet โ†’ Wi-Fi โ†’ Manage known networks
  • Reset the network stack in an admin Command Prompt:
    netsh winsock reset
    netsh int ip reset
    ipconfig /flushdns
    
  • Roll back or reinstall the Wi-Fi driver in Device Manager
  • Change DNS to 8.8.8.8 in adapter settings

Causes

  • Wi-Fi driver outdated or corrupted: the most common cause โ€” driver reinstall or rollback usually fixes it
  • Saved network profile corrupted: wrong stored password or stale DHCP lease
  • IP address conflict: DHCP failure or two devices assigned the same IP
  • DNS server unreachable: connected to router but DNS cannot resolve domain names
  • Winsock corruption: Windows network stack damaged by a software conflict or failed update
  • Hardware switch off: physical Wi-Fi toggle on laptop, or airplane mode left enabled
  • Windows Update installed wrong driver: automatic update replaced working driver with incompatible version

Step-by-step guide

Step 1 โ€” Check the basics

Verify that airplane mode is off: click the network icon in the taskbar โ†’ confirm Airplane mode is toggled off.

Check whether other devices can connect to the same network. If they cannot, restart your router โ€” the problem is not Windows 11.

Step 2 โ€” Run the Network Troubleshooter

  1. Open Settings โ†’ System โ†’ Troubleshoot โ†’ Other troubleshooters
  2. Click Run next to Internet Connections
  3. Follow the on-screen prompts

Windows will detect and automatically fix common issues such as incorrect IP configuration or disabled network services.

Step 3 โ€” Forget and re-add the Wi-Fi network

  1. Go to Settings โ†’ Network & Internet โ†’ Wi-Fi
  2. Click Manage known networks
  3. Select your network โ†’ click Forget
  4. Click the Wi-Fi icon in the taskbar, select your network, enter the password

This removes any corrupted stored credentials or stale DHCP lease.

Step 4 โ€” Reset the network stack

Open Command Prompt as Administrator (search "cmd" โ†’ right-click โ†’ Run as administrator) and run these commands one by one:

netsh winsock reset
netsh int ip reset
ipconfig /release
ipconfig /flushdns
ipconfig /renew

Restart your PC. These commands rebuild the Winsock catalog and flush any corrupted IP or DNS configuration.

Step 5 โ€” Change DNS servers

  1. Open Settings โ†’ Network & Internet โ†’ Wi-Fi โ†’ Hardware properties
  2. Next to DNS server assignment, click Edit
  3. Switch to Manual, enable IPv4
  4. Set Preferred DNS to 8.8.8.8 and Alternate to 8.8.4.4 (Google)
  5. Click Save

Step 6 โ€” Update or reinstall the Wi-Fi driver

  1. Right-click the Start button โ†’ Device Manager
  2. Expand Network Adapters
  3. Right-click your Wi-Fi adapter โ†’ Update driver โ†’ Search automatically

If that doesn't help, try rolling back:

  • Right-click the adapter โ†’ Properties โ†’ Driver โ†’ Roll Back Driver

For the latest driver, visit your laptop manufacturer's support page (Dell, HP, Lenovo, ASUS, etc.) and download the Wi-Fi driver for your model.

Step 7 โ€” Disable the adapter and re-enable it

  1. In Device Manager, right-click your Wi-Fi adapter
  2. Click Disable device โ†’ wait 5 seconds
  3. Right-click again โ†’ Enable device

Step 8 โ€” Check Windows Update

Go to Settings โ†’ Windows Update and install any pending updates, including optional driver updates. A specific Windows 11 build may have already patched the issue you are experiencing.

Step 9 โ€” Reset network settings

As a last resort, reset all network settings:

  1. Open Settings โ†’ Network & Internet โ†’ Advanced network settings
  2. Click Network reset
  3. Click Reset now and confirm

This reinstalls all network adapters and restores all networking components to their default state. You will need to reconnect to Wi-Fi and reconfigure any VPN or custom DNS settings.

Common mistakes to avoid

  • โŒ Restarting the PC but not the router โ€” both are needed
  • โŒ Running network reset commands without administrator privileges
  • โŒ Forgetting the network but entering the wrong password when reconnecting
  • โŒ Updating the driver via Windows Update only โ€” manufacturer drivers are more reliable
  • โŒ Overlooking airplane mode or a physical Wi-Fi hardware switch on laptops

Further reading

Frequently asked questions

Why does Windows 11 say 'No Internet, Secured' on Wi-Fi?

This means Windows is connected to your router but cannot reach the internet. The most common causes are a DNS failure, an IP conflict, or a router-side problem. Running 'netsh winsock reset' and changing DNS to 8.8.8.8 usually resolves it.

How do I reset the network stack in Windows 11?

Open Command Prompt as administrator and run: 'netsh winsock reset', 'netsh int ip reset', 'ipconfig /release', 'ipconfig /flushdns', 'ipconfig /renew'. Restart your PC afterwards.

Can a Windows 11 update break Wi-Fi?

Yes. Windows Update occasionally installs incompatible Wi-Fi driver versions. Roll back the driver via Device Manager โ†’ Network Adapters โ†’ your Wi-Fi adapter โ†’ Properties โ†’ Driver โ†’ Roll Back Driver.

Should I uninstall and reinstall the Wi-Fi driver?

Yes, if the driver is corrupted or incompatible. Uninstall it in Device Manager, restart Windows, and it will reinstall automatically. For better results, download the latest driver from your laptop or motherboard manufacturer's website.

What is the fastest way to fix Wi-Fi on Windows 11?

Run the built-in Network Troubleshooter (Settings โ†’ System โ†’ Troubleshoot โ†’ Other troubleshooters โ†’ Internet Connections), then try 'netsh winsock reset' in an admin Command Prompt if the troubleshooter finds no fix.