how to get memory dump after blue screen
Posted
by
user464164
on Stack Overflow
See other posts from Stack Overflow
or by user464164
Published on 2010-12-03T19:23:47Z
Indexed on
2010/12/26
4:54 UTC
Read the original article
Hit count: 234
I'm getting a lovely BSOD on bootup (STOP: 0x0000007E
) from a driver I'm writing, and would like to load up the memory dump for analysis. However, it's not getting dumped anywhere. Everything is setup correctly in the Startup and Recovery settings, but I get no dump file, and nothing in the event log stating a dump has taken place. It looks like a dump is not even occurring...
I know the exact line of code causing it (a call to IoAttachDevice()
), but am not sure why, and would like to view the DbgPrint
output to see where exactly it's failing. Could Windows possibly be crashing before the dumping functionality is set up? If so, how do I get access to the state of the machine when the failure occurs?
UPDATE: Other possibly useful information: I'm running Windows XP through VirtualBox on a Linux host.
© Stack Overflow or respective owner