The AppCrashView application was developed to be a small utility that displays the details of all application crashes occured in your system. The crashes information is extarcted from the .wer files created by the Windows Error Reporting (WER) component of the operating system every time that a crash is occurred. AppCrashView also allows you to easily save the crashes list to text/csv/html/xml file.
AppCrashView doesn't require any installation process or additional dll files. In order to start using it, simply run the executable file -AppCrashView.exe
The main window of AppCrashView contains 2 pane. The upper pane displays the list of all crashes found in your system, while the lower pane displays the content of the crash file that you select in the upper pane. You can select one or more crashes in the upper pane, and then save them (Ctrl+S) into text/html/xml/csv file or copy them to the clipboard ,and paste them into Excel or other spreadsheet application.
Command-Line Options:
/ProfilesFolder
Specifies the user profiles folder (e.g: c:\users) to load. If this parameter is not specified, the profiles folder of the current operating system is used.
/stext
Save the list of application crashes into a regular text file.
/stab
Save the list of application crashes into a tab-delimited text file.
/scomma
Save the list of application crashes into a comma-delimited text file
(csv).
/stabular
Save the list of application crashes into a tabular text file.
/shtml
Save the list of application crashes into HTML file (Horizontal).
/sverhtml
Save the list of application crashes into HTML file (Vertical).
/sxml
Save the list of application crashes into XML file.
/sort
This command-line option can be used with other save options for sorting by the desired column. If you don't specify this option, the list is sorted according to the last sort that you made from the user interface.
The parameter can specify the column index (0 for the first column, 1 for the second column, and so on) or the name of the column, like "Event Name" and "Process File". You can specify the '~' prefix character (e.g: "~Event Time") if you want to sort in descending order. You can put multiple /sort in the command-line if you want to sort by
multiple columns.
Examples:
AppCrashView.exe /shtml "f:\temp\crashlist.html" /sort 2 /sort ~1
AppCrashView.exe /shtml "f:\temp\crashlist.html" /sort "Process File"
/nosort
When you specify this command-line option, the list will be saved without
any sorting.
What's New in This Release: [ read full changelog ]
· Added 'Mark Odd/Even Rows' option, under the View menu. When it's turned on, the odd and even rows are displayed in different color, to make it easier to read a single line.