Thursday 18 August 2011

Analyze Memory Dump File Using Debugging Tools For Windows

If you has read this article, I hope you has no restriction to understand the BSOD error’s message generated by computer. Today, I want to add a little explanation about this matter. Look at the picture below : 

Capture
Sometimes, when computer generate BSOD, it also create the memory dump file (.dmp) which is very useful to be analyzed by computer technician, in order to know more deeply about what type of critical error encountered by Windows.

  1. Debugging Tools for Windows. Download here. Please read this carefully before you download the tools.
  2. The file, iaStor.sys which you need to know its location (file path). In this case, its file path is C:\Windows\System32\drivers


Before The Procedures
I assume that you want to analyze this memory dump file using the known good computer. So, you need to do the following
  1. Create the folder named image inside the C:\ drive of known good computer.

    Capture
  2. Copy the file iaStor.sys (from the Windows 7’s notebook that encounter the BSOD error) and paste it into the folder C:\image that you created before.

    Capture
  3. Copy the memory dump file (from the Windows 7’s notebook that encounter the BSOD error) and paste it into C:\Windows\Minidump folder reside in a known good computer
     
  4. Install the Debugging Tools for Windows
    Capture


The Procedures

  1. Click images --> click All Programs –-> click Debugging Tools for Windows (x86) –-> click WinDbg –-> the WinDbg’s window like below appears.

    Capture
  2. Based on the picture above, click File –-> click Symbol File Path… –-> the Symbol Search Path’s window like below appears.

    Capture
  3. Inside the text area under Symbol path, type SRV*c:\websymbols*http://msdl.microsoft.com/download/symbols –-> click OK.
  4. Now, on the WinDbg’s window AGAIN, click File –-> click Image File Path…

    Capture
  5. The Executable Image Search Path’s window like below appears. Inside the text area under Image path, type c:\image --> click OK.

    Capture 

    Note:
    The c:\image is the folder reside in C: drive which you created at step 2 under section Before The Procedures. The content of this folder is the file iaStor.sys
  6. Now, it is the time to open the memory dump file for deep analysis. Click File –-> click Open Crash Dump…

    Capture
  7. Then, you will be re-directed to C:\Windows\Minidump –-> highlight the memory dump file –-> click Open –-> click Yes and you will get the result like below.  

    Capture
  8. If you want to get more details debugging information, click !analyze -v. Then you will get the detail information as below

    Capture
  9. Based on the picture above, if you scroll down a little bit more, you will see the information like the picture below
    Capture
  10. Click the iaStor and you will be presented with the details information about the file iaStor.sys. See below

    Capture

Conclusion The another name for analyze memory dump file is debugging process. Actually the debugging process is a technique that need time to be learned and be mastered. Besides, the debugging process also time consuming to be done. What you learned in this article is the basic concept that you need to know in debugging process.

If you are interested to learn more about debugging process, here I give you the links which you can refer
  1. How to Analyze Memory Dump (.dmp) File
  2. How to read the small memory dump files that Windows creates for debugging
  3. If your computer had been installed with Debugging Tools for Windows, you can retrieve the complete documentation about debugging process at C:\Program Files\Debugging Tools for Windows\Debugger.chm

0 comments:

Related Posts Plugin for WordPress, Blogger...