When do you call this script?

 

Thanks for you help,

Leila

 


From: Ashish Gore (Accenture)
Sent: Thursday, October 19, 2006 7:01 PM
To: Leila Lali (Excell Data Corporation); wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Summary Information Stream

 

Hi,

 

I am not sure this will help you. However I am using following script to update Package Code in MSI

 

 

Sub ChangePackageCode

 

            Dim objInstaller

            Set objInstaller = Nothing

            Set objInstaller = Wscript.CreateObject("WindowsInstaller.Installer")

 

            ' Open summary information of specified file

            Dim objSumInfo 

            Set objSumInfo = objInstaller.SummaryInformation("Output\Product.msi",20)

 

            ' Get Revision and Subject properties

            objSumInfo.Property(9) = GetNewGUID()

            objSumInfo.Persist

 

            Set objSumInfo = nothing

End Sub

 

Ashish


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Leila Lali (Excell Data Corporation)
Sent: Thursday, October 19, 2006 6:56 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Summary Information Stream

 

Hi,

 

I’m trying to change the title that is shown on Summary tab of msi properties.

I’ve read the documents about Summary Information Stream in msdn, http://msdn.microsoft.com/library/en-us/msi/setup/summary_information_stream.asp,

But I didn’t figure out how to work with these properties.

 

Does any body has a sample about that, or could you please give me a hint?

 

Thanks

 

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to