up vote 0 down vote favorite
share [g+] share [fb]

When in the command prompt: I am looking for a Windows equivalent of CTRL+C in unix and mac to force exit a program in a command prompt. Sometimes my program would just infinitaly wait for... something and I would like to close it without hitting CTRL+ALT+DELETE and force quitting the windows command prompt. Thanks!

link|improve this question
feedback

migrated from stackoverflow.com Oct 20 '09 at 17:41

This question came from our site for professional and enthusiast programmers.

3 Answers

Actually, it's Ctrl+C on Windows too. Ctrl+Break usually works as well, but with some commands it has some interesting differing semantics compared to Ctrl+C (see ping -t for example).

link|improve this answer
feedback

Normally, that would be CTRL-BREAK (the PAUSE/BREAK key on a 101-key keyboard) but I think this can be disabled.

Give it a shot.

But this isn't really a programming question so I'm voting to shift it to superuser.

link|improve this answer
Do you have any idea if there's an equiv. for a macbook keyboard? thanks! – Anonymous Oct 19 '09 at 4:12
feedback

Ctrl + C will stop a program running from the command prompt, similar to other operating systems.

To force kill a process from the command prompt, use the following command:

taskkill /F /IM process.exe

/F will force termination, /IM means you're going to provide the executable (image) name, and process.exe is the process to end.

link|improve this answer
Make sure to use "process name.exe" if it has a space! – Phoshi Oct 20 '09 at 18:16
feedback

Your Answer

 
or
required, but never shown