How to view .dmp file on Windows 7?

冷暖自知 提交于 2019-12-24 05:01:52

问题


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?


回答1:


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.




回答2:


In my opinion WinDbg is the best.

It is supplied as part of Microsoft Windows SDK.



来源:https://stackoverflow.com/questions/6318447/how-to-view-dmp-file-on-windows-7

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!