Tag: Wi-Fi connected but no internet

  • “Wi-Fi Connected But No Internet Access on Windows 11 24H2 โ€” 2026 Fix Guide”

    “Wi-Fi Connected But No Internet Access on Windows 11 24H2 โ€” 2026 Fix Guide”

    Fix “Wi-Fi Connected But No Internet” on Windows 11 24H2 โ€” 2026 Guide (11 Fixes)

    ๐Ÿ“‹ 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)

    ๐Ÿ“… Updated: June 2026 โฑ๏ธ 14 min read ๐ŸชŸ Windows 11 24H2

    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].

    โš ๏ธ Before You Start โ€” The 30-Second Quick Fix
    ๐Ÿ”„ 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.

    ๐Ÿ”ง Quick Diagnostic Test:
    1. Press Win + R, type cmd, press Enter
    2. Type ipconfig /all and press Enter
    3. 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
    1

    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
    2

    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.

    3

    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.
    4

    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
    ๐Ÿ’ก Pro tip: The dependency should now show NSI, RpcSs, Dhcp only (no WinHTTPAutoProxySvc). This fix survives reboots and addresses the root cause rather than just symptoms.
    5

    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
    6

    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
    7

    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
    ๐Ÿ’ก If Windows doesn’t automatically reinstall, go to your PC/laptop manufacturer’s website (Dell, Lenovo, HP, ASUS, etc.), download the latest Wi-Fi driver for Windows 11 24H2, and install it manually.
    8

    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
    โš ๏ธ Warning: Network reset removes all saved Wi-Fi passwords and VPN connections. Have your Wi-Fi password ready before doing this.
    9

    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
    10

    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
    11

    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.

    ๐Ÿ“Š Microsoft’s Response: Microsoft has acknowledged the issue and is working on a cumulative update. In the meantime, Solutions 4 and 11 (removing the WinHTTPAutoProxySvc dependency) provide a permanent fix that survives reboots [2][6].

    ๐Ÿ›ก๏ธ 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]

    โ˜• 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
    ๐Ÿ“š Sources & Citations
    [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

    ๐Ÿ’พ Wondershare Recoverit

    Recover lost files โ€” 99.5% success rate

    icon
    ๐Ÿ“„ Wondershare PDFelement

    Edit, sign & convert PDFs with AI

    icon
    ๐Ÿ› ๏ธ Wondershare Repairit

    Fix corrupted photos & videos instantly

    icon

    ๐Ÿ”— 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

    ๐Ÿ” Browse the Full Library โ†’

    150+ free troubleshooting guides โ€ข Updated weekly