How to Read Dump Files

This wikiHow teaches you how to analyze your Windows computer's dump files after a crash. Dump files, which are automatically created by Windows after your computer crashes, display a list of programs that were running before the crash;...

Part 1 of 2:

Reading with BlueScreenView

  1. Picture 1 of How to Read Dump Files
    Open Start
    Picture 2 of How to Read Dump Files
    . Click the Windows logo in the bottom-left corner of the screen.
  2. Picture 3 of How to Read Dump Files
    Type in view advanced system settings. This will search your computer for the Advanced System Settings section of Control Panel.
  3. Picture 4 of How to Read Dump Files
    Click View advanced system settings. It's a computer monitor with a checkmark icon at the top of the Start menu. Doing so opens the Advanced System Settings window.
  4. Picture 5 of How to Read Dump Files
    Click the Advanced tab. You'll see this at the top of the window.
    1. You may first have to click the computer monitor-shaped icon that appears at the bottom of the screen to open the Advanced System Settings window.
  5. Picture 6 of How to Read Dump Files
    Click Settings. It's below the "Startup and Recovery" heading near the bottom of the page. Doing this will open a separate window.
  6. Picture 7 of How to Read Dump Files
    Click the "Write debugging information" drop-down box. You'll find this box in the middle of the separate window. Clicking it prompts a drop-down menu.
  7. Picture 8 of How to Read Dump Files
    Click Small memory dump. It's in the drop-down menu. This option makes future memory dumps readable with a simple file explorer such as BlueScreenView.
    EXPERT TIP
    Picture 9 of How to Read Dump Files

    Luigi Oppido

    Computer Repair Technician & Owner, Pleasure Point Computers
    Luigi Oppido is the Owner and Operator of Pleasure Point Computers in Santa Cruz, California. Luigi has over 25 years of experience in general computer repair, data recovery, virus removal, and upgrades.
    Picture 10 of How to Read Dump Files
    Luigi Oppido
    Computer Repair Technician & Owner, Pleasure Point Computers

    A memory dump file is a file that's taken from RAM. RAM has a number of allocation tables—or buckets—inside. A memory dump file is an entire download of whatever was inside that file when a catastrophic failure happened, and it goes into a log so an engineer or a software professional can look at it and see where the conflict happened.

  8. Picture 11 of How to Read Dump Files
    Click OK. It's at the bottom of the window. This will close the window and return you to the Advanced System Settings window.
  9. Picture 12 of How to Read Dump Files
    Click OK. Doing so saves your changes and closes the Advanced System Settings window.
  10. Picture 13 of How to Read Dump Files
    Open the BlueScreenView page. Go to https://www.nirsoft.net/utils/blue_screen_view.html in your browser. BlueScreenView is a program that finds and analyzes dump files for you, making it easy to see which programs were running directly before a crash.
  11. Picture 14 of How to Read Dump Files
    Download BlueScreenView. Scroll down and click the Download BlueScreenView with full install/uninstall support link that's near the middle of the page.
  12. Picture 15 of How to Read Dump Files
    Open the BlueScreenView setup file. Double-click the bluescreenview_setup file in your computer's "Downloads" location.
  13. Picture 16 of How to Read Dump Files
    Install BlueScreenView. To do so:
    1. Click Yes when prompted.
    2. Click Next
    3. Click Next
    4. Click Install
    5. Wait for BlueScreenView to install.
  14. Picture 17 of How to Read Dump Files
    Open BlueScreenView. Make sure that the "Run NirSoft BlueScreenView" box is checked, then click Finish at the bottom of the window. BlueScreenView will open.
  15. Picture 18 of How to Read Dump Files
    Review your dump files. BlueScreenView has a top pane and a bottom pane; you'll see the dump file(s) listed in the top pane, while the programs that were recorded by the currently selected dump file will appear in the bottom pane.
    1. You can select a dump file by clicking it in the top pane.
    2. At least one of the programs that were recorded by the dump file is most likely responsible for the crash.
Part 2 of 2:

Reading with the Windows Drivers Kit

  1. Picture 19 of How to Read Dump Files
    Open the Windows 10 Drivers Kit page. Go to https://docs.microsoft.com/en-us/windows-hardware/drivers/download-the-wdk in your browser. The Windows Drivers Kit allows you to open dump files of all kinds, making it useful for checking a dump file from a past crash.
  2. Picture 20 of How to Read Dump Files
    Download the Windows Drivers Kit setup file. Scroll down and click the Download WDK for Windows 10, version 1803 link, which is below the "Install WDK for Windows 10" heading near the top of the page. The setup file will download onto your computer.
  3. Picture 21 of How to Read Dump Files
    Open the WDK setup file. Double-click the wdksetup file in your computer's default "Downloads" folder.
  4. Picture 22 of How to Read Dump Files
    Install the Windows 10 Drivers Kit. To do so:
    1. Click Next on the first 4 pages.
    2. Click Accept
    3. Click Yes when prompted.
    4. Wait for the WDK program to finish installing.
  5. Picture 23 of How to Read Dump Files
    Open Start
    Picture 24 of How to Read Dump Files
    . Click the Windows logo in the bottom-left corner of the screen.
  6. Picture 25 of How to Read Dump Files
    Type in command prompt. This will search your computer for the Command Prompt app.
  7. Picture 26 of How to Read Dump Files
    Right-click
    Picture 27 of How to Read Dump Files
    Command Prompt. It's a black box at the top of the Start window. A drop-down menu will appear.
  8. Picture 28 of How to Read Dump Files
    Click Run as administrator. This option is in the drop-down menu.
    1. You won't be able to complete this step if you're not on an administrator account on your computer.
  9. Picture 29 of How to Read Dump Files
    Click Yes when prompted. Doing so opens the Command Prompt app in administrator mode.
  10. Picture 30 of How to Read Dump Files
    Switch to the WDK directory. Type in the following address and then press Enter:
    1. cd C:Program Files (x86)Windows Kits10Debuggersx86
  11. Picture 31 of How to Read Dump Files
    Enter the installation command. Type in windbg.exe -IA and then press Enter.
  12. Picture 32 of How to Read Dump Files
    Click OK when prompted. This signifies that the Windows Debugger will now open dump files automatically.
  13. Picture 33 of How to Read Dump Files
    Open WinDBG. Click Start
    Picture 34 of How to Read Dump Files
    , type in windbg, and click WinDbg (X86) in the results. The Windows Debugger program will open.
  14. Picture 35 of How to Read Dump Files
    Add a symbol path. The symbol path tells the Windows Debugger which information to display:[1]
    1. Click File in the upper-left corner.
    2. Click Symbol File Path...
    3. Type in SRV*C:SymCache*http://msdl.microsoft.com/download/symbols
    4. Click OK
  15. Picture 36 of How to Read Dump Files
    Find your dump file. To do this, you'll need to go to the system root folder:
    1. Open Start
    2. Type in run and press Enter
    3. Type in %SystemRoot%
    4. Click OK
    5. Click the View tab.
    6. Check the "Hidden items" box if it isn't already checked.
    7. Scroll down and double-click the MEMORY.DMP file.
  16. Picture 37 of How to Read Dump Files
    Review the dump file's results. You should see a list of programs that were open when your computer crashed, which will help you determine which program(s) is/are responsible for the computer crash.
Update 24 March 2020
Category

System

Mac OS X

Hardware

Game

Tech info

Technology

Science

Life

Application

Electric

Program

Mobile