Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does anyone know a good MSI Log Viewer?

Fairly simple question, does anyone know of good utility for browsing msi log files?

Be interested in anything that provides filtering, a nice view of different standard and custom actions, action sequencing, properties, and errors.

Thanks.

like image 243
Ben Cawley Avatar asked Aug 02 '11 16:08

Ben Cawley


People also ask

How do I view MSI logs?

The log file, Msi. log, appears in the Temp folder of the system volume. For more information about MSI logging, see Windows Help. To do this, search by using the phrase msi logging, and then select Managing options for computers through Group Policy.

What is L * VX?

/l* says include all the switches except for v and x so it's equivalent to /loicewarmup . /l*vx includes all the switches and adds v and x to get everything. Follow this answer to receive notifications. answered Oct 13, 2020 at 19:00.

How do I check installer logs?

View the Windows Setup event logsStart the Event Viewer, expand the Windows Logs node, and then click System. In the Actions pane, click Open Saved Log and then locate the Setup. etl file. By default, this file is available in the %WINDIR%\Panther directory.

How do I verify MSI installer?

Right-click the EXE or MSI file and select Properties. Click the Digital Signatures tab to check the signature.


2 Answers

I found the tip from Rob Mensching about the first thing to look for in the MSI log very useful, much more useful than any tool for log viewing. To be honest, I rarely have to look for anything beyond this.

As for the true log file parsing, only the verbose log file contains enough info to understand what's going on, hence if you need to walk through (a big part of) the whole process of the installation (not only a place the error occurs in), be ready to read the log line by line, because almost every line matters, as well as the sequence. If you need to track the value of the property, just open the log file and Ctrl+F that property name to see its evolution during the installation.

BTW, do you know that WiX can be even more verbose? :-)

like image 185
Yan Sklyarenko Avatar answered Sep 19 '22 05:09

Yan Sklyarenko


Have you tried Wilogutl.exe?

Also, see this article for a basic usage: http://dennisbareis.com/makemsi-manual/view_verbose_msi_log.htm

Here's another good one: http://www.hoschi.biz/index.php?option=com_content&view=article&id=44&Itemid=53

like image 22
Mrchief Avatar answered Sep 18 '22 05:09

Mrchief