Changes between Version 1 and Version 2 of Stop Windows 11 Upgrade


Ignore:
Timestamp:
06/30/24 08:02:19 (10 months ago)
Author:
Paul Kulda
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Stop Windows 11 Upgrade

    v1 v2  
    99
    1010}}}
     11
     12or
     13
     14{{{
     15Block Windows 11 update from Installing
     16
     17To Block Windows 11 update, see the steps below, which are explained later on step by step. This would also work even if you have clicked Download and install, or rolled back to Windows 10 and it keeps trying again.
     18
     19    Right-click Start and select Windows Powershell(admin).
     20    Press Yes when Prompted.
     21    Type cmd.exe to open Command Prompt inside Powershell.
     22
     23Command 1:
     24
     25Paste the following command to enable Targeted Updates to a specific release:
     26
     27reg add HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v TargetReleaseversion /t REG_DWORD /d 1
     28
     29When it is done, enter command 2 which varies by the current version of Windows 10.
     30
     31Command 2:
     32
     33If you are on Windows 10 version 21H2, use the command below.
     34
     35reg add HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v TargetReleaseversionInfo /t REG_SZ /d 21H2
     36
     37If you are on Windows 10 version 21H1, use the command below.
     38
     39reg add HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v TargetReleaseversionInfo /t REG_SZ /d 21H1
     40
     41You should see the “The command completed successfully” message when you enter the commands.
     42
     43}}}