Use Windbg find argumet passed to COM + method

Created a debug diagnostic dump file for a COM + application. When analyzed, they look like blocking flows on the line OLE32!SwitchSTA

. My symbol path points to msdl.microsoft.com/download/symbols. Is there a way to find out what arguments were passed to this method?

In general, how do I use Windbg to find the value of an input argument to call a method?

0


a source to share


1 answer


You can just call

kP

      



and it dumps the call stacks with parameters

0


a source







All Articles