05
Reading and Troubleshooting the Windows Minidump (.dmp) File
Posted under Desktops, Laptops, Servers by ifoundafixThe other day while browsing the Internet I Found A Fix for a recent problem I was having. The issue is described as follows;
My Computer kept getting the BSOD (Blue Screen of Death). I needed to be able to analyse the windows minidump file to fully understand what was causing the computer to randomly reboot.
The solution and description to this error is set out below;
1. Download and install the http://www.microsoft.com/whdc/devtools/debugging/installx86.mspx debugging Tools from Microsoft.
2. Locate your latest memory.dmp file – for example; C:\WINDOWS\ Minidump\Mini081505-01.dmp or whatever
3. Open a CMD prompt and cd\program files\debugging tools for windows\
4. You should see the following; c:\program files\debugging tools>
5. Type the following:
Firstly
kd -z C:\WINDOWS\ Minidump\Mini081505-01.dmp(or replace with the path to your dump file)
(it will output loads of information)
Secondly
.logopen c:\debuglog.txt
Thirdly
.reload;!analyze -v;r;kv;lmnt;.logclose;q
You will now have a debuglog.txt in c:\, open it in notepad and read it carefully. I recommend looking out for PROCESS_NAME: X
You should type X into Google and find out what this process is related to. Whatever is causing the problem you should then install, remove, update, etc accordingly.
I would like to acknowledge the assistance and thank Techspot for their solution which can also be found here
I hope you too have Found A Fix!
Amazing! You have just saved me from 4 days of headaches with the blue screen reporting on no_more_irp_stack_locations (0×035 error).
The cause of it was the Prio (Process IO) software, which ran fine for 1.5years and finally just died on me. I uninstalled it, and everything is back to normal.
Thanks Heaps!! :~D
Could you achieve the same results by physically connecting the failing C drive to another (working) computer, then copy the dump file and analyze it? This would save having to enter all that command prompt code.
I would imagine so but if the hard drive is failing, I would suspect that is your problem and I’d recommend you clone or image the hard drive to a new one before bothering with dump files, etc.
[...] http://www.ifoundafix.com/2008/02/05/reading-and-troubleshooting-the-windows-minidump-dmp-file/ [...]
Hi,i tried to open “cd\program files\debugging tools for windows\” with CMD,but when i type that,i get a message “C:\Users\Iva>cd\program files\debugging tools for windows\
The system cannot find the path specified.
What should i do??
You should type cd\ first.
Add A Comment