Bonjour je voudrais savoir si il est possible de faire une installation silencieuse sur un autre disque dur que sur c:?
Car pour l'instant quand je lance mon scritp batch il instal mes logiciel sur C: et je voudrai les avoir sur D: .
Si oui comment devrai-je faire je debute en commande batch.
voici mon srcipt :
@ECHO OFF
CLS
:MENU
CLS
ECHO ============= MENU NAME =============
ECHO -------------------------------------
ECHO 1. Instal de Firefox et Thunderbird
ECHO 2. Instal de VLC
ECHO 3. Instal de 7-zip
ECHO 4. Instal de Ccleaner
ECHO 5. Instal de Acrobat Reader
ECHO 6. Instal de Open Office
ECHO 7. Instal de Avast
ECHO 8. Instal de WLM 2011
ECHO -------------------------------------
ECHO 9. Instal de tous les logiciels
ECHO -------------------------------------
ECHO ==========PRESS 'Q' TO QUIT==========
ECHO.
SET INPUT=
SET /P INPUT=Please select a number:
IF /I '%INPUT%'=='1' GOTO Selection1
IF /I '%INPUT%'=='2' GOTO Selection2
IF /I '%INPUT%'=='3' GOTO Selection3
IF /I '%INPUT%'=='4' GOTO Selection4
IF /I '%INPUT%'=='5' GOTO Selection5
IF /I '%INPUT%'=='6' GOTO Selection6
IF /I '%INPUT%'=='7' GOTO Selection7
IF /I '%INPUT%'=='8' GOTO Selection8
IF /I '%INPUT%'=='9' GOTO Selection9
IF /I '%INPUT%'=='Q' GOTO Quit
CLS
ECHO ============INVALID INPUT============
ECHO -------------------------------------
ECHO Please select a number from the Main
echo Menu [1-9] or select 'Q' to quit.
ECHO -------------------------------------
ECHO ======PRESS ANY KEY TO CONTINUE======
PAUSE > NUL
GOTO MENU
:Selection1
@echo off
echo.
echo ...... Installation Firefox ......
rem lancement installation silencieuse de firefox
start /wait firefox.exe -ms -ira
echo.
echo ...... Installation Thunderbird ......
rem attente puis installation silencieuse Thunderbird
start /wait thunderbird.exe -ms -ira
echo.
echo .. Insatallation de Firefox et thunderbird terminer ..
ECHO.
ECHO -----------------------------------------
ECHO APPUI SUR UNE TOUCHE POUR RETOUR MENU
ECHO -----------------------------------------
PAUSE > NUL
GOTO MENU
:Selection2
@echo off
echo.
echo ...... Installation de VLC ......
rem lancement installation silencieuse de VLC
vlc.exe -y /q /r:n /S
echo.
echo .. Installation de VLC terminer ..
ECHO.
ECHO -----------------------------------------
ECHO APPUI SUR UNE TOUCHE POUR RETOUR MENU
ECHO -----------------------------------------
PAUSE > NUL
GOTO MENU
:Selection3
@echo off
echo.
echo ...... Installation 7-Zip ......
rem lancement installation silencieuse 7-Zip
7zip.exe /S
echo.
echo .. Installation de 7-zip terminer ..
ECHO.
ECHO -----------------------------------------
ECHO APPUI SUR UNE TOUCHE POUR RETOUR MENU
ECHO -----------------------------------------
PAUSE > NUL
GOTO MENU
:Selection4
@echo off
echo.
echo ...... Installation de CCleaner ......
rem lancement installation silencieuse de CCleaner
ccleaner.exe -y /q /r:n /S
echo.
echo .. Installation de Ccleaner terminer ..
ECHO.
ECHO -----------------------------------------
ECHO APPUI SUR UNE TOUCHE POUR RETOUR MENU
ECHO -----------------------------------------
PAUSE > NUL
GOTO MENU
:Selection5
@echo off
echo.
echo ...... Installation de Acrobat Reader ......
rem lancement installation silencieuse de Acrobat Reader
msiexec /i AdbeRdr940_fr_FR.msi /quiet
echo.
echo .. Installation de Acrobat Reader terminer ..
ECHO.
ECHO -----------------------------------------
ECHO APPUI SUR UNE TOUCHE POUR RETOUR MENU
ECHO -----------------------------------------
PAUSE > NUL
GOTO MENU
:Selection6
@echo off
echo.
echo ...... Installation Open Office ......
cd openoffice\
rem lancement installation silencieuse d'Open Office
msiexec /i openofficeorg32.msi /qb
echo.
echo .. Installation de Open Office terminer ..
echo.
ECHO -----------------------------------------
ECHO APPUI SUR UNE TOUCHE POUR RETOUR MENU
ECHO -----------------------------------------
PAUSE > NUL
GOTO MENU
:Selection7
@echo off
echo.
echo ...... Installation de Avast ......
start /wait avast.exe /VERYSILENT /SP
echo.
echo .. Installation de Avast terminer ..
ECHO.
ECHO -----------------------------------------
ECHO APPUI SUR UNE TOUCHE POUR RETOUR MENU
ECHO -----------------------------------------
PAUSE > NUL
GOTO MENU
:Selection8
@echo off
echo.
echo ...... Installation de WLM 2011 ......
start /wait wlsetup-web.exe -y /q /r:n /S
echo.
echo .. Installation de WLM 2011 terminer ..
ECHO.
ECHO -----------------------------------------
ECHO APPUI SUR UNE TOUCHE POUR RETOUR MENU
ECHO -----------------------------------------
PAUSE > NUL
GOTO MENU
:Selection9
@echo off
echo.
echo ...... Installation Firefox ......
rem lancement installation silencieuse de firefox
firefox.exe -ms -ira
echo.
echo ...... Installation Thunderbird ......
rem attente puis installation silencieuse Thunderbird
start /wait thunderbird.exe -ms -ira
echo.
echo .. Installation de Firefox et thunderbird terminer ..
@echo off
echo.
echo ...... Installation de VLC ......
rem lancement installation silencieuse de VLC
vlc.exe -y /q /r:n /S
echo.
echo .. Installation de VLC terminer ..
@echo off
echo.
echo ...... Installation 7-Zip ......
rem lancement installation silencieuse 7-Zip
7zip.exe /S
echo.
echo .. Installation de 7-zip terminer ..
ECHO.
@echo off
echo.
echo ...... Installation de Ccleaner ......
rem lancement installation silencieuse de CCleaner
ccleaner.exe -y /q /r:n /S
echo.
echo .. Installation de Ccleaner terminer ..
ECHO.
@echo off
echo.
echo ...... Installation de Acrobat Reader ......
rem lancement installation silencieuse de Acrobat Reader
msiexec /i AdbeRdr940_fr_FR.msi /quiet
echo.
echo .. installation de Acrobat Reader terminer ..
@echo off
echo.
echo ...... Installation Open Office ......
cd openoffice\
rem lancement installation silencieuse d'Open Office
msiexec /i openofficeorg32.msi /qb
echo.
echo .. Installation de Open Office terminer ..
@echo off
echo.
echo ...... Installation de Avast ......
start /wait avast.exe /VERYSILENT /SP
echo.
echo .. Installation de Avast terminer ..
@echo off
echo.
echo ...... Installation de WLM 2011 ......
start /wait wlsetup-web.exe -y /q /r:n /S
echo.
echo .. Installation de WLM 2011 terminer ..
:Quit
CLS
EXIT
Merci d'avance pour vos réponse.