Re: [WiX-users] Summary Information Stream

2006-10-24 Thread Bob Arnson




Leila Lali (Excell Data Corporation) wrote:

  
  

  
  
  It is still
not clear for me; do you have
any sample or document?
  Do you mean
I can set different values for
comments? And one of them will be the title?
  


You can set PID_COMMENTS but not PID_TITLE.


-- 
sig://boB
http://bobs.org


-
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


Re: [WiX-users] Summary Information Stream

2006-10-24 Thread Leila Lali (Excell Data Corporation)








It is still not clear for me; do you have
any sample or document?

Do you mean I can set different values for
comments? And one of them will be the title?

 

Thanks

Leila

 









From: Bob Arnson [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 24, 2006
10:11 AM
To: Leila Lali (Excell Data
Corporation)
Cc:
wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Summary
Information Stream



 

Leila Lali (Excell Data Corporation) wrote: 

This attribute (Comments) just changes the comment not the
title. It is exactly my problem, why Package element doesn’t have any
attribute for title!?


Because the MSI doc isn't clear that it's permissible to use different values.
Feel free to enter a feature request, though.





-- sig://boBhttp://bobs.org




-
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


Re: [WiX-users] Summary Information Stream

2006-10-24 Thread Bob Arnson




Leila Lali (Excell Data Corporation) wrote:

  
  

  
  
  This
attribute (Comments) just changes the
comment not the title. It is exactly my problem, why Package element
doesn’t
have any attribute for title!?
  


Because the MSI doc isn't clear that it's permissible to use different
values. Feel free to enter a feature request, though.


-- 
sig://boB
http://bobs.org


-
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


Re: [WiX-users] Summary Information Stream

2006-10-20 Thread Leila Lali (Excell Data Corporation)








This attribute (Comments) just changes the
comment not the title. It is exactly my problem, why Package element doesn’t
have any attribute for title!?

 









From: Bob Arnson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 19, 2006
7:51 PM
To: Leila Lali (Excell Data
Corporation)
Cc:
wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Summary
Information Stream



 

Leila Lali (Excell Data Corporation) wrote: 

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.


Summary Information Stream properties are changed via attributes in the Package
and Product elements. I believe you want to change Packages/@Comments.



-- sig://boBhttp://bobs.org




-
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


Re: [WiX-users] Summary Information Stream

2006-10-19 Thread Ashish Gore (Accenture)








Hi,

 

I am calling this script while creating
the package for upgrades.

I want to change the package code by just
double clicking the vbs file. I did not want to open wix code and change the
guid.

 

Regards,

Ashish

 

 









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



 

 

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


Re: [WiX-users] Summary Information Stream

2006-10-19 Thread Bob Arnson




Leila Lali (Excell Data Corporation) wrote:

  
  
  
  
  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.
  


Summary Information Stream properties are changed via attributes in the
Package and Product elements. I believe you want to change
Packages/@Comments.
-- 
sig://boB
http://bobs.org


-
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


Re: [WiX-users] Summary Information Stream

2006-10-19 Thread Leila Lali (Excell Data Corporation)








 

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


Re: [WiX-users] Summary Information Stream

2006-10-19 Thread Ashish Gore (Accenture)








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


[WiX-users] Summary Information Stream

2006-10-19 Thread Leila Lali (Excell Data Corporation)








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