Is it possible to use windbg commands like !locks and .loadby sos mscorwks from the Visual Studio command window (in a debug session)? I’ve noticed I can use eg k to print a stack trace, so I was wondering if there is some way to get access to the other commands.
Is it possible to use windbg commands like !locks and .loadby sos mscorwks from
Share
Yes you can do this.
!load sos!EEHeap,!DumpHeapThere are some conditions. You need to enable unmanaged code debugging in your project properties. Normally in 64 bit version studio doesn’t support this.
Have fun.