Re: [WiX-users] Burn command line parameters

2013-04-16 Thread Steven Ogilvie
Windows Installer XML toolset. Subject: Re: [WiX-users] Burn command line parameters Sorry, thought that part was working. Did you add bal:Overridable='yes' to the MYVAR Variable definition? On Tue, Apr 16, 2013 at 8:34 AM, Steven Ogilvie wrote: > No it is only for install time... In the

Re: [WiX-users] Burn command line parameters

2013-04-16 Thread Rob Mensching
Permanent="no" > > Vital="yes"> > > > > > > Thanks, > > Steve > > -Original Message- > From: Rob Mensching [mailto:r...@robmensching.com] > Sent: April-16-13 11:19 AM > To: Genera

Re: [WiX-users] Burn command line parameters

2013-04-16 Thread Steven Ogilvie
gt; Permanent="no" > Vital="yes"> > > Thanks, Steve -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: April-16-13 11:19 AM To: General discussion for Windows In

Re: [WiX-users] Burn command line parameters

2013-04-16 Thread Rob Mensching
Do you want the MYVAR Burn Variable to be saved after the initial install? If so add Persist='yes' to the Variable definition of MYVAR. Otherwise, it will be reset every time the Bundle runs. On Tue, Apr 16, 2013 at 8:03 AM, StevenOgilvie wrote: > I am trying the same thing and I don't understa

Re: [WiX-users] Burn command line parameters

2013-04-16 Thread StevenOgilvie
I am trying the same thing and I don't understand your response :( I am doing MyBurnEXE.exe MYVAR=Something Then in the MSIPackage: In the burn/bootstrapper log file I see cmdline: 'MYVAR=Something blah blah...' so I know it is being picked up, But later on in burn/boot

Re: [WiX-users] Burn command line parameters

2012-02-27 Thread Bob Arnson
On 27-Feb-12 15:57, David L. Beckwith wrote: > MyBA.exe WIN8=1 > > and > > > > How do I get it into Value? The command line is passed to the BA in the command (BOOTSTRAPPER_COMMAND.wzCommandLine in C++). -- sig://boB http://joyofsetup.com/ -

Re: [WiX-users] Burn command line parameters

2012-02-27 Thread David L. Beckwith
Tried that with no luck. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Burn-command-line-parameters-tp7323306p7323422.html Sent from the wix-users mailing list archive at Nabble.com.

Re: [WiX-users] Burn command line parameters

2012-02-27 Thread Romeo S.
Hi David, Have you tried changing the value into a variable instead of static value? Cheers, Romeo -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Burn-command-line-parameters-tp7323306p7323393.html Sent from the wix-users mailing list archive at

[WiX-users] Burn command line parameters

2012-02-27 Thread David L. Beckwith
I think I understand that standard command line parameters that MSI support are automatically passed to each package in the bootstrap application. And it sounds like others can be passed but I need to specifically add it to the MsiProperty. However, I'm not clear how to do this. Here is my example