Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista General Discussion > Minidump reader

Reply
Thread Tools Display Modes

Minidump reader

 
 
SteveB
Guest
Posts: n/a

 
      07-29-2007
Hi

Can anyone suggest a tool I can use to read the contents of a minidump file?

Thanks

SteveB

 
Reply With Quote
 
 
 
 
Synapse Syndrome
Guest
Posts: n/a

 
      07-29-2007
"SteveB" <> wrote in message
news:1AADBFBB-C81A-4E95-BBF7-...
> Hi
>
> Can anyone suggest a tool I can use to read the contents of a minidump
> file?



http://www.microsoft.com/whdc/devtoo...g/default.mspx

ss.

 
Reply With Quote
 
Andrew McLaren
Guest
Posts: n/a

 
      07-29-2007
"Synapse Syndrome" <> wrote ...
>> Can anyone suggest a tool I can use to read the contents of a minidump
>> file?

> http://www.microsoft.com/whdc/devtoo...g/default.mspx


Hi Steve

SS is correct - WinDBG (in the Windows Debugging Tools) is undoubtedly the
best tool for examining memory dumps on Windows. It's a free download from
the URL above.

To add an ancillary comment, which might help get you started .... take a
look at this Knowledegbase article:

How to read the small memory dump files that Windows creates for
debugging
http://support.microsoft.com/kb/315263

To summarise that article:
- download and install WinDBG
- run WinDBG
- go to File, Open Crash Dump, navigate to the minimdump you want to open.
- the article describes giving the symbol path on the command line, but you
can also specify the symbol path in the GUI, by going File, Symbol File
Path, and entering the same command-line syntax
- once you have the dump file loaded and the symbol path set, run the
command "!analyze -v"

This will chug away for a few minutes and then give you a summary report on
the dump. If you are new to debugging, that's the best you will get for now.
You can certainly use commands like ~, kP, and dd to move around the dump
and examine the entrails, but to make sense of what you see requires a good
knowledge of Windows process and memory models, and x86 assembly language.
It's also a great way to *learn* about Windows process and memory models,
and x86 assembly language :-)

The WinDBG Help File is Very Good! (unlike most help files). If you need
additional resources to learn more about debugging and reading dumps, a good
book is:
John Robbins
Debugging Applications for Microsoft .NET and Microsoft Windows
http://www.microsoft.com/MSPress/books/5822.aspx

There are probably lots of free articles on the web, as well; just Google
for "Windbg and minidump".

Good luck!!
--
Andrew McLaren
amclar (at) optusnet dot com dot au


 
Reply With Quote
 
SteveB
Guest
Posts: n/a

 
      07-30-2007

"Synapse Syndrome" <> wrote in message
news:...
> "SteveB" <> wrote in message
> news:1AADBFBB-C81A-4E95-BBF7-...
>> Hi
>>
>> Can anyone suggest a tool I can use to read the contents of a minidump
>> file?

>
>
> http://www.microsoft.com/whdc/devtoo...g/default.mspx
>
> ss.


Many thanks

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
bluescreen minidump shut down swolf Windows Vista General Discussion 6 03-04-2008 02:47 PM
permissions re minidump merryx Windows Vista Administration 1 12-29-2007 11:58 PM
Minidump daveduke Windows Vista Performance 1 09-15-2007 02:13 AM
Minidump problems Jinx Windows Vista File Management 0 04-18-2007 11:00 AM
Minidump Files on a crash Al Windows Vista General Discussion 0 09-12-2006 01:32 AM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59