What you need to disable Windows updates?

Nekonaro

New Member
Good afternoon, can anyone tell me which services or tasks are related to Windows updates? I.e., what does it take to disable Windows updates?

In my search I came across this (Services):
Delivery Optimisation - \DoSvc
Microsoft Store Installtion Service - \InstallService
Update Orchestrator Service - \UsoSvc
Windows Update - \wuauserv
Windows Update Medic Service - \WaaSMedicSvc
Windows Insider Service - \wisvc
Background Intelligent Transfer Service - \BITS
Updateability from CSM - \upfc
Microsoft Update Health Service - \uhssvc
Orchestrator Service actualization - \ossrs

There is also a "MoUSO Core Worker Process" which cancels all changes related to "windows update" (if any)

But I also found a way to disable updates without resorting to all this:
Code:
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"DoNotConnectToWindowsUpdateInternetLocations"=dword:00000001
"DisableWindowsUpdateAccess»=dword:00000001
"WUServer"="localhost"
"WUStatusServer"="localhost"
"UpdateServiceUrlAlternate"="localhost"

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
"UseWUServer"=dword:00000001
This method consists of specifying a local non-existent WSUS update server to which the update service will fail to connect. (At least this works on w10 21h1)
 
Last edited:
Thanks for the feedback.

As far as I know, the existing option in NTLite - load image - Settings - Windows Update, set to Disable should be it on Win11, might also work on Win10.
 
Thanks for the feedback.

As far as I know, the existing option in NTLite - load image - Settings - Windows Update, set to Disable should be it on Win11, might also work on Win10.
Tell me if there is a way to prevent the update service from starting itself, for example, delete the scheduler tasks.
 
Tell me if there is a way to prevent the update service from starting itself, for example, delete the scheduler tasks.
That would block too many things if done before install and Windows activation.
You can try, make sure to disable/remove the Windows Update Medic service as well.
Potentially skip OOBE in Unattended settings for it to not trigger post-setup forced Windows Update.

Btw also can remove Windows Update component (separate from WU service) and use NTLite to install updates on C:\Windows.
Keep Servicing stack compatibility enabled, and Windows Update service not removed.
That way even if WU service gets enabled somehow, it should not go far without all of its underlying services.
 
Thanks for the feedback.

As far as I know, the existing option in NTLite - load image - Settings - Windows Update, set to Disable should be it on Win11, might also work on Win10.
You mean to disable the ENTIRE Section of windows updates? but what if you want just to let security updates install and only deactivate feature-updates, which should be the way , no??
 
You mean to disable the ENTIRE Section of windows updates? but what if you want just to let security updates install, which should be the way , no??
You can actually install windows updates through Ntlite without needing windows updates working.

I removed windows update all together and only go through Ntlite for the installs. Allows me to control which ones I want.
 
Unbenannt.png
And then just via "Update" section at the beginning, installing the online updates directly into the .iso?
 
What counts as a "security update"? Are talking about refreshing Defender's platform and definitions, or Security Update as an outdated reference to the Monthly Update cycle?
 
You can actually install windows updates through Ntlite without needing windows updates working.

I removed windows update all together and only go through Ntlite for the installs. Allows me to control which ones I want.
But u will still need to let the Windows Update section toggled on inside "Components -> Remoting and Privacy -> Windows Updates" since u wont get the security updates which is not so good i guess.
 
I mean windows defender defs are important (if u use defender, not sure tho if it counts when using custom anti-virus system) but also they release monthly security patches i think.
 
W10/11 no longer has defined Monthly Security Updates. The monthly CU is always a quality & security update, and the Monthly Preview doesn't include any security changes. This is a clean servicing model to avoid the Patch Hell of Windows 7, where users could carelessly mix & match quality and security-only updates.

Every month, the CU (or any Out-of-Band Update) is a complete replacement for the previous month's update.

The only exceptions are:
- Security-Only Updates which address Intel or AMD CPU vulnerabilities at a microcode level
- Feature Enhancement Updates, which don't really include new software but switch on hidden code that's been inserted into previous CU's.
- .NET Framework Updates (which are quality & security)
- Defender Platform updates
 
W10/11 no longer has defined Monthly Security Updates. The monthly CU is always a quality & security update, and the Monthly Preview doesn't include any security changes. This is a clean servicing model to avoid the Patch Hell of Windows 7, where users could carelessly mix & match quality and security-only updates.

Every month, the CU (or any Out-of-Band Update) is a complete replacement for the previous month's update.

The only exceptions are:
- Security-Only Updates which address Intel or AMD CPU vulnerabilities at a microcode level
- Feature Enhancement Updates, which don't really include new software but switch on hidden code that's been inserted into previous CU's.
- .NET Framework Updates (which are quality & security)
- Defender Platform updates
hmm, what kind of settings change I need to do in order to get ONLY these here:
- Security-Only Updates which address Intel or AMD CPU vulnerabilities at a microcode level
- .NET Framework Updates (which are quality & security)
- Defender Platform updates
 
The Windows Update pausing guide that is linked above will get you as close to your goal as possible. Pausing updates on W10/W11 doesn't disable it entirely, but turns off the primary automated features, and then it continues to run a limited number of components that check for and install things it deems critical, such as certificates and Defender patches.

Using all the tweaks in that guide will:
- Pause updates out of the box on a clean install
- Allow updates to pause forever, rather than the 35 day limit
- Prevent drivers from automatically downloading or installing
- Prevent Microsoft Store apps from automatically updating

Microcode updates aren't going to be affected by anything unless you're deleting the microcode files, and you will know if you are. I don't know how NET updates are handled for sure, since I don't use them, but I'll bet pausing Windows Update will stop those patches from downloading and installing, so if you want those updates they'll need to be done manually.
 
The Windows Update pausing guide that is linked above will get you as close to your goal as possible. Pausing updates on W10/W11 doesn't disable it entirely, but turns off the primary automated features, and then it continues to run a limited number of components that check for and install things it deems critical, such as certificates and Defender patches.

Using all the tweaks in that guide will:
- Pause updates out of the box on a clean install
- Allow updates to pause forever, rather than the 35 day limit
- Prevent drivers from automatically downloading or installing
- Prevent Microsoft Store apps from automatically updating

Microcode updates aren't going to be affected by anything unless you're deleting the microcode files, and you will know if you are. I don't know how NET updates are handled for sure, since I don't use them, but I'll bet pausing Windows Update will stop those patches from downloading and installing, so if you want those updates they'll need to be done manually.
Big thank you bro! thanks alot for ur work and effort and be blessed!
 
Back
Top