Quick Links

Key Takeaways

To delete a service on Windows, identify the service in the Services utility. Then open up PowerShell or Command Prompt as administrator and run "sc delete ServiceName" to delete the service.

If you are a fan of tweaking your system and disabling services, you might find that over time your Windows Services list becomes large and unwieldy. It's easy enough to remove a Windows service using the Command Prompt or PowerShell on Windows 10 or Windows 11 but be careful. You could break something important.

Should You Delete a Windows Service?

No, you should not delete a Windows service---not unless you know exactly what you're doing and you have a very good reason. When you delete a service, it's gone---and services can be a real pain to get back. We really don't recommend deleting services at all, unless you're dealing with a very particular situation like cleaning up after a program uninstalled improperly or rooting out a malware infestation.

If you are going to delete a service, always try to find the most recent details about what that service does before you delete it. The exact purpose of any given service can change between versions of Windows, and even between major releases of the same version of the operating system. Take CTFMon and the associated service for example. On Windows 10 (and earlier) you could disable it and only experience minor inconvenience. However, on Windows 11, removing it would probably render your computer unusable.

Typically, just disabling a service is plenty, especially if all you're really trying to do is tweak your system performance (which probably won't work as well as you might hope, anyway).  That said, if you do need to delete a service, you just need to find the actual name of that service and then issue a single command from the Command Prompt.

The techniques we're covering here should work in pretty much any version of Windows---from XP all the way up through Windows 11.

Related: Should You Disable Windows Services to Speed Up Your PC?

Find the Name of the Service You Want to Delete

The first thing you'll need to do is identify the full name of the service you want to delete. In our example, we're using the RetailDemo service---a curious service that activates a hidden command that sets Windows into a retail service mode (and pretty much erases all personal docs and resets your PC to it's default state), so it's actually a good example of a service you might not want around.

Click Start, type "services" into the search box, and then click the "Services" result.

Launch the "Services" utility from the Start Menu.

In the "Services" window, scroll down and find the service you're after. Right-click the service and choose the "Properties" option.

Right-click the service you want delete, then click "Properties."

In the service's properties window, copy (or write down) the text to the right of the "Service name" entry.

Note the value in the "Service Name" field.

When you have the service's name, you can go ahead and close the properties window and the "Services" window.

Delete the Service

Once you have the name of the service, you need to open up PowerShell or Command Prompt with administrative privileges to delete the service.

If you're using Windows 11, you can just launch Windows Terminal as admin instead.

Click the Start button, then search for "PowerShell" or "Command Prompt." Right-click either shortcut and select "Run as Administrator," or click the "Run as Administrator" option at the right side of the start menu.

To delete the service, use the

        sc
    

command with the following syntax in Command Prompt or PowerShell:

sc delete ServiceName

So, to delete the "RetailDemo" service we're using in our example, we'd type the following text, and then hit Enter:

sc delete RetailDemo

PowerShell when a service has successfully been deleted.

If the service you're deleting has any spaces in the name, you'll have to enclose the name in quotes when you type the command.

Now, if you use the F5 key to refresh your Services list, you'll see that the service is gone.

Services Window with the example service removed.

Deleting a service in Windows is pretty easy, but we'd again like to caution you to think long and hard before deleting a service, because it's very difficult to get them back once they're gone.