Overview
There are three types of memory dump.
- Complete memory dump: The complete contents of physical memory at the time of the crash. This is the most useful and informative, and the ideal option for troubleshooting these crashes.
- Automatic/Kernel memory dump: Does not contain user-mode process information, but still populates useful information in a system crash. Smaller than the complete dump.
- Small memory dump (minidump): 64 KB in size for x86 systems; 128 KB on x64 systems. Contains stop code, parameters, loaded device driver list, current process and thread info, and kernel stack info for the thread that caused the system crash. These can provide some helpful information as to the cause of crashes, but may not be as useful as larger options.
Directions



The system root is typically C:WindowsSystem32.
If the system is configured for minidump, the default location folder is %SystemRoot%Minidump.
Opening Memory Dump Files
- Open the Start menu
- type
windbg.exe. - Click File and select Open Crash Dump.
- Browse to the .dmp file you wish to analyze
- Click Open.



