Force Windows 11 24H2 update in Windows Update

Modified on Wed, 13 Nov, 2024 at 11:27 AM

If the Windows 24H2 update is not showing in Windows 11.


# Open PowerShell as Administrator

$registryPath = "HKLM:\Software\Policies\Microsoft\Windows"

New-Item -Path $registryPath -Name "WindowsUpdate"

New-ItemProperty -Path "$registryPath\WindowsUpdate" -Name "ProductVersion" -Value "Windows 11" -PropertyType String

New-ItemProperty -Path "$registryPath\WindowsUpdate" -Name "TargetReleaseVersion" -Value 1 -PropertyType DWord

New-ItemProperty -Path "$registryPath\WindowsUpdate" -Name "TargetReleaseVersionInfo" -Value "24H2" -PropertyType String


Then do a check in Windows Update.

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article