views:

441

answers:

3

How to add (or change a default values) a summary page information to a WiX-generated MSI file?

Summary page is the tab page which is visible if you right click on the MSI file in the Windows Explorer and includes following text fields:

Title, Subject, Author, Category, Keywords, Comments

+2  A: 

That information is set in the field, for example:

<Wix xmlns='http://schemas.microsoft.com/wix/2003/01/wi'&gt;
  <Product
  UpgradeCode="SOMEGUID-XXXX-XXXX-XXXX-XXXXXXXXXXXX"  
  Name='MyApp' 
  Id='????????-????-????-????-????????????'
  Language='1033' 
  Codepage='1252' 
  Version='1.0.0' 
  Manufacturer='MyCompany'>
 <Package
 Id="*"
 Keywords="keyword1, keyword2, keyword3"
 Description="summary of application"
 Comments="some comments"
 Manufacturer="mycompany"
 InstallerVersion="300"
 Languages="1033"
 Compressed="yes"
 SummaryCodepage="1252"/>
Stefan
And where can I set the Title?Thanks!
deerchao
A: 

Another way to set the summary info of an MSI is by using Msiinfo.exe utility. We use this in our build system to set some of the values that could not be set while generating the MSI file (in a post build step).

Ragas
A: 

If you need to set the information after creating the MSI you can also edit the summary information using Orca from the Windows SDK. To install it, first install the Windows SDK then install Orca from the MSI file at C:\Program Files\Microsoft SDKs\Windows\v7.0\Bin\orca.msi . Set the information through View -> Summary Information... .

BruceCran