Command is use to kill processes
Answers
Answered by
18
Answer:
Kill a process using Taskkill
(1)Open the command prompt as the current user or as Administrator.
(2)Type tasklist to see the list of running processes and their PIDs. ...
(3)To kill a process by its PID, type the command: taskkill /F /PID pid_number.
(4)To kill a process by its name, type the command taskkill /IM "process name" /F.
Explanation:
pls mark me as brainliest ❣❣
Answered by
3
Use the ps command to get the process id (PID) of the process we want to terminate. Issue a kill command for that PID. If the process refuses to terminate (i.e., it is ignoring the signal), send increasingly harsh signals until it does terminate.
Similar questions