Re: [WiX-users] Unable to Pass Parameters via MsiInstallProductW(Path_TO_MSI, CMDLINE)

2007-07-26 Thread Christopher Painter
Public properties are described:
   
  http://msdn2.microsoft.com/en-us/library/aa370912.aspx
   
  http://msdn2.microsoft.com/en-us/library/aa371245.aspx
   
  A subtle correction of the definition is that a public property cannot 
contain lowercase letters.  It may contain other special characters.
  

Pierson Lee (Volt) [EMAIL PROTECTED] wrote:
  Public properties in WiX are specified by the fact that the Property Id (the 
name) is all in Caps

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Magus
Sent: Thursday, July 26, 2007 12:02 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Unable to Pass Parameters via 
MsiInstallProductW(Path_TO_MSI, CMDLINE)


How do I make a property Public? Or are there only certain public
properties?

Christopher Painter wrote:

 Only public properties can be passed via the command line. Also you
 probably want to set the TRANSFORMS property not the TRANSFORM property.

 Magus wrote:
 I have a bootstrapper that is suppose to set 2 properties via command
 line,
 however none of the properties that I set in the Cmdline are being set. Is
 there something I am doing wrong?

 CMDLINE = PropertyA=18 PropertyB=C:\Temp TRANSFORM=KOREAN.mst
 --
 View this message in context:
 http://www.nabble.com/Unable-to-Pass-Parameters-via-MsiInstallProductW%28Path_TO_MSI%2C-CMDLINE%29-tf4153410.html#a11816638
 Sent from the wix-users mailing list archive at Nabble.com.


 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems? Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now  http://get.splunk.com/
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users



 -
 Pinpoint customers who are looking for what you sell.
 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems? Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now  http://get.splunk.com/
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users



--
View this message in context: 
http://www.nabble.com/Unable-to-Pass-Parameters-via-MsiInstallProductW%28Path_TO_MSI%2C-CMDLINE%29-tf4153410.html#a11817009
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


   
-
Building a website is a piece of cake. 
Yahoo! Small Business gives you all the tools to get online.-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Unable to Pass Parameters via MsiInstallProductW(Path_TO_MSI, CMDLINE)

2007-07-26 Thread Magus

How do I make a property Public?  Or are there only certain public
properties?

Christopher Painter wrote:
 
 Only public properties can be passed via the command line.  Also you
 probably want to set the TRANSFORMS property not the TRANSFORM property.
 
 Magus [EMAIL PROTECTED] wrote:  
 I have a bootstrapper that is suppose to set 2 properties via command
 line,
 however none of the properties that I set in the Cmdline are being set. Is
 there something I am doing wrong?
 
 CMDLINE = PropertyA=18 PropertyB=C:\Temp TRANSFORM=KOREAN.mst
 -- 
 View this message in context:
 http://www.nabble.com/Unable-to-Pass-Parameters-via-MsiInstallProductW%28Path_TO_MSI%2C-CMDLINE%29-tf4153410.html#a11816638
 Sent from the wix-users mailing list archive at Nabble.com.
 
 
 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems? Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now  http://get.splunk.com/
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
 
 

 -
 Pinpoint customers who are looking for what you sell. 
 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
 
 

-- 
View this message in context: 
http://www.nabble.com/Unable-to-Pass-Parameters-via-MsiInstallProductW%28Path_TO_MSI%2C-CMDLINE%29-tf4153410.html#a11817009
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Unable to Pass Parameters via MsiInstallProductW(Path_TO_MSI, CMDLINE)

2007-07-26 Thread Christopher Painter
Only public properties can be passed via the command line.  Also you probably 
want to set the TRANSFORMS property not the TRANSFORM property.

Magus [EMAIL PROTECTED] wrote:  
I have a bootstrapper that is suppose to set 2 properties via command line,
however none of the properties that I set in the Cmdline are being set. Is
there something I am doing wrong?

CMDLINE = PropertyA=18 PropertyB=C:\Temp TRANSFORM=KOREAN.mst
-- 
View this message in context: 
http://www.nabble.com/Unable-to-Pass-Parameters-via-MsiInstallProductW%28Path_TO_MSI%2C-CMDLINE%29-tf4153410.html#a11816638
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


   
-
Looking for a deal? Find great prices on flights and hotels with Yahoo! 
FareChase.-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Unable to Pass Parameters via MsiInstallProductW(Path_TO_MSI, CMDLINE)

2007-07-26 Thread Christopher Painter
Only public properties can be passed via the command line.  Also you probably 
want to set the TRANSFORMS property not the TRANSFORM property.

Magus [EMAIL PROTECTED] wrote:  
I have a bootstrapper that is suppose to set 2 properties via command line,
however none of the properties that I set in the Cmdline are being set. Is
there something I am doing wrong?

CMDLINE = PropertyA=18 PropertyB=C:\Temp TRANSFORM=KOREAN.mst
-- 
View this message in context: 
http://www.nabble.com/Unable-to-Pass-Parameters-via-MsiInstallProductW%28Path_TO_MSI%2C-CMDLINE%29-tf4153410.html#a11816638
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


   
-
Pinpoint customers who are looking for what you sell. -
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Unable to Pass Parameters via MsiInstallProductW(Path_TO_MSI, CMDLINE)

2007-07-26 Thread Magus

I have a bootstrapper that is suppose to set 2 properties via command line,
however none of the properties that I set in the Cmdline are being set.  Is
there something I am doing wrong?

CMDLINE = PropertyA=18 PropertyB=C:\Temp TRANSFORM=KOREAN.mst
-- 
View this message in context: 
http://www.nabble.com/Unable-to-Pass-Parameters-via-MsiInstallProductW%28Path_TO_MSI%2C-CMDLINE%29-tf4153410.html#a11816638
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Unable to Pass Parameters via MsiInstallProductW(Path_TO_MSI, CMDLINE)

2007-07-26 Thread Pierson Lee (Volt)
Public properties in WiX are specified by the fact that the Property Id (the 
name) is all in Caps

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Magus
Sent: Thursday, July 26, 2007 12:02 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Unable to Pass Parameters via 
MsiInstallProductW(Path_TO_MSI, CMDLINE)


How do I make a property Public?  Or are there only certain public
properties?

Christopher Painter wrote:

 Only public properties can be passed via the command line.  Also you
 probably want to set the TRANSFORMS property not the TRANSFORM property.

 Magus [EMAIL PROTECTED] wrote:
 I have a bootstrapper that is suppose to set 2 properties via command
 line,
 however none of the properties that I set in the Cmdline are being set. Is
 there something I am doing wrong?

 CMDLINE = PropertyA=18 PropertyB=C:\Temp TRANSFORM=KOREAN.mst
 --
 View this message in context:
 http://www.nabble.com/Unable-to-Pass-Parameters-via-MsiInstallProductW%28Path_TO_MSI%2C-CMDLINE%29-tf4153410.html#a11816638
 Sent from the wix-users mailing list archive at Nabble.com.


 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems? Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now  http://get.splunk.com/
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users



 -
 Pinpoint customers who are looking for what you sell.
 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users



--
View this message in context: 
http://www.nabble.com/Unable-to-Pass-Parameters-via-MsiInstallProductW%28Path_TO_MSI%2C-CMDLINE%29-tf4153410.html#a11817009
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users