The command line support in Minidump Browser is very simple.
/minidump
The /minidump command specifies the minidump or kernel dump to load.
The /minidump command takes one argument, a filename.
/minidump c:\windows\minidumps\crash.dmp
/exportFormat
The /exportFormat command specifies the format of the exported document. Text or HTML.
The /exportFormat command takes one argument, txt or html.
/exportFormat html
/exportFileName
The /exportFileName command specifies the file to export data to.
The /exportFileName command takes on argument, the full path to file to export.
/exportFileName e:\exportedData\minidimp-video-server-0113A.html
/exportBugCheck
The /exportBugCheck command includes BugCheck information in the exported data. This only works for kernel dumps.
/exportExceptionCallstack
The /exportExceptionCallstack command includes Exception information in the exported data. This works for kernel dumps, and for minidumps that contain an exception.
/exportAllThreadsCallstack
The /exportAllThreadsCallstack command includes callstack information for all threads in the minidump in the exported data. This only works for minidumps.
/exportLoadedModules
The /exportLoadedModules command includes information about the loaded modules in the exported data.
/exportUnloadedModules
The /exportUnloadedModules command includes information about unloaded modules in the exported data.
/exportRegisters
The /exportRegisters command includes information from the exception context in the exported data. This works for kernel dumps, and for minidumps that contain an exception.
/verbose
The /verbose command prints addition information about DLL downloading and symbol resolving to the standard output. This only works when you are running from the command line performing an export.
minidumpBrowser.exe /minidump c:\windows\minidumps\crash.dmp
minidumpBrowser_x64.exe /minidump c:\windows\minidumps\crash.dmp
This command line will load and display the file c:\windows\minidumps\crash.dmp in Minidump Browser.
minidumpBrowser_x64.exe /minidump E:\buggyApp.dmp /exportFormat html /exportFileName e\buggyApp.html /exportExceptionCallstack /exportAllThreadsCallstack /exportLoadedModules /exportUnloadedModules
This command line loads a minidump e:\buggyApp.dmp and exports it to a html file. The export contains the exception callstack, callstacks for all threads, the loaded modules list and the unloadedmodules list.
minidumpBrowser_x64.exe /minidump E:\buggyDriver.dmp /exportFormat txt /exportFileName e\buggyDriver.txt /exportBugCheck /exportExceptionCallstack /exportLoadedModules /exportUnloadedModules
This command line loads a kernel dump e:\buggyDriver.dmp and exports it to a txt file. The export contains bugcheck information, the exception callstack, the loaded modules list and the unloadedmodules list.