6

I have been getting frequent BSODs and need to find the minidump file. It doesn't appear to exist. I checked the entire c drive.

O.O
  • 339
  • 1
  • 3
  • 10

2 Answers2

7

You may need to turn the dumps on in the Control Panel, as they're not always enabled by default.

The minidump files are usually located in C:/Windows/Minidump/*.dmp and the full memory dump in C:/Windows/MEMORY.dmp. Something should be logged in your Event log as well, including the STOP code and parameters.

It's important to call out that for various reasons, a dump won't be created even if you explicitly tell it to. The most common being lack of physical space on disk for the dump file, but if Windows doesn't trust the disk subsystem (e.g a storage driver went crazy and corrupted some kernel structures) then it won't try to write a dump, as doing so may do more harm than the usefulness of the diagnostic info would be.

If you have something like HP iLO then it may be able to record the last actions the system took and allow you to watch it back as a video, enabling you to see the STOP message and Google for more info. If you can catch it in the act of blue screening, I always find the phone on my camera is handy to document the STOP code and parameters.

Ben Pilbrow
  • 11,995
  • 5
  • 35
  • 57
  • good info, I'll look into it. – O.O Aug 31 '11 at 23:44
  • For the BSOD I was getting, the minidump was not being created. This was due to an error during the minidump creation (it was my SSD causing the bluescreen so the disk was not available). I was eventually able to create a minidump by using the windows verifier.exe program. – O.O Jan 10 '12 at 18:10
3

Normally they are in C:\Windows\Minidump

DougN
  • 670
  • 2
  • 7
  • 16