I have created a “minidump” file using the Visual Studio 2008 C++ debugger (Debug menu -> Save dump as…). I am running on Windows 7, 64-bit.
What program can I run to view the contents of the dump file in a meaningful way?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
What information are you trying to get out of it?
WinDbg is my tool of choice.
It’s part of the Windows SDK. You can get download links from here: http://www.windbg.org/
Note that there are three plaforms for it – x86, x64, and IA64. You want the version based on what the application is designed for, not your architecture. So if it is a 32-bit process, either by running on x86 Windows or WOW64 on x64 Windows, you want the x86 version. Only use x64 if the dmp came from a 64-bit process.