Installation silencieuse pour déploiement
En règle générale les installation silencieuses se font via le commutateur « /s » dans le cas d’un executable et avec la commande msiexec /i « package.msi » /q dans le cas d’un msi.
Quelques exemples de commandes permettant de déployer des applications de manière silencieuse via des séquences de tâches SCCM :
Filezilla
FileZilla_3.3.1_win32-setup.exe /S ( attention ! Bien utiliser un S majuscule sinon ca fonctionne pas !!! )
PDF Creator
PDFCreator-0_9_9_setup.exe /verysilent
PDFCreator-0_9_6_setup.exe /verysilent /components=”!toolbar” /tasks=”!desktop_icon” /f (désactive la toolbar et l’icone de bureau à l’installation)
Adobe Acrobat Reader
Méthode simple => AdbeRdr920_en_US.exe /sAll /rs
On peut aussi utiliser le msi : acroread.msi pour l’installation silencieuse :
msiexec.exe /q ALLUSERS=2 /i acroread.msi”
Notepad++
npp.5.9.3.Installer.exe /S ( attention ! Bien utiliser un S majuscule sinon ca fonctionne pas !!! )
JAVA
jre-6u18-windows-x64.exe /s AgreeToLicense=YES IEXPLORER=1 MOZILLA=1 REBOOT=Suppress JAVAUPDATE=0
Supported command argumants from java.com:
ADDLOCAL is either jrecore[,extra][,other_US] or ALL
IEXPLORER=1 indicates that the JRE should be registered with the Internet Explorer browser
NETSCAPE6=1 indicates that the JRE should be registered with Netscape 6 or later browsers
MOZILLA=1 indicates that the JRE should be registered with Mozilla 1.1 and later browsers
INSTALLDIR specifies the drive and path of the installation
REBOOT=Suppress indicates that if locked files are encountered the computer should not be rebooted
JAVAUPDATE=1 indicates that Java Update feature is enabled
EULA=1 indicates that End User License Agreement will be displayed on first use and not during installation
7-Zip
msiexec /i « 7z920-x64.msi » /q
Microsoft Live Messenger Essentials 2011
Il faut télécharger la version complète de l’install ( environ 200Mo !! ) et la commande est la suivante :
wlsetup-all.exe /q /appselect:messenger /NoHome /nosearch /nolaunch /notoolbarCEIP
/q ou /silent pour l’install silencieuse
/appselect:<nom de l’appli> dans notre cas messenger
/nohome pour ne pas rempalcer la page d’accueil du navigateur par la page MSN
/nosearch pour ne pas remplacer le moteur de recherche par Bing
/nolaunch pour ne pas redémarrer messenger après l’installation
/notoolbarCEIP pour ne pas installer la toolbar MSN
0 commentaire