How do you prevent wuauserv (Windows Update Service) from restarting?

80,097

Solution 1

Stop it and disable it.

sc stop wuauserv
sc config wuauserv start= disabled

You will need to open command prompt as administrator or you will get "access denied." The space after the start= is mandatory, sc will complain if the space is omitted. It may be worth noting that any services, or programs, which depend upon a disabled service will themselves fail to start, or experience anomalous behavior.

Check the System event log for event ID 7036 from Service Control Manager for wuauserv entering running state. It's likely another service has wuauserv marked as a dependency and is starting it as needed.

Solution 2

Windows 8 have a Scheduled Task:

Task Scheduler Library
:---- Microsoft
      :---- Windows
            :---- Windows Update

There is a task: "Scheduled Start". Just right-click on it and choose Disable.

Share:
80,097

Related videos on Youtube

Jon
Author by

Jon

Updated on September 18, 2022

Comments

  • Jon
    Jon almost 2 years

    Regarding:

    net stop "windows update"
    

    this works for a while but then the service starts again. What is restarting this service and how do I prevent it from doing so?

  • Jon
    Jon almost 13 years
    I actually only want to disable it until the next reboot. But I guess I can run "sc config wuauserv start= enabled" on startup. The only issue is the annoying UAC prompt that would happen every startup. No luck figuring out who is restarting it; no other service started at the same time in the event log.
  • William
    William over 4 years
    doing this will permanently break the auto update service, not just disable it