How can I abort a long operation in WinDbg? How can I abort a long operation in WinDbg? windows windows

How can I abort a long operation in WinDbg?


I don't have the tool now, but as far as I remember it should be Ctrl+Break.


Sometimes Ctrl+Break doesnt work. At that point you may use Debug menu -> Break.

Thanks


Ctrl+Break 

will forcibly Debug break all but if for instance you entered some windbg command that takes a long time and you want to kill that then you should enter

Ctrl+c

This will kill the current running command.