How to Kill a Service on a Windows Maschine?

You can kill a Windows Service by using the Task Manager or if you prefer you can do it with a console command.

  1. Find the Process ID (PID):
sc queryex <service name>

2. Kill the Process by PID:

taskkill /F /PID <Service PID>

Kommentar verfassen

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert