scripts/Windows/install_jdk21.ps1
Write-Host "Installing JDK 21 ..." -ForegroundColor Cyan New-Item "${env:ProgramFiles}\Java" -ItemType Directory -Force | Out-Null $jdkPath = "${env:ProgramFiles}\Java\jdk21" if (Test-Path $jdkPath) { Remove-Item $jdkPath -Recurse -Force } Write-Host "Downloading..." $zipPath = "$env:TEMP\openjdk-21.0.2_windows-x64_bin.zip" (New-Object Net.WebClient).DownloadFile('https://download.java.net/java/GA/jdk21.0.2/f2283984656d49d69e91c558476027ac/13/GPL/openjdk-21.0.2_windows-x64_bin.zip', $zipPath) Write-Host "Unpacking..." $tempPath = "$env:TEMP\jdk21_temp" 7z x $zipPath -o"$tempPath" | Out-Null [IO.Directory]::Move("$tempPath\jdk-21.0.2", $jdkPath) Remove-Item $tempPath -Recurse -Force -ErrorAction SilentlyContinue Remove-Item $zipPath -ErrorAction SilentlyContinue cmd /c "`"$jdkPath\bin\java`" --version" if ($env:INSTALL_LATEST_ONLY) { Add-Path "$jdkPath\bin" } Write-Host "JDK 21 installed" -ForegroundColor Green |