How do I install OpenJDK 14 on Windows?⌄
Open Windows Terminal, PowerShell, or Command Prompt and run: winget install --id ojdkbuild.openjdk.14.jdk --exact --version 14.0.1.1. winget downloads the installer from ojdkbuild open-source project and runs it. Requires Windows 10 (1809+) or Windows 11.
How do I install OpenJDK 14 silently for unattended deployment?⌄
Add --silent and accept the agreements upfront: winget install --id ojdkbuild.openjdk.14.jdk --exact 14.0.1.1 --silent --accept-package-agreements --accept-source-agreements. This is the variant Intune, Configuration Manager, and other deployment tools should use.
How do I uninstall OpenJDK 14 via winget?⌄
Run: winget uninstall --id ojdkbuild.openjdk.14.jdk --exact. Add --silent for unattended uninstalls. winget will use the registered uninstaller from OpenJDK 14's Apps & Features entry.
Is OpenJDK 14 free?⌄
OpenJDK 14 is distributed under GPL 2 with Classpath Exception. Refer to the publisher (https://github.com/ojdkbuild/ojdkbuild/wiki/Motivation) for the full license terms - Wingetly itself does not charge for installation.
Does OpenJDK 14 work on Windows 10?⌄
Yes, as long as your Windows 10 build supports winget (1809 or newer). winget ships with App Installer on Windows 10/11 and pulls OpenJDK 14 directly from the publisher.
How do I keep OpenJDK 14 up to date?⌄
Run winget upgrade --id ojdkbuild.openjdk.14.jdk --exact, or winget upgrade --all to update everything winget tracks. We index 1 version of OpenJDK 14 from microsoft/winget-pkgs.