Crash dump analysis with windbg
Contents
Introduce basic steps for using windbg.
Steps of crash dump analysis with windbg
.exr -1
The .exr command displays the contents of an exception record (a EXCEPTION_RECORD structure).
The EXCEPTION_RECORD structure contains the Instruction Address (the function raising the exception), the Exception Code, and (max 15) Exception Parameters.
0x80000003 is break point exception.
.lastevent
displays the most recent exception or event that occurred.
!analyze -v
.symopt+ 0x40
force load symbols
.reload -f -i <module_name>
force load symbol names for specified module.
Author tonghao
LastMod 2020-01-13