Voici un script à mettre dans un fichier .bat
Code : Tout sélectionner
@echo off
echo Gestion dat
echo/
if exist "%SystemRoot%\System32\choice.exe" goto UseChoice
:UseChoice
%SystemRoot%\System32\choice.exe /C:1239 /N /M "[1] : Switch Java 8 - [2] : Switch Java 11 - [3] : Switch Java 17 - [9] : Annulation ? "
if %errorlevel% EQU 9 goto :Fin
if %errorlevel% EQU 3 goto :SwitchJava17
if %errorlevel% EQU 1 goto :SwitchJava8
if %errorlevel% EQU 2 goto :SwitchJava11
:SwitchJava8
echo SwitchJava8
set JAVA_HOME="C:\Progra~1\Java\jdk1.8.0_202"
set Path=%JAVA_HOME%\bin;%Path%
java -version
goto :Fin
:SwitchJava11
echo SwitchJava11
set JAVA_HOME="C:\Progra~1\Java\jdk-11.0.13"
set Path=%JAVA_HOME%\bin;%Path%
java -version
goto :Fin
:SwitchJava17
echo SwitchJava17
set JAVA_HOME="C:\Progra~1\Java\jdk-17"
set Path=%JAVA_HOME%\bin;%Path%
java -version
goto :Fin
:Fin
pause