Bonjour,

Je complète suite à une question posée par Laurent à Ingo, à savoir où trouver la signification des différentes propriétés.

Je traduis la réponse d'Ingo :
La plupart des propriétés sont déterminées par l'installeur Windows. Elles incluent ALLUSERS, INSTALLEVEL, TARGETDIR et bien d'autres encore. Une référence à ces propriétés est disponible ici :
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/property_reference.asp

Il y a seulement quelques propriétés que nous définissons pour des tâches spéciales. Elles peuvent être trouvées dans la base "Propriété" de la base de données msi. Et la plupart d'entre elles sont utiles seulement dans les actions de personnalisation de l'installeur Windows, elles sont écrites pour résoudre des tâches spéciales d'installation. SELECT_WORD, SELECT_EXCEL et SELECT_POWERPOINT sont probablement les seules 'nouvelles' propriétés publiques qui peuvent être définies valablement en ligne de commande.

A bientôt
Sophie
Sophie Gautier wrote:
Bonjour,

Voici la réponse à la question de Bruno pour réaliser une installation complète. Le mail original est à la suite.

La propriété INSTALLEVEL doit être supérieure à 100 (qui réalise une installation standard dans laquelle ActiveX par exemple n'est pas installé). Donc pour avoir une installation complète, il faut paramétrer une propriété INSTALLEVEL à 200 et pour avoir toutes les options (genre TestTool, ou exemple de filtres, etc), la paramétrer à 300.

A bientôt
Sophie

-------- Original Message --------
Subject: Re: [installation-dev] Parameters to perfom a standard installation using msiexec
Date: Tue, 14 Mar 2006 12:28:57 +0100
From: Ingo Schmidt <[EMAIL PROTECTED]>
Reply-To: [email protected]
Organization: StarOffice / Sun Microsystems, Inc.
To: [email protected],    [EMAIL PROTECTED]
Newsgroups: openoffice.installation.dev
References: <[EMAIL PROTECTED]>

Hi Sophie,

the IE ActiveX is not installed in a standard installation. The default
value is, that this module is deselected in a custom installation. If
you want a complete installation, you can make this by setting the
property INSTALLLEVEL to a value greater than 200. The modules, that are
not installed in a default installation have an installation level of
200 and the standard INSTALLLEVEL is 100. Only modules with a smaller
installation level are installed. Therefore all modules are installed by
setting

INSTALLLEVEL=300

If you are interested in looking into the msi database, you can do so by
using the freely available Orca. In the table "Feature" you can find the
different level for the modules. In the table "Property" you find the
public properties (written completely in capitol letters).

Greetings

 Ingo


Sophie Gautier wrote:
Hi all,

We are trying to polish the install guide to answer several questions that are asked for large deployments.

We have find that passing those parameters allow to select OOo to open Office doc :
msiexec /qb-! /i openofficeorg20.msi ALLUSERS=1 SELECT_WORD=1
SELECT_EXCEL=1 SELECT_POWERPOINT=1 USERNAME=XXX COMPANYNAME=YYYYY

But, this installation choose to make a custom installation instead of a standard one which :
- change the default comportement of installation wizard
- make this installation uncompleted : for example IE ActiveX is not installed.

Do you know which parameter to change to execute a standard installation containing the default OOo ? We have tried INSTALLATIONTYPE=STANDARD with no effect.

Thanks in advance for your help
Kind regards
Sophie


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Répondre à