2

I have a data cap and was trying to disable auto-updates on my laptop to use less data. I went into Services from the control panel and set the Startup Type of Windows Update to Disabled by right-clicking it, clicking "Properties", and then choosing Disabled.

Screenshot

Are all Windows updates completely disabled, or am I missing something? I am using the Windows 10 home edition.

Ben N
  • 42,308
user71416
  • 183

1 Answers1

2

Let's see what the Windows Update service's description has to say about this:

If this service is disabled, users of this computer will not be able to use Windows Update or its automatic updating feature, and programs will not be able to use the Windows Update Agent (WUA) API.

Since you've disabled the service responsible for seeking updates, Windows will no longer be able to update itself. That's a Bad ThingTM, because getting security updates is important for the integrity of your system. Optimally, you would change the service state back to Manual and restore the triggers with sc triggerinfo, but it's probably easier to just make it Automatic if you've blown away the trigger settings.

Note that while the Windows Update service is responsible for getting the updates, Windows Modules Installer is responsible for installing them. You shouldn't disable Windows Modules Installer because that would break even manual installation of .msu update packages.

If network usage is a problem, you should set up a metered connection. If that's not what you're looking for, you can limit the bandwidth used by the Background Intelligent Transfer Service even on the Home edition.

Ben N
  • 42,308