Tasklist

Description

Displays a list of currently running processes on the local computer or on a remote computer. Tasklist replaces the tlist tool.

Ends one or more tasks or processes. Processes can be ended by process ID or image name. You can use the tasklist command command to determine the process ID (PID) for the process to be ended.

Kill a process

cmd>taskkill /F /IM your_process.exe

Kill via PID

cmd>taskkill /PID 354 /F

Kill multi PID

cmd>taskkill /PID 266 234 222 /F

Source : microsoft-tasklist -- microsoft-taskkill

Date : 2020.10.13