> Is there a way to view all the available install properties on an MSI file > using an editor like Orca or InstEd?
If you dig, you should be able to find the properties that an MSI uses. This page gives a list of MSI tables that have a "Condition" column where properties can appear: https://msdn.microsoft.com/en-us/library/aa372435.aspx Condition table ControlEvent table LaunchCondition table InstallUISequence table InstallExecuteSequence table ControlCondition table AdminExecuteSequence table AdvtExecuteSequence table AdminUISequence table If you look at the "Condition" column in each of those tables, and make a note of any interesting ALL_CAPS properties, you can sometimes find public properties that are not in the Property table. William

