how to turn off windows update completely

GR 20 Reputation points
2026-06-12T14:02:42.9266667+00:00

with no possibility of automatically turning back on ever again regardless of circumstances

Windows for home | Windows 11 | Windows update
0 comments No comments

Answer accepted by question author
Ivan B 120.7K Reputation points Independent Advisor
2026-06-12T14:45:43.2266667+00:00

Hi,

In this case, you can open the command prompt to disable Windows Update:

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v NoAutoUpdate /t REG_DWORD /d 1 /f

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v AUOptions /t REG_DWORD /d 2 /f

Restart your PC.

You can create a scheduled task to always run this task to prevent Windows Update from activating.

Remember, it is not recommended to disable Windows Update because it updates security, build, and Windows drivers to keep the system and security up-to-date.

Thanks

Was this answer helpful?

9 people found this answer helpful.

2 additional answers

Sort by: Most helpful
  1. AI answer

    2026-06-12T14:03:00.2633333+00:00

    For Windows 11, Windows Update can be disabled via Group Policy or registry so that it does not scan, download, or install updates, and users cannot manually trigger updates from Settings.

    Using Group Policy (recommended where available):

    1. Open the Group Policy Editor (gpedit.msc).
    2. To completely turn off Windows Update features, configure the policies described for Windows IoT Enterprise (they apply the same Windows Update engine policies):
      • Go to Computer Configuration > Administrative Templates > Windows Components > Windows Update > Manage end user experience.
      • Enable Remove access to use all Windows update features. This removes the "Check for updates" option and prevents manual update checks from Settings.
    3. In addition, configure Automatic Updates and related policies (as per your servicing strategy) so that scans, downloads, and installations are disabled. The documentation notes that when the servicing strategy is to disable all Windows Update features, this can be done via Group Policy or registry.

    Using registry (equivalent effect): The Windows Update engine can be disabled by policy-backed registry keys. The documented method to completely turn off Windows Update is:

    1. Under HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\WindowsUpdate, set:
      • DoNotConnectToWindowsUpdateInternetLocations (REG_DWORD) = 1
      • DisableWindowsUpdateAccess (REG_DWORD) = 1
      • WUServer (REG_SZ) = " " (single space)
      • WUStatusServer (REG_SZ) = " " (single space)
      • UpdateServiceUrlAlternate (REG_SZ) = " " (single space)
    2. Under HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\WindowsUpdate\AU, set:
      • UseWUServer (REG_DWORD) = 1

    These settings together:

    • Prevent connections to Windows Update Internet locations.
    • Disable access to Windows Update features.
    • Point the Windows Update client at blank (nonexistent) update servers.

    Additional lock-down of the user experience:

    1. Open gpedit.msc and navigate to:
      • Windows 10: Computer Configuration\Administrative Templates\Windows Components\Windows Update\Remove access to use all Windows update features.
      • Windows 11: Computer Configuration\Administrative Templates\Windows Components\Windows Update\Manage end user experience\Remove access to use all Windows update features.
    2. Set this policy to Enabled. This prevents users from manually checking for updates in Settings while background scans/downloads/installations are already disabled by the other policies.

    Important note from the documentation: disabling Windows Update capabilities leaves the device in a vulnerable state unless updates are provided by another mechanism. A servicing strategy must be in place if updates are turned off.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

    1 person found this answer helpful.
  2. Bulldog 3,865 Reputation points
    2026-06-12T20:38:46.65+00:00

    You can stop updates temporarily, not permanently.

    Some people think that by breaking the operating system in some way, they have stopped updates. But then they have to deal with their broken operating systems' problems.

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.