Skip to content

Instantly share code, notes, and snippets.

@wholroyd
Created August 10, 2017 19:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wholroyd/a42b2deee33fe657e39e7866b96f75e4 to your computer and use it in GitHub Desktop.
Save wholroyd/a42b2deee33fe657e39e7866b96f75e4 to your computer and use it in GitHub Desktop.
Debugging 32bit dump from 64bit machine
// Install the Windows SDK first for windbg
// Install the soswow64 module from https://github.com/poizan42/soswow64/releases
// Additonal hints at https://theartofdev.com/windbg-cheat-sheet/
// Open the 64bit dump with the 32bit windbg
// Run these commands...
.loadby sos clr
.load wow64exts
.load c:\debugger\soswow64.dll
!sw
!logopen c:\debugger\session.log
~*e!clrstack
!logclose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment