How to delete a windows service (Windows Server 2003/2008/2012)

If you need to delete a Windows Service, you just have to open a new command prompt (run as administrator) and run the following command:

Command: sc delete NameOfServiceĀ 

2014-10-13_21-40-13

2 thoughts on “How to delete a windows service (Windows Server 2003/2008/2012)

  1. Peter C.

    Hello,

    Will this do same as Task Manager, I mean if we want to close some process using your command “sc delete NameOfService”, is it just going to close it or delete that program?

    Thanks in advance,
    Peter

    1. admin Post author

      Hello Peter,

      This command will delete the windows service, not only stop it.

      If you want to stop it: sc stop NameOfService

      Aurel.

Comments are closed.