How to kill a process using cmd

Configurare noua (How To)

Situatie

Some processes are running as Administrator (elevated). In order to kill them, you need to open an elevated command prompt instance.

Solutie

Pasi de urmat

Open the command prompt as the current user or as Administrator.
Type tasklist to see the list of running processes and their PIDs. Since the list might be very long, you can use a pipe character with the more command.

tasklist | more

To kill a process by its PID, type the command:

taskkill /F /PID pid_number

Tip solutie

Permanent

Voteaza

(6 din 12 persoane apreciaza acest articol)

Despre Autor

Leave A Comment?