Install.bat installation silencieuse

Fermé
choubaka71 Messages postés 14 Date d'inscription vendredi 11 mai 2007 Statut Membre Dernière intervention 30 décembre 2008 - 30 déc. 2008 à 17:51
j3r3my_ultra Messages postés 40 Date d'inscription vendredi 17 février 2012 Statut Membre Dernière intervention 29 décembre 2014 - 23 janv. 2013 à 15:54
Bonjour,

Comment faire si je ne trouve pas les commutateurs pour les programmes avast, ccleaner et ad-aware.

Je voudrai faire un script batch qui installe les 3 programmes à la suite sans l'intervention de l'utilisateur en déployant seulement mon fichier bat.

Merci à vous
A voir également:

3 réponses

si ça peut t'aider voici celui que j'ai fais mais ça date....
@echo off
echo ::::::::::::::::::::::::::::::::::::::::::::::::
echo :: INSTALLATION AUTOMATIQUE::
echo ::::::::::::::::::::::::::::::::::::::::::::::::
echo.
echo ===========================================
echo WINDOWS XP SP2 + LOGICIELS
echo ===========================================
echo.
echo.
@echo off
echo Installation de firefox 2 en cours alors patiente ;-)
start /wait %systemdrive%\Apps\internet\firefox\firefox.exe /S
echo.

@echo off
echo Installation de emule en cours alors patiente ;-)
start /wait %systemdrive%\Apps\internet\telechargement\emule\eMule0.47c-Installer.exe /S
echo.

@echo off
echo Installation de filezilla en cours alors patiente ;-)
start /wait %systemdrive%\Apps\internet\filezilla\FileZilla_2_2_29_setup.exe /S
echo.

@echo off
echo Installation de thunderbird en cours alors patiente ;-)
start /wait %systemdrive%\Apps\e-mail\thunderbird\thunderbird.exe -ms
echo.

@echo off
echo Installation de Open Office en cours alors patiente ;-)
start /wait %systemdrive%\Apps\bureautique\open-office\OOo_2.1.0_Win32Intel_install_fr.exe /S
echo.

@echo off
echo Installation de PDF creator en cours alors patiente ;-)
start /wait %systemdrive%\Apps\bureautique\pdf\pdfcreator\zPDFCreator-0_9_3-AD_DeploymentPackage-WithoutToolbar.msi /quiet /qn /norestart
echo.

@echo off
echo Installation de VLC media player en cours alors patiente ;-)
start /wait %systemdrive%\Apps\multimedia\lecteurs\vlc\vlc-0.8.6-win32.exe /S
echo.

@echo off
echo Installation de audacity en cours alors patiente ;-)
start /wait %systemdrive%\Apps\multimedia\audio\audacity\audacity-win-1.2.6.exe /VERYSILENT /SP
echo.

@echo off
echo Installation de Avast antivirus edition familliale en cours alors patiente ;-)
start /wait %systemdrive%\Apps\securite\antivirus\avast\setupfre.exe /VERYSILENT /SP
echo.

@echo off
echo Installation de ad-aware en cours alors patiente ;-)
start /wait %systemdrive%\Apps\securite\antis-spyware\adaware\aawsepersonal.exe /s
echo.

@echo off
echo Installation de spybot shearch and destroy en cours alors patiente ;-)
start /wait %systemdrive%\Apps\securite\antis-spyware\spybot\spybotsd14.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-
echo.

@echo off
echo Installation de kerio personal firewall en cours alors patiente ;-)
start /wait %systemdrive%\Apps\securite\pare-feu\kerio\kerio.exe /s /v"/qn REBOOT=Suppress"
echo.

@echo off
echo Installation de quickzip en cours alors patiente ;-)
start /wait %systemdrive%\Apps\compression-decompression\quickzip\quickzip.exe /VERYSILENT /SP
echo.

@echo off
echo Installation de The Gimp en cours alors patiente ;-)
start /wait %systemdrive%\Apps\graphique\retouche\gimp.exe /VERYSILENT /SP
echo.

@echo off
echo Installation de Fastone screen capture en cours alors patiente ;-)
start /wait %systemdrive%\Apps\graphique\capture-d'ecran\fsc.exe /S
echo.

@echo off
echo Installation de Everest home edition en cours alors patiente ;-)
start /wait %systemdrive%\Apps\systeme\everest\everesthome220.exe /VERYSILENT /SP
echo.

@echo off
echo Installation de ccleaner en cours alors patiente ;-)
start /wait %systemdrive%\Apps\entretien-windows\ccleaner\ccsetup136.exe /S
echo.
echo (-;...ça y est c'est fini... ;-)
echo.
EXIT
16
Bonjour, J'aimerais si possible que tu me fasse la commande avec Firefox et d'autre mais a partir d'un dossier sur mon bureau
Merci Romain .
0
kaumune Messages postés 22542 Date d'inscription lundi 26 novembre 2007 Statut Contributeur Dernière intervention 17 décembre 2024 5 092
5 déc. 2011 à 09:36
les parametres pour firefox sont -ms -ira

donc si ton fichier d'install s'appelle firefox.exe ça donne firefox.exe -ms -ira

si le dossier, sur ton bureau, contenant cet exe se nomme firefox ça donne :

%userprofile%\bureau\firefox\firefox.exe -ms -ira
0
Salut

Désolé pour la remontée de post.

les parametres pour firefox sont -ms -ira

Que veulent dire "-ms" et "-ira" ? C'est spécifique à Firefox ? Comment trouver ces paramètres ?

Merci.

++
0