user181813
user181813

Reputation: 1881

Getting started with dump file analysis

I am working with a legacy VB6/COM application which sometimes causes Windows 7 to crash. I have now generated a .dmp file of one of these crashes using the ProcDump tool from Sysinternals. However, I have never worked with dump files before. Which resources would you recommend for getting started with dump file analysis?

Upvotes: 9

Views: 36414

Answers (2)

Tony The Lion
Tony The Lion

Reputation: 63190

There are some books such as "Advanced Windows Debugging" or the books on this guy's blog that can help.

There is also knowing assembler that you will need.

Use WinDbg or any other debugger. The above mentioned book is for WinDbg specifically though.

Upvotes: 3

Related Questions