How To Analysis Crash Dump

Posted on August 21, 2007 by admin



What is Crash Dump?
Crash Dump is file windows create it when it give you the Blue Screen of death Error (BSOD)

windows xp bsod 150x150 How To Analysis Crash Dump

Basically Blue Screen of Death is just an Error so windows creat file called Minidump
it’s located in this path
C:\WINDOWS\Minidump

so if we need to know what cause this Blue Screen of Death Error we need to Analysis the minidump file

to do this we need first to download and Install Debugging Tools for Windows
this can be download from here

After installing Debugging Tools for Windows we need to defined the symbol path

To enter a symbol path in WinDbg

  1. On the File menu, click Symbol Path.
  2. In the Symbol Search Path window, enter the following:

    “srv*c:\cache*http://msdl.microsoft.com/download/symbols;”

then open file menu and click open crash dump…

it’ll take few second to analysis the crash dump , after that you’ll get the error report and what caused this BSOD

11 150x150 How To Analysis Crash Dump

so let’s take look at the last few lines , you can see clearly this line
Probably caused by : bdrsdrv.sys (bdrsdrv+ea6)
ofcourse you going to something diffrent bdrsdrv.sys so all you have to do is google it till you find the solution

in my cause bdrsdrv.sys is what caused the Blue Screen of death, and after i google it i found it belongs to Bitdefender Antivirurs

Related posts:

  1. Firefox 3.6.6 Released With Update for Crash Protection Feature
  2. How To Customizing Logon Screen Background in Windows 7
  3. Fix Windows 7 Blue Screen of Death (BSOD) Error STOP: 0×0000000A
  4. How To Fix Windows Vista SP2 Stop 0×000000FE BUGCODE_USB_DRIVER Error
  5. How to Register and Unregister a DLL File in Windows XP and Vista

Comments (3)

 

  1. c.haberl says:

    Based on your article I created a how-to in German in my blog, which can be found here: http://blog.this.at/Lists/Beitraege/Post.aspx?ID=31

  2. Erik Z says:

    Thank you, I will definitely use this technique next time I get the blue screen of death. I got it once, really don’t think I’ll get it again, but it’s good to know this just in case, thanks!

  3. Larry says:

    Oh, the blue screen of death. Been getting that thing since before I can remember. But at least I know of a way to try and fix it. Thanks!