Can't connect to this Wi-Fi after updating windows 11 24H2 update

Anonymous
2024-10-09T05:27:51+00:00

In previous version of windows 11 i am using wireless network from router but after updating the window 11 24H2 version i can't connect wireless network from router but i can connect smartphone's wifi and router through LAN cable.

I have done all the troubleshooting steps and update fixer, reset network through settings, deleted cache using command prompt and done all things using with forums or troubleshooting but still issue is not resolved.

If anyone can help then please give me suggestions to how to resolve this issue. I hope windows help center connect & give proper response to getting error fix.

Windows for home | Windows 11 | Windows update

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

88 answers

Sort by: Most helpful
  1. Anonymous
    2025-03-24T13:53:22+00:00

    I created a detection and remediation script pair for use in Intune to check if the registry-value has changed at boot.

    If it does, it immediately changes the value and reboots - before a user can log in.

    That way, Start 3 stays that way, without jumping to Start 4 and killing the wifi again.

    This works even without admin rights, as I run the script with SYSTEM rights.

    Enjoy.

    ====================================================================================

    remediation.ps1

    $scriptPath = "C:\Scripts\Check-WinHttpStart.ps1"

    Zorg dat de map bestaat

    if (-not (Test-Path "C:\Scripts")) {

    New-Item -Path "C:\Scripts" -ItemType Directory -Force | Out-Null
    

    }

    Maak het control script aan (indien nog niet aanwezig)

    $scriptContent = @'

    $regPath = "HKLM:\SYSTEM\CurrentControlSet\Services\WinHttpAutoProxySvc"

    $currentValue = Get-ItemPropertyValue -Path $regPath -Name Start -ErrorAction SilentlyContinue

    if ($currentValue -ne 3) {

    Set-ItemProperty -Path $regPath -Name Start -Value 3
    
    Restart-Computer -Force
    

    }

    '@

    if (-not (Test-Path $scriptPath)) {

    $scriptContent | Set-Content -Path $scriptPath -Encoding UTF8
    

    }

    Verwijder eventueel oude taak

    Unregister-ScheduledTask -TaskName "CheckWinHttpStart" -Confirm:$false -ErrorAction SilentlyContinue

    Maak nieuwe scheduled task aan

    $action = New-ScheduledTaskAction -Execute "powershell.exe" -Argument "-ExecutionPolicy Bypass -WindowStyle Hidden -File "$scriptPath""

    $trigger = New-ScheduledTaskTrigger -AtStartup

    $principal = New-ScheduledTaskPrincipal -UserId "SYSTEM" -RunLevel Highest

    Register-ScheduledTask -TaskName "CheckWinHttpStart" -Action $action -Trigger $trigger -Principal $principal -Settings (New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -StartWhenAvailable -DontStopIfGoingOnBatteries -Hidden -DisallowStartOnRemoteAppSession) -Force

    =================================================

    detection.ps1

    if (Test-Path "C:\Scripts\Check-WinHttpStart.ps1") {

    Write-Host "Script aanwezig"
    
    exit 0
    

    } else {

    Write-Host "Script ontbreekt"
    
    exit 1
    

    }

    =================================================

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  2. Anonymous
    2025-01-25T08:51:21+00:00

    Option 2 Using a Generic Wi-Fi Driver did the trick for me.

    1. Use a Generic Wi-Fi Driver
      • Go back to Device Manager, and right-click on your Wi-Fi adapter again.
      • Select Update driver > Browse my computer for drivers > Let me pick from a list.
      • Choose a generic driver like Microsoft Wi-Fi Direct Virtual Adapter or another option listed, and check if it resolves the issue.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  3. Anonymous
    2025-01-18T03:35:11+00:00

    OK - I put a comment on the MS Feedback Hub about this problem. Here is the link.

    https://aka.ms/AAhdrxh

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  4. Anonymous
    2025-01-18T02:57:17+00:00

    Derrick - I understand the patience thing. But this happened to me on 1/16/25, it's been happening since Oct. Then an hour ago I read that MS is about to make 24H2 mandatory. I'll try the Feedback Hub thing you mentioned.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  5. Anonymous
    2025-01-16T05:20:13+00:00

    When using version 23H2, I did not experience the intermittent Wi-Fi disconnection issues that I encountered with version 24H2. However, I recently purchased a new Galaxy Book5 Pro, which came pre-installed with 24H2. Unfortunately, I faced several software-related issues with this version, so I ultimately reverted back to 24H2.

    To share some new information, there was an additional update for 24H2 yesterday. I'm not sure if this update is related to Wi-Fi connectivity, but since applying it, the Wi-Fi disconnection issue seems to have disappeared. That said, I've only been using it for a day, so the reliability of this feedback is not very high yet.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments