views:

55

answers:

2

Are there any tools that would help us read the contents in a Memory Dump files that is created when there is a BSoD?

+2  A: 

Debugging tools for Windows has a couple of useful debuggers for that.

If you're lucky all you need to do is load the dump file and type !analyze. If that doesn't do the trick, you have to examine the dump to find the reason for the crash.

Brian Rasmussen
A: 

WinDBG - as the man says, in Debugging Tools for Windows.

WinDBG is difficult to use. Steep and long learning curve. It's not like Visual Studio, you know?

Blank Xavier