Re: [WiX-users] Custom command line parameters in Wix

2008-02-14 Thread Bob Arnson
Srilatha Punna wrote: Yes, this is how I got it working but my requirement was to have just command line switch -AUTOLOGIN instead of a property. So I wanted to know if there is a way we can do that. No, not from the MSI package. -- sig://boB http://joyofsetup.com/ --

Re: [WiX-users] Custom command line parameters in Wix

2008-02-14 Thread Richard
In article <[EMAIL PROTECTED]>, "Srilatha Punna" <[EMAIL PROTECTED]> writes: > Yes, this is how I got it working but my requirement was to have just = > command line switch -AUTOLOGIN instead of a property. So I wanted to = > know if there is a way we can do that. Not without your own custo

Re: [WiX-users] Custom command line parameters in Wix

2008-02-14 Thread Srilatha Punna
son' Cc: wix-users@lists.sourceforge.net Sent: Thursday, February 14, 2008 1:43 PM Subject: RE: [WiX-users] Custom command line parameters in Wix You can set properties on the command line. Msiexec /i MyMsi.msi AUTOLOGIN=1 Then test the AUTOLOGIN property as appr

Re: [WiX-users] Custom command line parameters in Wix

2008-02-14 Thread Mike Dimmick
Sent: 14 February 2008 17:14 To: Bob Arnson Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Custom command line parameters in Wix Run time, some thing like msiexec /i MyExe.exe -AUTOLOGIN - Original Message - From: Bob Arnson <mailto:[EMAIL PROTECTED]> To: Sr

Re: [WiX-users] Custom command line parameters in Wix

2008-02-14 Thread Srilatha Punna
Run time, some thing like msiexec /i MyExe.exe -AUTOLOGIN - Original Message - From: Bob Arnson To: Srilatha Punna Cc: wix-users@lists.sourceforge.net Sent: Wednesday, February 13, 2008 6:47 PM Subject: Re: [WiX-users] Custom command line parameters in Wix Srilatha

Re: [WiX-users] Custom command line parameters in Wix

2008-02-13 Thread Bob Arnson
Srilatha Punna wrote: Can we write custom command line switches in Wix? Here's my scenario. I want to have an optional switch -AUTOLOGIN in the command line, then evaluate if the switch is specified in Wix xml. Any help on this appreciated. Are you asking about build-time properties or ru

[WiX-users] Custom command line parameters in Wix

2008-02-12 Thread Srilatha Punna
Hi, Can we write custom command line switches in Wix? Here's my scenario. I want to have an optional switch -AUTOLOGIN in the command line, then evaluate if the switch is specified in Wix xml. Any help on this appreciated. Thanks, Sri ---