Kill Processes From Command Prompt
Kill Processes From Command Prompt
I'm sure you are familiar with the traditional way to kill or end a process in Windows using Task Manager. This method is e ective but not
nearly as fun as killing a process in Command Prompt. Additionally, killing processes in Command Prompt provides much more control and
the ability to end multiple processes at once.
All of this is possible with the TaskKill command. First, let's cover the basics. You can kill a process by the process ID (PID) or by image name
(EXE lename).
Open up an Administrative level Command Prompt and run tasklist to see all of the running processes:
C:\>tasklist
In the example above you can see the image name and the PID for each process. If you want to kill the refox process run:
or
The /f ag is kills the process forcefully. Failure to use the /F ag will result in nothing happening in some cases. One example is whenever I
want to kill the explorer.exe process I have to use the /F ag or else the process just does not terminate.
If you have multiple instances of an image open such as multiple refox.exe processes, running the taskkill /IM refox.exe command will kill all
instances. When you specify the PID only the speci c instane of refox will be terminated.
The real power of taskkill are the ltering options that allow you to use the following variables and operators.
Variables:
STATUS
IMAGENAME
PID
SESSION
CPUTIME
MEMUSAGE
USERNAME
MODULES
SERVICES
WINDOWTITLE
Operators:
eq (equals)
ne (not equal)
gt (greater than)
lt (less than)
You can use the variables and operators with the /FI ltering ag. For example, let's say you want to end all processes that have a window title
that starts with "Internet":
How about killing all processes running under the Steve account:
It is also possible to kill a process running on a remote computer with taskkill. Just run the following to kill notepad.exe on a remote computer
called SteveDesktop:
To learn more about taskkill run it with the /? command just like any other Windows command.