Created
August 10, 2017 19:58
-
-
Save wholroyd/a42b2deee33fe657e39e7866b96f75e4 to your computer and use it in GitHub Desktop.
Debugging 32bit dump from 64bit machine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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