How do I troubleshoot computer dumps?

6

2

Once I have a dump of a computer crash/freeze, what are some tools and steps to take in order to troubleshoot crash based off of the dump itself?

I am looking for tools to isolate what processes or issues are causing the crash, and also good techniques in troubleshoot the actual dump itself. Once I've determined what the "troublesome" process has been, what do I do to troubleshoot the issue?

For example if I determine process foo.exe or bar.dll etc, is the problematic file how do I determine what can be done?

James Mertz

Posted 2010-12-21T15:12:10.213

Reputation: 24 787

Answers

3

I use these procedures :

Install Tools If you havn't got the windows debugging tools installed, then install the Microsoft Debugging Tools (Direct Link) Analyse The MiniDump To extract useful information out of the minidump file created:

  1. Open a command prompt (Start -> Run -> "cmd")
  2. cd \program files\debugging tools (Or wherever they are installed to)
  3. kd -z C:\WINDOWS\Minidump\Mini???????-??.dmp
  4. kd> .logopen c:\debuglog.txt
  5. kd> .sympath srvc:\symbolshttp://msdl.microsoft.com/download/symbols
  6. kd> .reload;!analyze -v;r;kv;lmnt;.logclose;q
  7. You now have a debuglog.txt in c:\, open it in a text edit (Notepad?).

KutscheraIT

Posted 2010-12-21T15:12:10.213

Reputation: 940

2If you'd rather not use the command line, you can launch WinDbg, set the Symbol path in the options, and just drag and drop the dump file in. (Bonus - the debugging log shows up right there.) – Shinrai – 2010-12-21T15:25:48.537

1

Moab

Posted 2010-12-21T15:12:10.213

Reputation: 54 203