Forcibly ending the specified Windows Vista process

  
In general, when we need to end a process, we tend to choose the right-click taskbar - Task Manager - Right-click a process - End the way. But in fact, we can also use the command to make more options for this operation.

First,

* Start Menu - Programs - Accessories - Command Prompt

* Right click - Run as administrator

* Enter tasklist, appear The following list:

Image Name PID Session Name Mem Usage

============================= ============================================================================================================== BR> regedit.exe 24244 Console 9,768 K

cmd.exe 18664 Console 2,380 K

conhost.exe 2528 Console 7,852 K

notepad.exe 17364 Console 7,892 K

notepad.exe 24696 Console 22,028 K

notepad.exe 25304 Console 5,852 K

explorer.exe 2864 Console 72,232 K

Next, if we want To end all the processes of a program, for example, notepad.exe, you can enter

Taskkill /IM notepad.exe /F

If you only want to end a process of a program, you can Enter the PID of the process Implementation, such as:

Taskkill /PID 17364 /F

where F represents the force the end.
Copyright © Windows knowledge All Rights Reserved