How to stop Windows 11 update service from restarting after 1 minute

Debojit Acharjee 455 Reputation points
2025-02-18T11:04:30.5933333+00:00

I want to disable the Windows update service on the Windows service control manager but the option "restart service after 1 minutes" is grayed out and can't be changed. This will cause the service to restart after 1 minute.

So, how do I change that?

WindowsUpdateService

Windows
Windows
A family of Microsoft operating systems that run across personal computers, tablets, laptops, phones, internet of things devices, self-contained mixed reality headsets, large collaboration screens, and other devices.
5,816 questions
Service Manager
Service Manager
A family of System Center products for managing incidents and problems.
246 questions
Windows Hardware Performance
Windows Hardware Performance
Windows: A family of Microsoft operating systems that run across personal computers, tablets, laptops, phones, internet of things devices, self-contained mixed reality headsets, large collaboration screens, and other devices.Hardware Performance: Delivering / providing hardware or hardware systems or adjusting / adapting hardware or hardware systems.
1,668 questions
Windows 11
Windows 11
A Microsoft operating system designed for productivity, creativity, and ease of use.
10,795 questions
Microsoft Configuration Manager Updates
Microsoft Configuration Manager Updates
Microsoft Configuration Manager: An integrated solution for for managing large groups of personal computers and servers.Updates: Broadly released fixes addressing specific issue(s) or related bug(s). Updates may also include new or modified features (i.e. changing default behavior).
1,107 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. AlexZhu-MSFT 6,501 Reputation points Microsoft Vendor
    2025-02-19T01:29:48.4433333+00:00

    Hi

    I noticed that the startup type of this service is set to "Disabled", and the service is stopped. If the service is not running, it's meaningless to check the settings in the Recovery tab.

    If the service is enabled, we can change the settings in the Recovery tab, when all the recover actions are set to "Take no action", the "Restart service after (x) minutes" is grayed out since we do not want to restart the service. If any of the 3 above is set to "Restart the Service", the option becomes available.

    In a word, for your screenshot, since the service is disabled, it will not be restarted.

    Regards,

    Alex

    0 comments No comments

  2. Hania Lian - MSFT 21,201 Reputation points Microsoft Vendor
    2025-02-20T15:40:56.7466667+00:00

    Hello,

    The main purpose is to disable the machine update automatically, right?

    Try to open administrator command line then run the following command line:

    reg add HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v WUServer /t REG_SZ /d .. /f

    reg add HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v WUStatusServer /t REG_SZ /d .. /f

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

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

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

    If we want to restore the update again, remove the related registry keys.

    Best Regards,

    Hania Lian

    ============================================

    If the Answer is helpful, please click "Accept Answer" and upvote it.

    0 comments No comments

Your answer

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