Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Occasionally a program on a Windows machine goes crazy and just hangs. So I'll call up the task manager and hit the "End Process" button for it. However, this doesn't always work; if I try it enough times then it'll usually die eventually, but I'd really like to be able to just kill it immediately. On Linux I could just kill -9 to guarantee that a process will die.

Is there some program or command that comes with Windows that will always kill a process? A free third-party app would be fine, although I'd prefer to be able to do this on machines I sit down at for the first time.

share|improve this question

11 Answers

up vote 45 down vote accepted

"End Process" on the Processes-Tab calls TerminateProcess which is the most ultimate way windows knows to kill a process.

If it doesn't go away, it's currently locked waiting on some kernel resource (probably a buggy driver) and there is nothing (short of a reboot) you could do to make the process go away.

Have a look at this blog-entry from wayback when: http://blogs.technet.com/markrussinovich/archive/2005/08/17/unkillable-processes.aspx

Unix based systems like Linux also have that problem where processes could survive a kill -9 if they are in what's known as "Uninterruptible sleep" (shown by top and ps as state D) at which point the processes sleep so well that they can't process incoming signals (which is what kill does - sending signals).

Normally, Uninterruptible sleep should not last long, but as under windows, broken drivers or broken userpace programs (vfork without exec) can end up sleeping in D forever.

share|improve this answer
taskkill /im myprocess.exe /f

The "/f" is for "force". If you know the PID, then you can specify that, as in:

taskkill /pid 1234 /f

Lots of other options are possible, just type taskkill /? for all of them. The "/t" option kills a process and any child processes; that may be useful to you.

share|improve this answer
4  
Just a note. This is particularly useful if you are writing scripts for server management. kill.exe (from the NT Res kit) will cause a program to exit, but if you have a crash handler installed (particularly windbg), it can cause issues as the OS will see the killed process as having crashed, and attempt to debug it. Taskkill will not result in this issue. – Aaron Oct 2 '09 at 14:43
1  
Doesn't work for me. VirtualBox.exe is still running. – endolith Jul 11 '12 at 17:17
@endolith - Are you running this statement: "taskkill /im virtualbox.exe /f"? Do you get any error message from taskkill after trying to kill virtualbox.exe? Are you an admin on your local machine? – JosephStyons Jul 11 '12 at 19:59
1  
@lzprgmr - taskkill and "end task" probably both call the same underlying windows function "TerminateProcess" msdn.microsoft.com/en-us/library/windows/desktop/… – JosephStyons Oct 17 '12 at 14:51
1  
THis is no more effective then "end process" from task manager. – Eddie Apr 7 at 12:58
show 7 more comments

Get process explorer from sysinternals (now Microsoft)

http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx

share|improve this answer

One trick that works well is to attach a debugger and then quit the debugger.

On XP or Windows 2003 you can do this using ntsd that ships out of the box:

ntsd -pn myapp.exe

ntsd will open up a new window. Just type 'q' in the window to quit the debugger and take out the process.

I've known this to work even when task manager doesn't seem able to kill a process.

Unfortunately ntsd was removed from Vista and you have to install the (free) debbugging tools for windows to get a suitable debugger.

share|improve this answer
Thank you SO MUCH for this. Add "-c q" (w/o quotes) to autoquit, which makes it ideal process killer. – M. Joanis May 10 '12 at 21:43

setup an AT command to run task manager or process explorer as SYSTEM.

AT 12:34 /interactive "C:/procexp.exe"

If process explorer was in your root C drive then this would open it as SYSTEM and you could kill any process without getting any access denied errors. Set this for like a minute in the future, then it will pop up for you.

share|improve this answer

Another vote for Process Explorer or pskill from SysInternals, which Microsoft eventually bought up:

http://technet.microsoft.com/en-us/sysinternals/

I rarely touch Windows, but when I need to, the SysInternals suite is one of the first tools I turn to.

share|improve this answer
This doesn't work for me. VirtualBox.exe I still running. – endolith Jul 11 '12 at 17:22

On Windows XP, the taskkill command is available to do this.

taskkill /IM notepad.exe
taskkill /IM notepad*

see taskkill /? for more details.

share|improve this answer

under the command prompt check out "taskkill.exe"

For example, if you want to kill all excel.exe processes, you can run:

taskkill /im excel.exe
share|improve this answer

Kill.exe from the resource kit. I don't remember which version of Windows this comes in in the kit,

share|improve this answer

When ntsd access is denied, try:

ZeroWave was designed to be a simple tool that will provide a multilevel termination of any kind of process.

ZeroWave is also a easy-to-use program due to its simple installation and its very friendly graphical interface.

ZeroWave has three termination modes and with the "INSANE" mode can terminate any kind of process that can run on Windows.

It seems that ZeroWave can't kill avp.exe

share|improve this answer

For windows u can use taskkill /f /fhj.exe /t in most cases this won,t work i use taskkill /f /fi "status eq running" then i restart the explorer by just explorer.exe BUT IBPROCMAN is a task manager appliation available free and much better than WIn task MGr

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.