You can kill a Windows Service by using the Task Manager or if you prefer you can do it with a console command.
- Find the Process ID (PID):
sc queryex <service name>
2. Kill the Process by PID:
taskkill /F /PID <Service PID>
You can kill a Windows Service by using the Task Manager or if you prefer you can do it with a console command.
sc queryex <service name>
2. Kill the Process by PID:
taskkill /F /PID <Service PID>