Product version displayed in WIX-made MSI file properties

windows-installerwix

How to have the Product version displayed in the MSI file properties (as displayed by Windows Explorer) ?

Our installer is created using WIX. All we see is the product GUID displayed as the Revision Number in the Details tab of the MSI file properties.

We'd like to have the product version (e.g.: 5.0.1.12345) so that the support team (and customers) can easily check the version of a given file.

Best Answer

Simply add the Comments attribute to the Package tag as below.

<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" Comments="Version: 5.0.1.12345" />

There is no version property to be set. So as an alternative we are adding it to the comments attribute. So it can be seen in the properties of the msi.

Related Topic