Debug BSOD from memory.dmp without a development platform.

The application I use and starting to love outside of just using Visual Studio or any other C++ debugger is WinDbg. One of the things that make this application great is that it is free. So if your parents are getting BSOD after BSOD you do not have to install your copy of Visual Studio’s onto their machine or try and explain to them how to email the memory.dmp file.

1. Download WinDbg from Microsoft for your platform. (http://www.microsoft.com/whdc/devtools/debugging/default.mspx)

2. Installed WinDbg

3. Run the application as Administrator (if UAC is enabled)

4. Click on File

5. Open Crash dump

clip_image002

6. The Open crash Dump dialog should automatically open to the %SYSTEMROOT% (typically this is C:\Windows)

7. Click open

8. If you receive a prompt about saving information for workspace click which ever you like, for a quick look I typically say no.

9. Scroll to the bottom and you should see a line that starts with “Probably caused by”

clip_image004

10. You can then take that file and do a Bing or Google search to find likely causes and possible fixes.

Advertisement
This entry was posted in Windows and tagged , . Bookmark the permalink.