Home Guide all'uso... Cos'è l'installazione silenziosa?
Cos'è l'installazione silenziosa?
Quando installate un programma vedrete sempre delle finestre che vi introduco al programma o che vi chiederanno alcune cose: accettazione della licenza, il percorso di installazione, creazione delle scorciatoie, installazione di tool aggiuntivi...

L'installazione silenzionsa è una modalità di installazione dei programmi in cui non c'è interazione con l'utente, quindi tutto quello che siete abituati a fare durante una normale installazione non lo farete più perchè semplicemente non vi apparirà nulla.

C'è da precisare che così facendo il programma si installerà con le impostazioni di default, e cioè:
  • accettazione della licenza
  • il percorso di installazione sarà "C:\Programmi\nomeprogramma\"
  • creazione di scorciatoie
  • installazione dei tool aggiunti
Nota Bene: l'installazione dei tool aggiuntivi si potrà evitare con dei piccoli accorgimenti.


Come si procede?
Per eseguire un’installazione silenziosa, basta eseguire il file di installazione con determinati parametri.
Chiameremo questi parametri “parametri di installazione silenziosa” o semplicemente “parametri di installazione” oppure “switch”.
I più comuni parametri di installazione silenziosa sono “/s”, “/S”, “SILENT”, “silent”, “/qn”…
La scrittura completa del comando da eseguire per ottenere un’installazione silenziosa prende il nome di “sintassi”.
Le più comuni sintassi sono quindi: “setup.exe /s”, “setup.exe /S”, “setup.exe /SILENT”…

Nota Bene:
  1. la sintassi va eseguita senza le virgolette “”
  2. “setup.exe” rappresenta il nome generico del file di installazione del programma
  3. c’è differenza tra le maiuscole e le minuscole
  4. il parametro di installazione deve essere sempre preceduto da uno spazio
Facciamo un esempio.
Se vogliamo installare in modalità silenziosa nLite procederemo così:
  • scaricate il file di installazione dal sito (www.nliteos.com)
  • salvatelo sul desktop
  • aprite l’interfaccia a riga di comando (Start → Esegui → scrivete (senza virgolette) “cmd” → premete “invio”)
Si aprirà una finestra come questa:
posizionatevi sul desktop (scrivete “cd desktop” → premete “invio”)
ora scrivete la sintassi completa da eseguire per l’installazione silenziosa di nLite:
“nLite-1.4.9.1.installer.exe /VERYSILENT” → premete “invio”
Non vedrete apparire nessuna finestra di dialogo, mentre il vostro hard disk inizierà a lavorare, dopo pochi istanti l’installazione avrà termine e vi ritroverete installato nLite.

Come si ricavano i parametri di installazione silenziosa?

Il metodo classico per ricavare i parametri di installazione è quello di utilizzare il comando “/?” (senza virgolette).
La procedura però, non è delle più veloci e non sempre questo comando funziona. Possiamo però utilizzare un comodo strumento (che si integra nel menù contestuale) per la determinazione dei parametri di installazione silenzionsa: CMenu.

Una volta scaricato ed installato CMenu (trovate il link nella sezione “link software”), cliccate con il tasto destro del mouse, sul file di installazione di cui volete conoscere i parametri di installazione silenziosa, scegliete dal menù contestuale "More Options" → "Installer Tools" → "Identify Installer”…
...si aprirà una finestra come questa:
come si potrà vedere il parametro per l'installazione silenziosa è "/VERYSILENT", il che significa che per installare in maniera silenziosa nLite si deve eseguire il comando "nLite-1.4.9.1.installer.exe /VERYSILENT ".

A volte può capitare che CMenu non sia in grado di trovare il parametro di installazione silenziosa, in questo caso si può fare un tentativo procedendo così: cliccate con il tasto destro del mouse sul file di installazione di cui volete conoscere i parametri di installazione silenziosa, scegliete dal menù contestuale "More Options" → "File Managment" → "Execute with Parameters”, si apirà un finestra come questa…
Nella riga “Parameter” scrivete “/?” oppure “/help” (senza virgolette) e cliccate sul pulsante “Execute”. E’ possibile (ma non è una regola) che vi compaia una finestra di dialogo in cui sono elencati tutti i parametri che si possono utilizzare per quel file di installazione.

Nota Bene: questo metodo coincide con quello della riga di comando descritto all’inzio.
Nel caso anche questo metodo non dia risultati si può tentare di estrarre il contenuto del file di installazione e cercare, tra i file estratti, l’eseguibile che avvii l’installazione e che possa essere utilizzato in abbinamento a dei parametri di installazione silenziosa.
Al riguardo, per l’estrazione dei files, è molto valido l’utilizzo di un software come Universal Extractor (trovate il link nella sezione “Link software”).

Quali sono i parametri di installazione?
I parametri variano a seconda del “package installer” cioè da come sono stati “impacchettati” i files di installazione.
I più comuni sono “package installer” sono:
Inno Setup (http://www.jrsoftware.org/isinfo.php)
InstallShield Installers (http://consumer.installshield.com/default.asp)
Nullsoft SuperPiMP Install System (NSIS) (http://nsis.sourceforge.net/Main_Page)
Microsoft Windows Installer (http://it.wikipedia.org/wiki/Windows_Installer)
WISE Installer (http://www.wise.com)

Ad ogni “package installer” corrispondono dei precisi parametri.
Eccovi l’elenco:

Inno Setup ® Installer.

setup.exe /Option

Install Options
    /LOADINF="filename"
        Instructs Setup to load the settings from the specified file after having checked the command line. This file can be prepared using the '/SAVEINF=' command as explained below.
        Don't forget to use quotes if the filename contains spaces.
    /SAVEINF="filename"
        Instructs Setup to save installation settings to the specified file.
        Don't forget to use quotes if the filename contains spaces.
    /LANG=language
        Specifies the language to use. language specifies the internal name of the language as specified in a [Languages] section entry.
        When a valid /LANG parameter is used, the Select Language dialog will be suppressed.
    /DIR="x:\dirname"
        Overrides the default directory name displayed on the Select Destination Location wizard page. A fully qualified pathname must be specified.
    /GROUP="folder name"
        Overrides the default folder name displayed on the Select Start Menu Folder wizard page. If the [Setup] section directive DisableProgramGroupPage was set to yes, this command line parameter is ignored.
    /NOICONS
        Instructs Setup to initially check the Don't create any icons check box on the Select Start Menu Folder wizard page.
    /NOCANCEL
        Prevents the user from cancelling during the installation process, by disabling the Cancel button and ignoring clicks on the close button. Useful along with '/SILENT' or '/VERYSILENT'.
    /COMPONENTS="comma separated list of component names"
        Overrides the default components settings. Using this command line parameter causes Setup to automatically select a custom type.
    /TASKS="comma separated list of task names"
        * Applies to Inno Setup version 5.1.4, and above.
        Specifies a list of tasks that should be initially selected or deselected. To deselect a task, prefix its name with a "!" character.
        Only the specified tasks (and their children) will be selected; the rest will be deselected. Use the /MERGETASKS parameter instead if you want to keep the default set of tasks and only select/deselect some of them.
        Examples:
        Deselect all tasks, then select the "desktopicon" and "fileassoc" tasks:
        /TASKS="desktopicon,fileassoc"
        Deselect all tasks, then select a parent task item, but exclude one of its children:
        /TASKS="parent,!parent\child"
    /MERGETASKS="comma separated list of task names"
        * Applies to Inno Setup version 5.1.4, and above.
        Like the /TASKS parameter, except the specified tasks will be merged with the set of tasks that would have otherwise been selected by default.
        If UsePreviousTasks is set to yes, the specified tasks will be selected/deselected after any previous tasks are restored.
        Examples:
        Keep the default set of selected tasks, but additionally select the "desktopicon" and "fileassoc" tasks:
        /MERGETASKS="desktopicon,fileassoc"
        Keep the default set of selected tasks, but deselect the "desktopicon" task:
        /MERGETASKS="!desktopicon"
    /PASSWORD=password
        Specifies the password to use. If the [Setup] section directive Password was not set, this command line parameter is ignored.
        When an invalid password is specified, this command line parameter is also ignored.
Display Options
    /SP-
        Disables the This will install... Do you wish to continue? prompt at the beginning of Setup. Of course, this will have no effect if the DisableStartupPrompt [Setup] section directive was set to yes.
    /SILENT
    /VERYSILENT
        Instructs Setup to be silent or very silent. When Setup is silent the wizard and the background window are not displayed but the installation progress window is. When a setup is very silent this installation progress window is not displayed. Everything else is normal so for example error messages during installation are displayed and the startup prompt is (if you haven't disabled it with DisableStartupPrompt or the '/SP-' command line option explained above)
        If a restart is necessary and the '/NORESTART' command isn't used (see below) and Setup is silent, it will display a Reboot now? message box. If it's very silent it will reboot without asking.
    /SUPPRESSMSGBOXES
        Instructs Setup to suppress message boxes. Only has an effect when combined with '/SILENT' and '/VERYSILENT'.
        The default response in situations where there's a choice is:
        Yes in a 'Keep newer file?' situation.
        No in a 'File exists, confirm overwrite.' situation.
        Abort in Abort/Retry situations.
        Cancel in Retry/Cancel situations.
        Yes (=continue) in a DiskSpaceWarning/DirExists/DirDoesntExist/NoUninstallWarning/ExitSetupMessage/ConfirmUninstall situation.
        Yes (=restart) in a FinishedRestartMessage/UninstalledAndNeedsRestart situation.
        5 message boxes are not suppressible:
        The About Setup message box.
        The Exit Setup? message box.
        The FileNotInDir2 message box displayed when Setup requires a new disk to be inserted and the disk was not found.
        Any (error) message box displayed before Setup (or Uninstall) could read the command line parameters.
        Any message box displayed by [Code] support function MsgBox.
Restart Options
    /NORESTART
        Instructs Setup not to reboot even if it's necessary.
    /RESTARTEXITCODE=exit code
        Specifies the custom exit code that Setup is to return when a restart is needed. Useful along with '/NORESTART'.
Logging Options
    /LOG
        Causes Setup to create a log file in the user's TEMP directory detailing file installation and [Run] actions taken during the installation process. This can be a helpful debugging aid. For example, if you suspect a file isn't being replaced when you believe it should be (or vice versa), the log file will tell you if the file was really skipped, and why.
        The log file is created with a unique name based on the current date. (It will not overwrite or append to existing files.)
        The information contained in the log file is technical in nature and therefore not intended to be understandable by end users. Nor is it designed to be machine-parseable; the format of the file is subject to change without notice.
    /LOG="filename"
        Same as /LOG, except it allows you to specify a fixed path/filename to use for the log file. If a file with the specified name already exists it will be overwritten. If the file cannot be created, Setup will abort with an error message.
CMenu Options
    AutoIt Usage
        Template AutoIt Script, requires no recording.
        Create the Au3 template script.
        Edit any variables at the start of the script, and and shortcuts, that require deletion.
        Refer to the CMenu Help Guide. It displays sample highlighted items, to edit.
        Compile the script, into an exe, and keep it with the installer.
        Run the compiled exe, to install.
        ;
        If recorded with CMenu, the ProgramName.inf is saved to the installer directory.
    Command line Usage
        Record an installation. Change filenames in command, to suit.
         Setup.exe /SAVEINF="c:\ProgramName.inf"
        The ProgramName.inf is saved to the root of c:\ drive, as to above command.
        But, CMenu record will save the ProgramName.inf to the installer directory.
        To silently install, use:
         Setup.exe /VERYSILENT /SP- /LOADINF="Full Address to\ProgramName.inf"
        You can add more parameters, as required.
        ;
        Or not record the install, and use parameters above, to the commandline.

Installshield ® Archive For Web Installer.

setup.exe /Option

 

Install Options

            /a

                        Add following parameters to the archived setup.exe.

            /f1

                        Recorded file location.

            /p

                        Installer Password.

            /sms

                        Wait command, if second process is spawned.

Display Options

            /s

                        Silent install *.exe.

            /qn

                        Silent install *.msi.

Logging Options

            /f2

                        Log file location.

User Options

            AutoIt Usage

                        The following applies for an InstallShield Web Archive intact. (setup.exe inside)

                        Record an installation with the record button.

                        Setup.iss is saved to your windows directory, but will be copied to the installer directory.

                        Create the AutoIt template script. The setup.iss file must remain with the script until compiled.

                        Edit any variables at the start of the script, and and shortcuts, that require deletion.

                        Refer to the CMenu Help Guide. It displays sample highlighted items, to edit.

                        Compile the script, into an exe, and keep it with the installer.

                        Run the compiled exe, to install.

                        ;

                        The following applies for an InstallShield Web Archive intact. (setup.msi inside)

                        Unpack with WinRAR, then use Identify Installer on the setup.msi file.

                        Create the AutoIt template script.

                        Edit any variables at the start of the script, and and shortcuts, that require deletion.

                        Refer to the CMenu Help Guide. It displays sample highlighted items, to edit.

                        Compile the script, into an exe, and keep it with the installer.

                        Run the compiled exe, to install.

                        ;

                        If you want to repack this archive instead?

                        First unpack the InstallShield Web Archive with WinRar.

                        Then run Identify Installer again.

            Command line Usage

                        The following applies for an InstallShield Web Archive intact. (setup.exe inside)

                        Make a recording of the installer with the switches:

                         PackageName.exe /s /a /r /sms /f1"c:\setup.iss"

                        The setup.iss is saved to the root of c:\ drive, as to above command (default is windows directory).

                        But, CMenu record will save the setup.iss to the installer directory.

                        Rename the setup.iss to something more relevent. e.g. ProgramName.iss

                        Then move the ProgramName.iss to the $OEM$\$$ folder. (or installer directory)

                        To silently install, use:

                         PackageName.exe /s /a /s /sms /f1"c:\windows\ProgramName.iss" /f2"c:\ProgramName.log"

                        ;

                        If you want to repack this archive instead?

                        First unpack the InstallShield Web Archive with WinRar.

                        Then run Identify Installer again.

Nullsoft ® Installer

setup.exe /Option

(All switches MUST be upper case. No double quotes)

 

Install Options

            /D=x:\dirname

                        Install program to path.

            /NCRC

                        Skip CRC check.

Display Options

            /S

                        Silent mode.

CMenu Options

            AutoIt Usage

                        Create the Au3 template script.

                        Edit any variables at the start of the script, and add shortcuts, that require deletion.

                        Refer to the CMenu Help Guide. It displays sample highlighted items, to edit.

                        Compile the script, into an exe, and keep it with the installer.

                        Run the compiled exe, to install.

            Command line Usage

                        To silently install, use the switch:

 

                        Setup.exe /S


Windows ® Installer. Versione 3.01.4000.1823

 

msiexec /Opzione <Parametro obbligatorio> [Parametro facoltativo]

 

Opzioni di installazione

            </package | /i> <Prodotto.msi>

                        Installa o configura un prodotto

            /a <Prodotto.msi>

                        Installazione amministrativa: installa un prodotto nella rete

            /j<u|m> <Prodotto.msi> [/t <Elenco trasformazioni>] [/g <ID lingua>]

                        Annuncia un prodotto: m a tutti gli utenti, u all'utente corrente

            </uninstall | /x> <Prodotto.msi | Codice prodotto>

                        Disinstalla il prodotto

Opzioni di visualizzazione

            /quiet

                        Modalità non interattiva, nessuna interazione con l'utente

            /passive

                        Modalità automatica: solo barra di stato

            /q[n|b|r|f]

                        Imposta il livello dell'interfaccia utente

                        n - nessuna interfaccia utente

                        b - interfaccia di base

                        r - interfaccia ridotta

                        f - interfaccia completa (predefinita)

            /help

                        Guida in linea

Opzioni di riavvio

            /norestart

                        Non riavvia al completamento dell'installazione

            /promptrestart

                        Chiede conferma per il riavvio se necessario

            /forcerestart

                        Riavvia sempre il computer dopo l'installazione

Opzioni di registrazione

            /l[i|w|e|a|r|u|c|m|o|p|v|x|+|!|*] <FileRegistro>

                        i - messaggi di stato

                        w - avvisi di errori non gravi

                        e - tutti i messaggi di errore

                        a - avvio di azioni

                        r - record specifici di azioni

                        u - richieste utente

                        c - parametri interfaccia utente iniziali

                        m - informazioni errori irreversibili o da memoria insufficiente

                        o - messaggi spazio su disco insufficiente

                        p - proprietà terminale

                        v - output dettagliato

                        x - informazioni di debug aggiuntive

                        + - aggiunge al file di registro esistente

                        ! - scarica ciascuna riga nel registro

                        * - registra tutte le informazioni tranne quelle da opzioni v, x

            /log <FileRegistro>

                        Equivalente a /l* <FileRegistro>

Opzioni di aggiornamento

            /update <Aggiornamento1.msp>[;Aggiornamento2.msp]

                        Applica aggiornamento/i

            /uninstall <GuidCodicePatch>[;Aggiornamento2.msp] /package <Prodotto.msi

                                   | CodiceProdotto>

                        Rimuove aggiornamento/i per un prodotto

Opzioni di ripristino

            /f[p|e|c|m|s|o|d|a|u|v] <Prodotto.msi | CodiceProdotto>

                        Ripristina un prodotto

                        p - solo se il file è mancante

                        o - se il file è mancante o è installata una versione precedente

                                    (predefinita)

                        e - se il file è mancante o è installata una versione uguale o

                                   precedente (predefinita)

                        d - se il file è mancante o è installata una versione diversa

                        c - se il file è mancante o il checksum non corrisponde al valore

                                   calcolato

                        a - impone la reinstallazione di tutti i file

                        u - tutte le voci del Registro di sistema specifiche degli utenti

                                   obbligatorie (predefinita)

                        m - tutte le voci del Registro di sistema specifiche dei computer

                                   obbligatorie (predefinita)

                        s - tutti i collegamenti esistenti (predefinita)

                        v - esegue dall'origine e memorizza nuovamente nella cache il

                                   pacchetto locale

Impostazione proprietà pubbliche

            [PROPERTY=ValoreProprietà]

 

Consultare Windows ® Installer SDK per documentazione aggiuntiva sulla

sintassi della riga di comando.

 

Copyright © Microsoft Corporation. Tutti i diritti riservati.

Alcune parti di questo software sono basate parzialmente sul lavoro dell'Independent JPEG Group.

 

CMenu Options

            AutoIt Usage

                        Create the Au3 template script.

                        Edit any variables at the start of the script, and add shortcuts, that require deletion.

                        Refer to the CMenu Help Guide. It displays sample highlighted items, to edit.

                        Compile the script, into an exe, and keep it with the installer.

                        Run the compiled exe, to install.

            Command line Usage

                        To silently install, use:

                         msiexec /i setup.msi /qn

Wise Installer

Setup.exe  /Option

(No double quotes)

Install Options
    /T
        Test mode
    /X
        Pathname extracts files into pathname
    /Z
        Pathname extracts files into pathname and reboots
    /M
        Prompts for windows, system, temp dirs
    /M=filename
        Specifies a value file, but for standard variables
    /M1
        Same as /m plus it prompts before any file that is self-registered
    /M2
        Reserved for internal use by Wise during debugger sessions
Display Options
    /S
        Silent mode.
Uninstall Options
    /Z
        Remove empty directories, including one with unwise itself in it.
    /A
        Automatic mode, no user choices other than cancel.
    /S
        Silent mode, automatic mode with no user choices
    /R
        Rollback mode, selects option to rollback on uninstall
    /U
        Like automatic mode, but gives all choices other than custom/automatic title window title can be at the end of the command line.
CMenu Options
    AutoIt Usage
        Create the Au3 template script.
        Edit any variables at the start of the script, and add shortcuts, that require deletion.
        Refer to the CMenu Help Guide. It displays sample highlighted items, to edit.
        Compile the script, into an exe, and keep it with the installer.
        Run the compiled exe, to install.
    Command line Usage
        To silently install, use the switch:
         Setup.exe /S



 
Creative Commons License
Questo/a opera è pubblicato sotto una Licenza Creative Commons.