1

I'd like to run a command each time my breakpoint in managed code is hit, I know how to do it in three commands. Can it be done in one?

The way to do it in three commands is

!bpmd system.web.dll xxxx; bl; bp yyyy "zzz; g;"

Where yyyy is the address of xxxx which is an output of 'bl'.

rjdevereux
  • 1,842
  • 2
  • 21
  • 35

1 Answers1

2

If you're trying to set command when bp hits then you could probably use !mbp or !mbm from sosex instead of using !bpmd

Naveen
  • 4,092
  • 29
  • 31