I've created an MSI file with WiX. The source WiX file contains the version information like this:
<Product Id="..."
Name="..."
Language="1033"
Version="1.0.0.1"
Manufacturer="..."
UpgradeCode="...">
The MSI file seem to work OK: it installs, it uninstalls, it upgrades when I increase the version number, etc.
However, when I attempt to get the version information about this file by calling the MsiGetFileVersion() API, it returns error 1006 (ERROR_FILE_INVALID
File does not contain version information.)
Hence my question: how to (programmatically, in C++) retrieve the version number of an MSI file? Or, to put it another way, where in the WiX file should the version information go in order to be retrievable via MsiGetFileVersion()?
More information: The same error occurs with MSI 3.0 on Windows XP and MSI 4.0 on Vista.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…