The service is starting or stopping please try again later wuauserv

What Causes the Windows Update Service to prevent being Stopped?

The causes of this problem are often unknown and this problem often needs to be circumvented rather than resolved. Nonetheless, when Windows Update service stops misbehaving, new updates are installed and they often resolve the problem. However, here are some common causes:

  • Missing administrator privileges may prevent Windows Update Service from stopping and you should use an elevated Command Prompt in order to stop it.
  • Something is wrong with your computer on a more serious note and you should consider an in-place upgrade or a repair installation.

Solution 1: Stopping wuauservProcess

Command Prompt with administrative permissions can be used to circumvent this problem. The command you will use will end the process recognized by its PID and it should be stopped. Note that you will need to use the Services tool to restart the process once you stop it if you wish to use the Windows Update functionality in the future.

  1. Use the Ctrl + Shift + Esc key combination by pressing the keys at the same time to open the Task Manager utility.
  2. Alternatively, you can use the Ctrl + Alt + Del key combination and select Task Manager from the popup blue screen which will appear with several options. You can also search for it in the Start menu.
The service is starting or stopping please try again later wuauserv
Running Task Manager
  1. Click on More details at the bottom left part of the window in order to expand Task Manager. Navigate to the Services tab and right-click somewhere around the names of the columns and check the box next to the PID entry in the context menu.
  2. Locate the Windows Update service by checking the Description column or by looking for the ‘wuauserv’ service under the Name column. Note down its PID number.
The service is starting or stopping please try again later wuauserv
Locating the PID of Windows Update Service
  1. Search for “Command Prompt” either right in the Start menu or by tapping the search button right next to it. Right-click on the first result which appears at the top and select the “Run as administrator” option.

The service is starting or stopping please try again later wuauserv
Running CMD with admin permissions
  1. Users who are using an older version of Windows can use the Windows Logo Key + R key combination in order to bring up the Run dialog box. Type in “cmd” in the box and use the Ctrl + Shift + Enter key combination in order to run Command Prompt as an administrator.
  2. Copy and paste the command shown below and make sure you click the Enter key on your keyboard.
taskkill /f /pid [PID]
  1. Make sure you replace [PID] with the number you noted down regarding Windows Update Service. If the Command Prompt reports that the service was successfully stopped, your problem is resolved!

Windows 10: wuauserv ( windows update service) could not be started. Error in starting wuauserv service

Discus and support wuauserv ( windows update service) could not be started. Error in starting wuauserv service in Windows 10 Installation and Upgrade to solve the problem; I was trying to resolve windows update error 0x80080005 and found a solution which says to stop first the wuauserv service but when i tried to do so in... Discussion in 'Windows 10 Installation and Upgrade' started by RahulKumar97, Sep 7, 2019.

Want to kill stubborn Windows servicethat hangs on stopping or not responding?

see Windows OSHub article:

suppose we have stubborn windows update service, and after the command:

net stop wuauserv

we see the message:
'the service is starting or stopping. please try again later.'

so we want to kill it with a PID...
let's know the PID from service's name:

sc queryex wuauserv

and then use the PID to kill the service:

taskkill /PID <pid> /F

or, we can use sole name to stop the service:

taskkill /F /FI "SERVICES eq wuauserv"

or, we can ommit even the name and use pure status:

taskkill /F /FI "status eq not responding"

additional possibilities with the aim of PowerShell, Resmon or Process Explorer - see Windows OSHub article

Step 1. Find out the Service Name

To do this, go in to services and double click on the service which has stuck. Make a note of the “Service Name”.

Step 2. Find out the PID of the service

Open an elevated command prompt and type in:

sc queryex servicename

(where servicename is the name of the service you obtained from Step 1.)

Make note of the PID

The Windows Update service could not be stopped

If Windows Update Service won’t stop then this post will show you how to stop this WUAUSERV service on Windows 11/10:

  1. Stop Windows Update service using PID
  2. Check Service dependencies.

1] Stop Windows Update service using PID

Every running process or service has a unique ID or PID. You can find it in the Task Manager and then use it to stop the service.

Open the Task Manager and go to the Services tab. Here you should find a service named wuauserv. You need to get the PID of that running service.

The service is starting or stopping please try again later wuauserv

After that, open Command Prompt with administrator privilege and enter this command-

taskkill /f /pid <PID>

Do not forget to replace <PID> with original PID that you copied earlier from the Task Manager – which in our case is 6676.

The service is starting or stopping please try again later wuauserv

You should be greeted with a message like this-

SUCCESS: The process with PID 6676 has been terminated.

This means you have successfully stopped the Windows Update service.

2] Check Service dependencies

The service is starting or stopping please try again later wuauserv

Most of the Windows Services depend on other services. Sometimes those services can cause an issue due to some internal conflict. At such times, you should check the dependencies. In this case, you need to find Dependencies of this Windows Service. If any running service is using the WU service, then you may be required to stop that service first.

How do I force Windows Update Service to stop?

You can use Command Prompt to force the Windows Update service to stop in Windows 11/10. For that, you need to take the help of the Task Manager to find the PID, which is assigned with every running task. After that, you can open elevated Command Prompt and enter taskkill /f /pid <PID> command to stop the service from running on your PC.

Why can I not stop Windows Update service?

You must have administrative privilege to stop the Windows Update service. If your account doesn’t belong to the Administrator group, you might not be able to stop this service on your computer. Therefore, log in to your Administrator account and stop the Windows Update service using Services or Command Prompt. On the other hand, it is recommended to check the service dependencies as well.

Hope this helps!