How to Safely Remove Windows Service on Windows 11, 10, 8, 7

Windows does not provide a GUI for creating or deleting services. To delete a service on Windows you can do it through the Windows Registry or use the Command Prompt.

The following tutorial from Bardimin you can apply to all versions of Windows. To remove the service you can do as follows.

1. Check the name of the service that you want to delete

What you need to pay attention to is the service name is not always the same as the name that appears. To check, open Windows Services Manager by:

  1. Press the “ Win + R key.
  2. Type ” services.msc “.
  3. Click the “ OK ” button
open services

After the Windows Services Manager window opens then you find the service you want to remove.

  1. Select the service that you want to delete.
  2. Right-click and select “Properties”.
  3. See Service names.
service name

2. Delete the service via Command Prompt (CMD)

To remove a service via Command Prompt (CMD), you must run CMD as Administrator. After the CMD window opens, type the following code

sc delete <ServiceName>

For example, you delete the update service from Adobe Acrobat named “ AdobeARMservice ” as in the previous step.

sc delete AdobeARMservice
sc delete

3. Delete the service via Windows Registry

You can also delete the service through the windows registry. The trick is first to open the Windows Registry Editor.

  1. Press the “ Win + R ” key.
  2. Type ” regedit “.
  3. Click the “ OK ” button

After the Windows Registry Editor window opens, then do the following:

  1. Navigate to “ HKEY_LOCAL_MACHINE\SYSTEM\ CurrentControlSet \Services ”.
  2. Then find a key with a name like the name of the service you want to delete in the previous example. Look for the key with the name ” AdobeARMservice “, if you want to remove the service from AdobeARMservice.
  3. Next, right-click and select delete to delete.
  4. Restart your PC.
delete service via registry

“Delete services that are no longer needed. Don’t delete a service if you don’t understand it. Errors in deleting services can cause Windows or applications not to run normally

Latest Articles