I've got the debugging tools installed and the i386 folder on my c drive but, I can't seem to get this script quite right. It's supposed to prompt you for the .dmp file and then launch windbg.
Thanks in advance for the help!
[!]The AutoSavers![/!]
Code:
Set objDialog = CreateObject("UserAccounts.CommonDialog")
objDialog.Filter = "All Folders|*.dmp"
objDialog.InitialDir = "C:\Windows\Minidump"
intResult = objDialog.ShowOpen
If intResult = 0 Then
Wscript.Quit
Else
set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run ("cmd /c c:\program files\debugging tools\windbg -y srv*c:\symbols*[URL unfurl="true"]http://msdl.microsoft.com/download/symbols[/URL] -i c:\windows\i386 -z c:\windows\minidump")& intResult,0,True
End If
Thanks in advance for the help!
[!]The AutoSavers![/!]