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: Oldest
  1. Anonymous
    2025-03-07T21:44:06+00:00

    Use Network Reset on Windows.

    Type to Search "Network Reset"

    You'll need local admin.

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2025-03-11T06:17:23+00:00

    after 2 or 3 days we face the same issue is there any permanent resolution ???

    Was this answer helpful?

    0 comments No comments
  3. 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
  4. Anonymous
    2025-04-03T11:51:34+00:00

    I need help with my network.

    Hey i just came by around here and im new to this but, i need to resolve an issue i have come across lately with my internet.

    It keeps disappearing and when i go to device manager, it just keeps on having a problem. I reinstalled new drivers did alot of update but it just wont budge

    Was this answer helpful?

    0 comments No comments
  5. Anonymous
    2025-04-05T18:46:56+00:00

    Just updated from windows 10 had to purchase a new machine at a great expense. Windows 11 23 my network was working fine just windows keep trying to charge settings at every reboot. Then update to 24 what a pile of 💩

    No network no work around nothing will fix only going back to 23

    Microsoft only won’t to make money out of windows 11.

    I’m moving to Linux as soon as I can

    This should be working out of the box

    I’m not being paid to be a guinea pig

    Was this answer helpful?

    0 comments No comments