Re: [WiX-users] How to override wix variable value in runtime(via command line)

2012-09-18 Thread Nageswara Rao
Thank you..It worked for me :) -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-override-wix-variable-value-in-runtime-via-command-line-tp7580570p7580613.html Sent from the wix-users mailing list archive at Nabble.com. --

Re: [WiX-users] How to override wix variable value in runtime(via command line)

2012-09-17 Thread Rob Mensching
"variables" in MSI files are called Properties. You can dereference a Property using [PropertyId] but that only works when the column type is Formatted. You can read about "Formatted" in the MSI SDK. On Mon, Sep 17, 2012 at 4:25 AM, Nageswara Rao wrote: > Hi Team, > > I am creating an AppPool fro

Re: [WiX-users] How to override wix variable value in runtime(via command line)

2012-09-17 Thread Castro, Edwin G. (Hillsboro)
You want to use a public property, for example, [APPPOOLNAME]. The WiX authoring looks like this: On the command line you simply specify the value of the public property, APPPOOLNAME, like this: msiexec /i "Path\to\package.msi" APPPOOLNAME=MyAppPoolName Note, that you can use a LaunchConditi

[WiX-users] How to override wix variable value in runtime(via command line)

2012-09-17 Thread Nageswara Rao
Hi Team, I am creating an AppPool from my wix project with the below code Now I want the AppPool Name different for different environments. So, My idea is to create a variable and assign that variable to AppPool Name and when I am calling the MSI from commandline, variable value should be ov