Created
October 31, 2025 16:20
-
-
Save supermarsx/2b1ce7f780289170bb5a9dcd54d4f5f1 to your computer and use it in GitHub Desktop.
Force enable Windows 11 25H2 update availability
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| REG ADD HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v DeferFeatureUpdates /t REG_DWORD /d "0" /f | |
| REG ADD HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsStore /v DisableOSUpgrade /t REG_DWORD /d "0" /f | |
| REG ADD HKEY_LOCAL_MACHINE\SYSTEM\Setup\UpgradeNotification /v UpgradeAvailable /t REG_DWORD /d "1" /f | |
| REG ADD HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v ProductVersion /t REG_SZ /d "Windows 11" /f | |
| REG ADD HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v TargetReleaseVersion /t REG_DWORD /d "1" /f | |
| REG ADD HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v TargetReleaseVersionInfo /t REG_SZ /d "25H2" /f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment