I am trying to use windbg to research a hang dump file created on an x64 machine for our x86 process. This is a 4.0 x86 application, so just to get an unmanaged stack, I had to do the following:
.loadby sos clr
.load wow64exts
!sw
kL
However, everytime I try to get the managed stack via !clrstack
I get the error in the title. What am I missing?