Re: [WiX-users] license agreement in silent installation

2008-11-04 Thread Sébastien Mouren
2008/11/4 Richard <[EMAIL PROTECTED]>: > > In article <[EMAIL PROTECTED]>, >"=?UTF-8?Q?S=C3=A9bastien_Mouren?=" <[EMAIL PROTECTED]> writes: > >> 2008/10/31 Richard <[EMAIL PROTECTED]>: >> > >> > Put in a custom action that forces a failure (type 19 IIRC) when the >> > license agreement propert

Re: [WiX-users] license agreement in silent installation

2008-11-04 Thread Richard
In article <[EMAIL PROTECTED]>, "=?UTF-8?Q?S=C3=A9bastien_Mouren?=" <[EMAIL PROTECTED]> writes: > 2008/10/31 Richard <[EMAIL PROTECTED]>: > > > > Put in a custom action that forces a failure (type 19 IIRC) when the > > license agreement property has not been set. [...] > Please use a stand

Re: [WiX-users] license agreement in silent installation

2008-11-04 Thread shibo
Phil, Thanks for your replies. 1. Our suite has several components, some are command line applications. So displaying the license at the first usage like Acrobat will not work for us. 2. Command line installation will help us auto-testing our installer. It will also enable our customers to do ba

Re: [WiX-users] license agreement in silent installation

2008-11-04 Thread Sébastien Mouren
2008/10/31 Richard <[EMAIL PROTECTED]>: > > In article <[EMAIL PROTECTED]>, >"s zheng" <[EMAIL PROTECTED]> writes: > >> We have a requirement that the license agreement needs to be displayed and >> accepts y/n when installing from command line using msiexec, or use options >> silmilar to LICE

Re: [WiX-users] license agreement in silent installation

2008-11-03 Thread Wilson, Phil
cense agreement in silent installation Hi, this is what I have done, and it works for me. Summary here so that it could be useful for other people. 1. Add a public property 0 2. Add a custom action 3. Add an action EULA = "0" AND NOT Installed Use will need to pass EULA=1, e

Re: [WiX-users] license agreement in silent installation

2008-11-03 Thread shibo
Hi, this is what I have done, and it works for me. Summary here so that it could be useful for other people. 1. Add a public property 0 2. Add a custom action 3. Add an action EULA = "0" AND NOT Installed Use will need to pass EULA=1, else will get an error. This error is o

Re: [WiX-users] license agreement in silent installation

2008-11-03 Thread shibo
Hi, Many thanks for all your replies. Very helpful to me as an a beginner. What is the name of the license property for "Yes, I agree" checbox? Or do I need to create a customised UI license agreement dialog? Code sample will be greatly appreciated. Shibo -- View this message in context: http

Re: [WiX-users] license agreement in silent installation

2008-10-31 Thread Richard
In article <[EMAIL PROTECTED]>, "s zheng" <[EMAIL PROTECTED]> writes: > We have a requirement that the license agreement needs to be displayed and > accepts y/n when installing from command line using msiexec, or use options > silmilar to LICENSE_AGREEMENT="yes" or EULA=1 > > to skip the t

Re: [WiX-users] license agreement in silent installation

2008-10-31 Thread Richard
In article <[EMAIL PROTECTED]>, shibo <[EMAIL PROTECTED]> writes: > guess that I can control the sequence based on this value. The question is > how to display the license in silent installtion mode if the property is not > set ? You don't. You just fail the install with an error code and

Re: [WiX-users] license agreement in silent installation

2008-10-31 Thread Wilson, Phil
ed it. Doesn't the Acrobat Reader do this? Phil Wilson -Original Message- From: s zheng [mailto:[EMAIL PROTECTED] Sent: Friday, October 31, 2008 2:52 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] license agreement in silent installation Hi, We have a requirement that t

Re: [WiX-users] license agreement in silent installation

2008-10-31 Thread shibo
Thanks. I will try abort instead of display the license. -- View this message in context: http://n2.nabble.com/license-agreement-in-silent-installation-tp1402491p1402589.html Sent from the wix-users mailing list archive at Nabble.com. ---

Re: [WiX-users] license agreement in silent installation

2008-10-31 Thread shibo
shibo wrote: > > Hi, > > We have a requirement that the license agreement needs to be displayed and > accepts y/n when installing from command line using msiexec, or use > options > silmilar to LICENSE_AGREEMENT="yes" or EULA=1 to skip the typing of > "y/n". > > Can anyone help how to achiev

Re: [WiX-users] license agreement in silent installation

2008-10-31 Thread Sébastien Mouren
2008/10/31 s zheng <[EMAIL PROTECTED]>: > Hi, > > We have a requirement that the license agreement needs to be displayed and > accepts y/n when installing from command line using msiexec, or use options > silmilar to LICENSE_AGREEMENT="yes" or EULA=1 > > to skip the typing of "y/n". > > Can anyon

[WiX-users] license agreement in silent installation

2008-10-31 Thread s zheng
Hi, We have a requirement that the license agreement needs to be displayed and accepts y/n when installing from command line using msiexec, or use options silmilar to LICENSE_AGREEMENT="yes" or EULA=1 to skip the typing of "y/n". Can anyone help how to achieve this? Thanks, Shibo