Command to delete a windows service

Sometime you may need a batch script command to delete any service from the windows service. Here is the following command that you can use either in batch script, or from the command line, the cmd.exe;


sc delete service_name


here service_name is the name of your windows service.

Comments