Hi.
I applied these modifications in my company's environment, and we are still getting some computers upgraded to Windows 11. Is Microsoft pushing for that upgrade?
Is there any other way to stop Windows 11? We have some applications that are not compatible with W11, and we are trying to figure the best way to proceed with them.
To add a new registry key:
TargetReleaseVersion REG_DWORD 0x1
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v TargetReleaseVersion /t REG_DWORD /d 0x1
TargetReleaseVersionInfo REG_SZ 21H2
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v TargetReleaseVersionInfo /t REG_SZ /d 21H2
/v - The value name, under the selected Key, to add
/t - RegKey data types
/d - The data to assign to the registry ValueName being added