Episode

.exr

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.

The structure may be in the addess space of the process (that is, raised by the code itself), or stored in the metadata of the dump file (as past to MiniDumpWriteDump).

To view a structure in the address space of the process, use .exr <address>

To view the structure saved to the dump, use .exr -1

In general, start the debugging of a dump file by executing .exr -1, .ecxr and k. And then use !analyze -v.

Additional Resources: