bitbonk
bitbonk

Reputation: 49619

show details about first chance exceptions without breaking

Using WindDbg I would like to print details about first chance CLR exceptions (!ClrStack, !PrintException) when they occur but keep the debugee running normally. How can I set this up?

This was my best bet, but it doesn't do anything:

sx- -c "!CLRStack"
sxe CLR "!CLRStack;g"

Upvotes: 3

Views: 1835

Answers (1)

Russell Troywest
Russell Troywest

Reputation: 8776

Try this:

sxe -c "!pe;!clrstack;gc" clr

Upvotes: 4

Related Questions