Windows 11 upgrade problems
windows 11 update
Windows 11 update error 0x80070002
Unexplained failure to support Windows 11
Videos
Great! Glad that it is working now.
Hi
Hi
Thanks. I do exactly understand what you wrote about. My problem that Dell drivers update was not working and doesn't allow me to update. However, I finally solved the problem and big thank you for Microsoft restore point and completely fixed the problem.
We have around 60 clients in our company that refuse to upgrade to Windows 11 via Windows Update, the upgrade simply doesn’t show up.
These devices are managed through an RMM and were previously connected to WSUS, but all WSUS settings have since been removed. Updates are now handled entirely through our RMM.
All devices are fully compatible with Windows 11:
Dell OptiPlex models
Intel Core i5-8500 or newer
8 GB RAM
TPM 2.0
UEFI with Secure Boot enabled
More than 64 GB free SSD space
Drivers updated via Windows Update
The WSUS settings have been deleted from the policy, and I double-checked to make sure they’re really gone but I still can’t find the cause of the issue.
Has anyone else experienced the same problem?
Edit: We’re using NinjaOne as our RMM, and we actually have a script that can upgrade Windows 10 to 11 manually, so we can push the upgrade if needed.
However, I’d really like to understand why Windows Update itself doesn’t offer the upgrade anymore, especially since 500+ other devices (some with identical specs) upgraded just fine before.
Edit / Solution: Turns out the fix was to explicitly set the target feature update version in the registry. After adding these keys, the Windows 11 24H2 upgrade immediately appeared via Windows Update:
$Path = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" New-Item -Path $Path -Force | Out-Null Set-ItemProperty -Path $Path -Name "ProductVersion" -Value "Windows 11" Set-ItemProperty -Path $Path -Name "TargetReleaseVersion" -Type DWord -Value 1 Set-ItemProperty -Path $Path -Name "TargetReleaseVersionInfo" -Value "24H2"
After running this and checking for updates again, the upgrade showed up instantly.