logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Taskkill - Terminate Processes by ID or Name | Online Free DevTools by Hexmos

Terminate processes easily with Taskkill. Forcefully end unresponsive applications and manage processes by name or ID on Windows. Free online tool, no registration required.

taskkill

Terminate a process by its process ID or name. More information: https://learn.microsoft.com/windows-server/administration/windows-commands/taskkill.

  • Terminate a process by its ID:

taskkill /pid {{process_id}}

  • Terminate a process by its name:

taskkill /im {{process_name}}

  • Forcefully terminate a specified process:

taskkill /pid {{process_id}} /f

  • Terminate a process and its child processes:

taskkill /im {{process_name}} /t

  • Terminate a process on a remote machine:

taskkill /pid {{process_id}} /s {{remote_name}}

  • Display information about the usage of the command:

taskkill /?

See Also