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
Feedback sent
We appreciate your effort and will try to fix the article