Stop a service
To stop a service from command line, run:
net stop "Service name"
REM -- OR
sc stop "Service name"
Kill a service
Find the process ID(PID) of your service.
sc queryex "Service name"
Kill the service using PID number.
taskkill /pid [pid number] /f