There are two ways to get to a mini-dump that was previously created. One of them is to use debuging tools like windb.exe or kd.exe.
Which one you use depends on which interface you will be using.
You need to have the debugging symbols installed and refer to them in the commands.
windbg -y <SymbolPath> -i <ImagePath> -z <DumpFilePath>kd -y <SymbolPath> -i <ImagePath> -z <DumpFilePath>The placeholders for the above commands are:
For example: if the contents of the I386 folder on the Windows CD-ROM are copied to the C:\Windows\I386 folder, and your dump file is named C:\Windows\Minidump\Minidump.dmp you can use either of these commands:
kd -y srv*c:\symbols*http://msdl.microsoft.com/download/symbols -i c:\windows\i386 -z c:\windows\minidump\minidump.dmpwindbg -y srv*c:\symbols*http://msdl.microsoft.com/download/symbols -i c:\windows\i386 -z c:\windows\minidump\minidump.dmp
Comments
Post new comment