๐ UPDATE LOG โ REGULARLY MAINTAINED
- June 2025 โ Initial publication with 11 working fixes for Windows 11 24H2
- [NEW FIX DATE] โ [Add new solution here when Microsoft releases official patch]
- [UPDATE DATE] โ [Add registry fix or workaround here]
โ Solutions verified with Windows 11 24H2 (Build 26100.xxxx) ยท Last reviewed: June 2026
๐ Fix “Wi-Fi Connected But No Internet” on Windows 11 24H2 โ 2026 Guide (11 Fixes)
You look at your taskbar. The Wi-Fi icon shows connected. But no web pages load. Microsoft Teams says “No internet.” Your browser displays DNS errors. This is the “Wi-Fi connected but no internet” problem โ and after the Windows 11 24H2 update, thousands of users are reporting the exact same issue [1][2].
๐ Disable then re-enable your Wi-Fi adapter: Settings โ Network & internet โ Advanced network settings โ More network adapter options โ Right-click Wi-Fi โ Disable โ Wait 10 seconds โ Enable.
โ๏ธ Toggle Airplane Mode: Click the network icon in the taskbar โ Airplane mode On โ Wait 5 seconds โ Airplane mode Off.
๐ Step 0: Diagnose Your Exact Problem โ APIPA or DNS?
There are two different types of “no internet” problems. The fix depends on which one you have.
1. Press
Win + R, type cmd, press Enter2. Type
ipconfig /all and press Enter3. Look at your Wi-Fi adapter’s IPv4 Address
โ If you see
169.254.x.x โ You have an APIPA address. Your PC is assigning itself an IP because DHCP failed. Windows is connected to the network but has no valid IP address. Fix: Solutions 3, 4, 5, 8โ If you see a normal IP (192.168.x.x or 10.x.x.x or similar) โ DHCP is working. The problem is DNS or a connectivity layer issue. Fix: Solutions 2, 6, 7, 9
Run the Built-in Network Troubleshooter
Surprisingly, Microsoft’s own troubleshooter actually works for 24H2 Wi-Fi issues [4].
Step A: Press Win + I (Settings) Step B: Navigate to System โ Troubleshoot โ Other troubleshooters Step C: Click "Run" next to "Internet Connections" Step D: Click "Run" next to "Network Adapter" and select Wi-Fi Step E: Follow the on-screen prompts
Flush DNS & Reset IP Stack โ Most Effective
This is the #1 fix for “connected but no internet” issues according to Microsoft engineers [3].
Open Command Prompt or PowerShell as Administrator: # Step 1: Flush DNS cache ipconfig /flushdns # Step 2: Release current IP address ipconfig /release # Step 3: Renew IP address ipconfig /renew # Step 4: Reset Winsock catalog netsh winsock reset # Step 5: Reset TCP/IP stack netsh int ip reset # Step 6: Reset Windows Firewall (optional) netsh advfirewall reset
After these commands, restart your PC completely.
Disable IPv6 (Temporary Fix for 24H2)
Windows 11 24H2 has a known IPv6 conflict with many routers, causing DNS failures [5].
Step A: Press Win + R โ type "ncpa.cpl" โ Enter Step B: Right-click your Wi-Fi adapter โ Properties Step C: Scroll to "Internet Protocol Version 6 (TCP/IPv6)" Step D: UNCHECK the box โ Click OK Step E: Restart your PC โ If this fixes the problem, keep IPv6 disabled until Microsoft releases a patch. โ ๏ธ Re-enable it after future Windows updates to check if the bug is resolved.
Remove WinHTTPAutoProxySvc Dependency โ Advanced PowerShell Fix
This is the unique solution most other guides miss. According to PowerShell expert Harm Veenstra, the 24H2 Wi-Fi issue stems from a corrupted dependency chain where WinHTTPAutoProxySvc prevents the Windows Connection Manager from starting properly [2].
# Open PowerShell as Administrator # Step 1: Check the current dependency Get-Service Wcmsvc | Select-Object -ExpandProperty ServicesDependedOn # Step 2: Remove the problematic dependency sc config Wcmsvc depend= /"NSI"/"RpcSs"/"Dhcp" # Step 3: Verify the fix worked Get-Service Wcmsvc | Select-Object -ExpandProperty ServicesDependedOn # Step 4: Restart the Windows Connection Manager Restart-Service Wcmsvc -Force
NSI, RpcSs, Dhcp only (no WinHTTPAutoProxySvc). This fix survives reboots and addresses the root cause rather than just symptoms.
Disable Fast Startup โ Caches Broken Network States
Fast Startup saves system state (including broken network configurations) between shutdowns. Disabling it forces a clean start every time [4].
Step A: Control Panel โ Power Options Step B: Click "Choose what the power buttons do" (left sidebar) Step C: Click "Change settings that are currently unavailable" Step D: UNCHECK "Turn on fast startup (recommended)" Step E: Click "Save changes" โ Shutdown โ Restart
Change DNS Server to Google or Cloudflare
Your ISP’s DNS servers may be failing after the 24H2 update. Switching to Google’s or Cloudflare’s public DNS fixes this [3].
Step A: Press Win + R โ type "ncpa.cpl" โ Enter
Step B: Right-click your Wi-Fi adapter โ Properties
Step C: Double-click "Internet Protocol Version 4 (TCP/IPv4)"
Step D: Select "Use the following DNS server addresses"
Step E: Enter:
Preferred DNS server: 8.8.8.8 (Google)
Alternate DNS server: 8.8.4.4 (Google)
OR using Cloudflare:
Preferred DNS server: 1.1.1.1
Alternate DNS server: 1.0.0.1
Step F: Click OK โ Close โ Restart your PC
Update or Reinstall Network Adapter Driver (Clean Install)
Corrupted drivers after the 24H2 update are a common cause. A clean installation removes all traces of the old driver [1].
Step A: Press Win + X โ Device Manager Step B: Expand "Network adapters" Step C: Right-click your Wi-Fi adapter โ Uninstall device Step D: โ CHECK "Delete the driver software for this device" Step E: Click Uninstall โ Restart your PC Step F: Windows will automatically reinstall the driver
Network Reset (Last Resort Before Reinstall)
This removes and reinstalls all network adapters and resets networking components to their original settings [6].
Step A: Press Win + I โ Network & internet Step B: Click "Advanced network settings" Step C: Click "Network reset" Step D: Click "Reset now" โ Yes Step E: Your PC will restart in 5 minutes
Power Cycle (Not Just Restart)
A full power drain resets the network chip’s firmware, unlike a normal Windows restart [4].
Laptop with non-removable battery / Desktop: 1. Shut down completely 2. Unplug the power cord 3. Hold the Power button for 20-30 seconds 4. Reconnect power 5. Boot normally Laptop with removable battery: 1. Shut down and unplug power 2. Remove the battery 3. Press and hold Power button for 20 seconds 4. Reinsert battery, plug in, and turn on
Reset TCP/IP Stack via Command Line
A more aggressive version of the network reset using Command Line [3].
Open Command Prompt or PowerShell as Administrator: # Reset TCP/IP stack to original state netsh int ip reset C:\resetlog.txt # Reset Winsock catalog netsh winsock reset # Clear DNS cache again ipconfig /flushdns # Renew IP address ipconfig /renew # Restart your PC
Registry Fix (For IT Admins / Advanced Users)
For enterprise environments and persistent cases, this registry modification can resolve DHCP failures [2].
Open Registry Editor (regedit) as Administrator:
Navigate to:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WcmSvc
Check the "DependOnService" value:
- If it shows "WinHTTPAutoProxySvc," remove it
- Keep only: NSI, RpcSs, Dhcp
To fix via PowerShell:
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\WcmSvc" -Name "DependOnService" -Value @("NSI","RpcSs","Dhcp") -Type MultiString
Restart your PC.
โ ๏ธ Why Is This Happening in 24H2?
The Windows 11 24H2 update introduced a bug in the Windows Connection Manager (Wcmsvc) service. The service depends on WinHTTPAutoProxySvc, which can stall or fail, preventing the network stack from completing its initialization [2]. When this happens, the network adapter appears connected but receives no valid IP configuration โ resulting in the dreaded “no internet” error.
๐ก๏ธ Preventing Future Issues
- Pause Windows Updates โ If your internet is working, consider pausing updates for 2-4 weeks after a new release to avoid buggy patches
- Keep driver backups โ Save a working Wi-Fi driver installer on your desktop before major updates
- Create a restore point โ Before any major Windows update, create a system restore point
- Use a network reset script โ Save Solutions 2 and 4 as a .bat file for quick access
๐ง FUTURE UPDATE RESERVED SPACE
When Microsoft releases a patch or new workaround emerges, add the solution here.
โโโโโโโโโโโโโโโโโโโโโโ
[Add new fix here with date and source citation]
โก๏ธ Browse the Full Library โ
โ Liked this fix? Found it helpful?
If I saved you hours of frustration or a $150 tech support call โ consider buying me a coffee.
โ Buy Me a Coffee[1] Microsoft Q&A (March 2025): Windows 11 24H2 update caused Wi-Fi connection but no internet โ Driver reinstall steps
[2] Harm Veenstra / PowerShell Community (January 2025): 24H2 network failure โ WinHTTPAutoProxySvc dependency fix
[3] Microsoft Q&A (January 2025): After Windows 11 24H2 update, Wi-Fi connects but no internet โ Flush DNS, IP reset, Google DNS
[4] Microsoft Q&A (February 2025): 24H2 update not detecting any Wi-Fi networks โ Fast Startup fix, power drain
[5] Tech guide / DLLโfiles.com (March 2025): Windows 11 24H2 internet connection problem โ TCP/IP stack, Google DNS
[6] Microsoft Q&A (May 2025): Windows 11 24H2 network problems โ Network reset, Winsock catalog
โ All solutions verified with Windows 11 24H2 (Build 26100.x) as of June 2026.
[Future citation space โ add new Microsoft KB article or official patch notes here when available]
๐ ๏ธ Recommended Tools by Wondershare
Recover lost files โ 99.5% success rate
Edit, sign & convert PDFs with AI
Fix corrupted photos & videos instantly
๐ Affiliate Disclosure: I may earn a commission when you purchase through these links at no extra cost.
๐ง PART OF A LARGER LIBRARY
This article is part of the Ultimate Troubleshooting Library โ your free resource for fixing 150+ tech problems in 5 minutes or less.
๐ถ WiFi & Internet โข ๐จ๏ธ Printer Errors โข ๐ป Windows 11 โข ๐ค AI Tools โข ๐ฎ Gaming โข ๐ Smart Home โข ๐ WordPress
150+ free troubleshooting guides โข Updated weekly

Leave a Reply