Re: [WiX-users] License agreement dialog does not display the license agreement text

2011-04-07 Thread faxedhead
Thanks, opening and saving-as in WordPad worked for me. 

--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/License-agreement-dialog-does-not-display-the-license-agreement-text-tp5560514p6252248.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Xperia(TM) PLAY
It's a major breakthrough. An authentic gaming
smartphone on the nation's most reliable network.
And it wants your games.
http://p.sf.net/sfu/verizon-sfdev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] License Agreement

2010-10-22 Thread David Amey
Hi Blair,

My apologies for not replying.

Thankyou for this, I believe having external files for the license makes
things a lot simpler, and its easier to implement too!

Thanks again,

Dave

-Original Message-
From: Blair [mailto:os...@live.com] 
Sent: 15 October 2010 18:34
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] License Agreement

It's possible that whitespace isn't being preserved when parsing the
content of the Text element. I don't know if adding xml:preserve
attributes (or some other xml: attribute) will fix that or not.

IIRC what some of us have done for localizing license agreements UI is
to do the following: layout the localized RTF files in some consistent
fashion in the filesystem, and use either a "WixVariable" or a
localization variable to supply the variable part of the path to the
files. Something like this:

 Or 

-Original Message-
From: David Amey [mailto:da...@creative-engine.co.uk]
Sent: Friday, October 15, 2010 2:39 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] License Agreement

Thanks for this Blair,

Made it much easier to replace the standard dialog.

I am still having an issue though I'm afraid.

Basically I'm using a localised string to populate the scrollable text.
However the text doesn't appear when running the msi. Here is the
control snippet:


!(loc.License_Agreement)


I found an example in the tutorial, so I applied the following:


{\rtf1\ansi\ansicpg1252\deff0\deftab720
{\fonttbl{\f0\froman\fprq2 Times New Roman;}}
{\colortbl\red0\green0\blue0;}
\deflang1033\horzdoc{\*\fchars }{\*\lchars }
\pard\plain\f0\fs20
!(loc.License_Agreement)\par
}


This makes the text appear when running the msi, but all the text is
squashed together, and loses line breaks enter in the localisation file.
I understand the font application from the code above, but not sure what
the rest is doing...

If anyone can shed some light on this I would greatly appreciate it.

Thanks again!

Dave

-Original Message-
From: Blair [mailto:os...@live.com]
Sent: 12 October 2010 23:47
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] License Agreement

Follow the recommendations elsewhere on how to replace/alter a dialog
provided by the toolset, copying the license dialog, and remove the
SourceFile attribute of the Text element that is the child of the
"ScrollableText" type-control, and make the text of the Text element be
your literal RTF.

-Original Message-
From: David Amey [mailto:da...@creative-engine.co.uk]
Sent: Tuesday, October 12, 2010 1:54 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] License Agreement

Hi everybody,

 

Was wondering if there is a way to populate the standard 'license
Agreement' dialog with a string in a 'wxl' file, instead of the rtf?

 

Thanks!

David Amey
The Creative Engine Ltd
Almac House, Church Lane, Bisley, Surrey, GU24 9DR
T: +44 (0)1483 799200  F: +44 (0)1483 799111

 



--
Beautiful is writing same markup. Internet Explorer 9 supports standards
for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Beautiful is writing same markup. Internet Explorer 9 supports standards
for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Download new Adobe(R) Flash(R) Builder(TM) 4 The new Adobe(R) Flex(R) 4
and Flash(R) Builder(TM) 4 (formerly
Flex(R) Builder(TM)) enable the development of rich applications that
run across multiple browsers and platforms. Download your free trials
today!
http://p.sf.net/sfu/adobe-dev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Download new Adobe(R) Flash(R) Builder(TM) 

Re: [WiX-users] License Agreement

2010-10-18 Thread Nick Ramirez

At first, you were using:

!(loc.License_Agreement) 

which uses a localization variable. You then switched to placing all of the
RTF content inline. Did you mean to do that? Or did you still want to use
the localization variable? If so, you can put the RTF data in your .wxl
file, such as:





And continue to just use the variable name in the .wxs file. It may help to
use CDATA tags too.
-- 
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/License-Agreement-tp5625907p5647718.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download new Adobe(R) Flash(R) Builder(TM) 4
The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly 
Flex(R) Builder(TM)) enable the development of rich applications that run
across multiple browsers and platforms. Download your free trials today!
http://p.sf.net/sfu/adobe-dev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] License Agreement

2010-10-15 Thread Blair
It's possible that whitespace isn't being preserved when parsing the content
of the Text element. I don't know if adding xml:preserve attributes (or some
other xml: attribute) will fix that or not.

IIRC what some of us have done for localizing license agreements UI is to do
the following: layout the localized RTF files in some consistent fashion in
the filesystem, and use either a "WixVariable" or a localization variable to
supply the variable part of the path to the files. Something like this:


Or


-Original Message-
From: David Amey [mailto:da...@creative-engine.co.uk] 
Sent: Friday, October 15, 2010 2:39 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] License Agreement

Thanks for this Blair,

Made it much easier to replace the standard dialog.

I am still having an issue though I'm afraid.

Basically I'm using a localised string to populate the scrollable text.
However the text doesn't appear when running the msi. Here is the
control snippet:


!(loc.License_Agreement)


I found an example in the tutorial, so I applied the following:


{\rtf1\ansi\ansicpg1252\deff0\deftab720
{\fonttbl{\f0\froman\fprq2 Times New Roman;}}
{\colortbl\red0\green0\blue0;}
\deflang1033\horzdoc{\*\fchars }{\*\lchars }
\pard\plain\f0\fs20
!(loc.License_Agreement)\par
}


This makes the text appear when running the msi, but all the text is
squashed together, and loses line breaks enter in the localisation file.
I understand the font application from the code above, but not sure what
the rest is doing...

If anyone can shed some light on this I would greatly appreciate it.

Thanks again!

Dave

-Original Message-
From: Blair [mailto:os...@live.com] 
Sent: 12 October 2010 23:47
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] License Agreement

Follow the recommendations elsewhere on how to replace/alter a dialog
provided by the toolset, copying the license dialog, and remove the
SourceFile attribute of the Text element that is the child of the
"ScrollableText" type-control, and make the text of the Text element be
your literal RTF.

-Original Message-
From: David Amey [mailto:da...@creative-engine.co.uk]
Sent: Tuesday, October 12, 2010 1:54 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] License Agreement

Hi everybody,

 

Was wondering if there is a way to populate the standard 'license
Agreement' dialog with a string in a 'wxl' file, instead of the rtf?

 

Thanks!

David Amey
The Creative Engine Ltd
Almac House, Church Lane, Bisley, Surrey, GU24 9DR
T: +44 (0)1483 799200  F: +44 (0)1483 799111

 



--
Beautiful is writing same markup. Internet Explorer 9 supports standards
for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Beautiful is writing same markup. Internet Explorer 9 supports standards
for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Download new Adobe(R) Flash(R) Builder(TM) 4
The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly 
Flex(R) Builder(TM)) enable the development of rich applications that run
across multiple browsers and platforms. Download your free trials today!
http://p.sf.net/sfu/adobe-dev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Download new Adobe(R) Flash(R) Builder(TM) 4
The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly 
Flex(R) Builder(TM)) enable the development of rich applications that run
across multiple browsers and platforms. Download your free trials today!
http://p.sf.net/sfu/adobe-dev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] License Agreement

2010-10-15 Thread David Amey
Thanks for this Blair,

Made it much easier to replace the standard dialog.

I am still having an issue though I'm afraid.

Basically I'm using a localised string to populate the scrollable text.
However the text doesn't appear when running the msi. Here is the
control snippet:


!(loc.License_Agreement)


I found an example in the tutorial, so I applied the following:


{\rtf1\ansi\ansicpg1252\deff0\deftab720
{\fonttbl{\f0\froman\fprq2 Times New Roman;}}
{\colortbl\red0\green0\blue0;}
\deflang1033\horzdoc{\*\fchars }{\*\lchars }
\pard\plain\f0\fs20
!(loc.License_Agreement)\par
}


This makes the text appear when running the msi, but all the text is
squashed together, and loses line breaks enter in the localisation file.
I understand the font application from the code above, but not sure what
the rest is doing...

If anyone can shed some light on this I would greatly appreciate it.

Thanks again!

Dave

-Original Message-
From: Blair [mailto:os...@live.com] 
Sent: 12 October 2010 23:47
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] License Agreement

Follow the recommendations elsewhere on how to replace/alter a dialog
provided by the toolset, copying the license dialog, and remove the
SourceFile attribute of the Text element that is the child of the
"ScrollableText" type-control, and make the text of the Text element be
your literal RTF.

-Original Message-
From: David Amey [mailto:da...@creative-engine.co.uk]
Sent: Tuesday, October 12, 2010 1:54 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] License Agreement

Hi everybody,

 

Was wondering if there is a way to populate the standard 'license
Agreement' dialog with a string in a 'wxl' file, instead of the rtf?

 

Thanks!

David Amey
The Creative Engine Ltd
Almac House, Church Lane, Bisley, Surrey, GU24 9DR
T: +44 (0)1483 799200  F: +44 (0)1483 799111

 



--
Beautiful is writing same markup. Internet Explorer 9 supports standards
for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Beautiful is writing same markup. Internet Explorer 9 supports standards
for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Download new Adobe(R) Flash(R) Builder(TM) 4
The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly 
Flex(R) Builder(TM)) enable the development of rich applications that run
across multiple browsers and platforms. Download your free trials today!
http://p.sf.net/sfu/adobe-dev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] License Agreement

2010-10-12 Thread Blair
Follow the recommendations elsewhere on how to replace/alter a dialog
provided by the toolset, copying the license dialog, and remove the
SourceFile attribute of the Text element that is the child of the
"ScrollableText" type-control, and make the text of the Text element be your
literal RTF.

-Original Message-
From: David Amey [mailto:da...@creative-engine.co.uk] 
Sent: Tuesday, October 12, 2010 1:54 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] License Agreement

Hi everybody,

 

Was wondering if there is a way to populate the standard 'license
Agreement' dialog with a string in a 'wxl' file, instead of the rtf?

 

Thanks!

David Amey
The Creative Engine Ltd
Almac House, Church Lane, Bisley, Surrey, GU24 9DR
T: +44 (0)1483 799200  F: +44 (0)1483 799111

 


--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] License agreement dialog does not display the license agreement text

2010-09-22 Thread Bruce Cran
On Wed, 22 Sep 2010 12:52:57 -0700
Lena Vinogradov  wrote:

> When License agreement dialog is displayed the entire text of the
> license agreement rtf file is missing and it only appears after I
> touch the scroll bar on the right.

I think this happens if you have 'advanced' RTF content in the file.
When it happened to me I found opening it in WordPad and doing a "Save
As", overwriting the original file solved the problem.

-- 
Bruce Cran

--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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 property has not been set.
>
> [...]
>
>> Please use a standard action instead of a custom action:
>> its easier to debug to maintain etc...
>
> I don't think you understand.  A type 19 custom action is just a row in
> the CustomAction table that specifies an error message.  There is no
> debugging or maintenance.

Yes I do.
Isn"t it simpler to use LauchCondition standard action with a
confition on the property, is it?
By the way it also shorter.

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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 standard action instead of a custom action:
> its easier to debug to maintain etc...

I don't think you understand.  A type 19 custom action is just a row in
the CustomAction table that specifies an error message.  There is no
debugging or maintenance.


-- 
"The Direct3D Graphics Pipeline" -- DirectX 9 draft available for download
  

Legalize Adulthood! 

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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 batch installation on many machines
overnight.
3. Given this EULA flag, we are going to provide a printout  and a website
for them to read the license first.

Regards, shibo

-- 
View this message in context: 
http://n2.nabble.com/license-agreement-in-silent-installation-tp1402491p1453704.html
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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  LICENSE_AGREEMENT="yes" or EULA=1
>> 
>> to skip the typing of "y/n".
>>
>> Can anyone help how to achieve this?
>
> Put in a custom action that forces a failure (type 19 IIRC) when the
> license agreement property has not been set.
>
> Have your UI license agreement dialog set the property when they click
> "Yes, I agree".
>
> Make the license agreement property public so it can be set from the
> command-line.
> --

Please use a standard action instead of a custom action:
its easier to debug to maintain etc...

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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

2008-11-03 Thread Wilson, Phil
I hope you're not expecting people to agree to it without providing some way 
for them to read it first!

Phil Wilson

-Original Message-
From: shibo [mailto:[EMAIL PROTECTED]
Sent: Monday, November 03, 2008 7:37 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] license 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, else will get an error. This error is only
available in the log file.
msiexec /qn /i rvct6.msi EULA=1


--
View this message in context: 
http://n2.nabble.com/license-agreement-in-silent-installation-tp1402491p1449901.html
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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 only
available in the log file.
msiexec /qn /i rvct6.msi EULA=1


-- 
View this message in context: 
http://n2.nabble.com/license-agreement-in-silent-installation-tp1402491p1449901.html
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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://n2.nabble.com/license-agreement-in-silent-installation-tp1402491p1448968.html
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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 typing of "y/n".
> 
> Can anyone help how to achieve this?

Put in a custom action that forces a failure (type 19 IIRC) when the
license agreement property has not been set.

Have your UI license agreement dialog set the property when they click
"Yes, I agree".

Make the license agreement property public so it can be set from the
command-line.
-- 
"The Direct3D Graphics Pipeline" -- DirectX 9 draft available for download
  

Legalize Adulthood! 

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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 the
message for that error code says that they must agree to the license.
-- 
"The Direct3D Graphics Pipeline" -- DirectX 9 draft available for download
  

Legalize Adulthood! 

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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

2008-10-31 Thread Wilson, Phil
Sometimes it works better to display the EULA at first run of the app. This 
gets around silent install issues, some scenarios where the install is pushed 
to client machines, and the person that agrees to the EULA is the person who's 
actually going to use it, not the person who installed 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 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
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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.


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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 achieve this?
> 
> Thanks,
> 
> Shibo
> 
> 

Further googling, LICENSE_AGREEMENT or EULA can be a property in .msi, I
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 ?

Thanks, Shibo

-- 
View this message in context: 
http://n2.nabble.com/license-agreement-in-silent-installation-tp1402491p1402584.html
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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 anyone help how to achieve this?
>
> Thanks,
>
> Shibo

I haven't tried it myself
But you could play with the UILevel property. From what I read you
cannot change it while the msiexec executes, but you could use it to
condition your setup behavior (abort).
Other prospect for this case is to use an external UI handler for your
setup (in a boostrapper) or launch the EULA from your apps on first
run.

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users