1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
| @echo off
:menu
echo -----------------
echo -- Script menu --
echo -----------------
echo.
echo 1.Nettoyage du poste
echo 2.Configuration reseaux du poste
echo 3.Tester connexion vers un autre poste
echo 4.Redemarrer la carte resau
echo 5.Lancer Windows Update
echo 6.Lancer navigateur internet
echo 7.Quitter
echo.
set /p reponse="Quel programme voulez-vous executer ?"
If /i "%reponse%"=="1" goto :batch1
If /i "%reponse%"=="2" goto :batch2
If /i "%reponse%"=="3" goto :batch3
If /i "%reponse%"=="4" goto :batch4
If /i "%reponse%"=="5" goto :batch5
If /i "%reponse%"=="6" goto :batch6
If /i "%reponse%"=="7" goto :fin
:batch1
cls
call c:\nettoyage.bat
cls
goto :menu
:batch2
cls
call c:\ipconfig.bat
cls
goto :menu
:batch3
cls
call c:\ping.bat
cls
goto :menu
:batch4
cls
call c:\renew_release.bat
cls
goto :menu
:batch5
cls
call c:\windows_update.bat
cls
goto :menu
:batch6
cls
call c:\internet.bat
cls
goto :menu
:fin
exit |