Jump to content

Need Help Automating Minidump Analysis


Recommended Posts

Hey guys,

I searched for a bit and could not find an automated tool to do this...

I need some ideas of how to make this tool for like a right click or sendto option.

The "Debugging Tools for Windows" need to be installed, and should be in the 'C:\Program Files\Debugging Tools for Windows' location.

After doing so, the code is:

cd C:\Program Files\Debugging Tools for Windows\

kd -z C:\WINDOWS\Minidump\Mini???????-??.dmp

.logopen c:\debuglog.txt

.sympath srv*c:\symbols*http://msdl.microsoft.com/download/symbols

.reload;!analyze -v;r;kv;lmnt;.logclose;q

My question... How do we automate this task so that I can just browse to a minidump file, right click and select an option to do the above actions automatically? ...any Ideas or existing programs that already do this?

Link to comment
Share on other sites

  • 2 weeks later...

a simpler way would be to do this

cd "c:\program files\debugging tools for windows"

kd -y srv*c:\symbols*http://msdl.microsoft.com/download/symbols -i c:\windows\i386 -z %1

add this to a bat file and then you could just launch the bat file (lets call it dump.bat) from the command line

C:\dump.bat <path to dump file>

would save you alot of coding time!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...