tags:

views:

35

answers:

1

Is there a way to display the product name and version of a msi file from the command line? Or better yet, can this be done via python?

+2  A: 

Try SummaryInformation.GetProperty(PID_TITLE) and SummaryInformation.GetProperty(PID_REVNUMBER) and all the other field names at the msilib docs page

vpit3833
thanks. i didn't realize there was a lib called msilib
Luiz C.