Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
Downloads:
17,709,558
Downloads of v 8.0.271:
787,136
Last Update:
30 Oct 2020
Package Maintainer(s):
Software Author(s):
- Oracle
Tags:
java runtime environment- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Java SE Runtime Environment
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
17,709,558
Downloads of v 8.0.271:
787,136
Maintainer(s):
Software Author(s):
- Oracle
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
All Checks are Passing
2 Passing Test
To install Java SE Runtime Environment, run the following command from the command line or from PowerShell:
To upgrade Java SE Runtime Environment, run the following command from the command line or from PowerShell:
To uninstall Java SE Runtime Environment, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download jre8 --internalize --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade jre8 -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade jre8 -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure jre8 installed
win_chocolatey:
name: jre8
state: present
version: 8.0.271
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'jre8' do
action :install
version '8.0.271'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: jre8,
Version: 8.0.271,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller jre8
{
Name = 'jre8'
Ensure = 'Present'
Version = '8.0.271'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'jre8':
provider => 'chocolatey',
ensure => '8.0.271',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install jre8 version="8.0.271" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 30 Oct 2020.
Java allows you to play online games, chat with people around the world, calculate your mortgage interest, and view images in 3D, just to name a few. It's also integral to the intranet applications and other e-business solutions that are the foundation of corporate computing. Please note you now need a Java License from Oracle to use unless installed for Personal Use and Development Use.
Note
This package installs the Java version offered at https://www.java.com. It also sets SPONSORS=0
(see docs).
If you wish to only install the 32-bit version of Java use the /exclude parameter. The switch to exclude 32-bit is /exclude:32 and to exclude 64-bit /exclude:64
For example: choco install jre8 -PackageParameters "/exclude:64" -y
You then need to tell Chocolatey to save that parameter for future upgrades by running choco feature enable -n=useRememberedArgumentsForUpgrades
This package no longer manually adds an environment variable.
x86 installs of Windows you can expect to see an error while reading the registry, but the script will still function normally.
This package can install 32-bit, 64-bit, or both versions. Find on GitHub
try {
$arguments = @{}
# Now we can use the $env:chocolateyPackageParameters inside the Chocolatey package
$packageParameters = $env:chocolateyPackageParameters
# Default value
$exclude = $null
# Now parse the packageParameters using good old regular expression
if ($packageParameters) {
$match_pattern = "\/(?<option>([a-zA-Z0-9]+)):(?<value>([`"'])?([a-zA-Z0-9- \(\)\s_\\:\.]+)([`"'])?)|\/(?<option>([a-zA-Z]+))"
$option_name = 'option'
$value_name = 'value'
if ($packageParameters -match $match_pattern ){
$results = $packageParameters | Select-String $match_pattern -AllMatches
$results.matches | % {
$arguments.Add(
$_.Groups[$option_name].Value.Trim(),
$_.Groups[$value_name].Value.Trim())
}
}
else
{
Throw "Package Parameters were found but were invalid (REGEX Failure)"
}
if($arguments.ContainsKey("exclude")) {
Write-Host "exclude Argument Found"
$exclude = $arguments["exclude"]
}
if($arguments.ContainsKey("64dir")) {
Write-Host "64Dir Argument Found"
$64dir = $arguments["64dir"]
}
if($arguments.ContainsKey("32dir")) {
Write-Host "32Dir Argument Found"
$32dir = $arguments["32dir"]
}
} else {
Write-Debug "No Package Parameters Passed in"
}
$scriptDir = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
$packageName = 'jre8'
# Modify these values -----------------------------------------------------
# Find download URLs at http://www.java.com/en/download/manual.jsp
$url = 'https://javadl.oracle.com/webapps/download/AutoDL?BundleId=243735_61ae65e088624f5aaa0b1d2d801acb16'
$checksum32 = '5B3F733A2BAD8B359117A47014D309A69DC7F1F6D2E3DBDC4CB560F2E4F02D62'
$url64 = 'https://javadl.oracle.com/webapps/download/AutoDL?BundleId=243737_61ae65e088624f5aaa0b1d2d801acb16'
$checksum64 = '6210A4CDFC5C67D34027224DFADF48798BF3508E5DB6EF268BB93F0FB7D697D5'
$oldVersion = '8.0.2610.12'
$version = '8.0.2710.9'
#--------------------------------------------------------------------------
if ($64dir) { $64dir = "INSTALLDIR=`"$64dir`""; echo "64 dir detected at $64dir";}
if ($32dir) { $32dir = "INSTALLDIR=`"$32dir`""; echo "32 dir detected at $32dir";}
$homepath = $version -replace "(\d+\.\d+)\.(\d\d)(.*)",'jre1.$1_$2'
$installerType = 'exe'
$installArgs = "/s $32dir REBOOT=0 SPONSORS=0 AUTO_UPDATE=0"
$installArgs64 = "/s $64dir REBOOT=0 SPONSORS=0 AUTO_UPDATE=0"
$osBitness = Get-ProcessorBits
$cachepath = "$env:temp\$packagename\$version"
Write-Host "The software license has changed for Java and this software must be licensed for general business use. Please ensure your licensing is compliant before installing." -ForegroundColor white -BackgroundColor red
#This checks to see if current version is already installed
Write-Output "Checking to see if local install is already up to date..."
try{
$checkreg64 = Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion | Where-Object { $_.DisplayName -like '*Java 8*' -and ([Version]$_.DisplayVersion) -eq $version} -ErrorAction SilentlyContinue
$checkreg32 = Get-ItemProperty HKLM:\Software\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion | Where-Object { $_.DisplayName -like '*Java 8*' -and ([Version]$_.DisplayVersion) -eq $version} -ErrorAction SilentlyContinue
}catch{
Write-Output "Registry check failed. This is commonly caused by corrupt keys (Do you have netbeans installed?)"
}
# Checks if JRE 32/64-bit in the same version is already installed and if the user excluded 32-bit Java.
# Otherwise it downloads and installs it.
# This is to avoid unnecessary downloads and 1603 errors.
if ($checkreg32 -ne $null)
{
Write-Output "Java Runtime Environment $version (32-bit) is already installed. Skipping download and installation"
}
elseif ($exclude -ne "32")
{
Write-Output "Downloading 32-bit installer"
Get-ChocolateyWebFile -packageName $packageName -fileFullPath "$cachepath\JRE8x86.exe" -url $url -checksum $checksum32 -checksumType 'SHA256'
Write-Output "Installing JRE $version 32-bit"
Install-ChocolateyInstallPackage -packageName JRE8 -fileType $installerType -silentArgs $installArgs -file "$cachepath\JRE8x86.exe"
}
else
{
Write-Output "Java Runtime Environment $Version (32-bit) excluded for installation"
}
# Only check for the 64-bit version if the system is 64-bit
if ($osBitness -eq 64)
{
if ($checkreg64 -ne $null)
{
Write-Output "Java Runtime Environment $version (64-bit) is already installed. Skipping download and installation"
}
elseif ($exclude -ne "64")
{
Write-Output "Downloading 64-bit installer"
Get-ChocolateyWebFile -packageName $packageName -fileFullPath "$cachepath\JRE8x64.exe" -url64 $url64 -checksum64 $checksum64 -checksumType 'SHA256'
Write-Output "Installing JRE $version 64-bit"
Install-ChocolateyInstallPackage -packageName JRE8 -fileType $installerType -silentArgs $installArgs64 -file64 "$cachepath\JRE8x64.exe"
# Install-ChocolateyPackage $packageName $installerType $installArgs64 -url64bit "$env:temp\chocolatey\$packagename\$version\JRE8x64.exe" -checksum64 $checksum64 -checksumtype64 'sha256'
}
else
{
Write-Output "Java Runtime Environment $Version (64-bit) excluded for installation"
}
}
#Uninstalls the previous version of Java if either version exists
Write-Output "Searching if the previous version exists..."
$checkoldreg64 = Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, PSChildName | Where-Object { $_.DisplayName -like '*Java 8*' -and ([Version]$_.DisplayVersion) -eq $oldversion} -ErrorAction SilentlyContinue
$checkoldreg32 = Get-ItemProperty HKLM:\Software\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, PSChildName | Where-Object { $_.DisplayName -like '*Java 8*' -and ([Version]$_.DisplayVersion) -eq $oldversion} -ErrorAction SilentlyContinue
if($checkoldreg32 -ne $null)
{
Write-Warning "Uninstalling JRE version $oldVersion 32bit"
$32 = $checkoldreg32.PSChildName
Start-ChocolateyProcessAsAdmin "/qn /norestart /X$32" -exeToRun "msiexec.exe" -validExitCodes @(0,1605,3010)
}
if($checkoldreg64 -ne $null)
{
Write-Warning "Uninstalling JRE version $oldVersion $osBitness bit" #Formatted weird because this is used if run on a x86 install
$64 = $checkoldreg64.PSChildName
Start-ChocolateyProcessAsAdmin "/qn /norestart /X$64" -exeToRun "msiexec.exe" -validExitCodes @(0,1605,3010)
}
$64dir = $null
$32dir = $null
} catch {
#Write-ChocolateyFailure $packageName $($_.Exception.Message)
throw
}
Write-Debug ("Starting " + $MyInvocation.MyCommand.Definition)
$scriptDir = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
[string]$packageName="JRE8"
$version = '8.0.2710.9'
#$thisJreInstalledHash = thisJreInstalled($version)
$checkreg64 = Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, PSChildName | Where-Object { $_.DisplayName -like '*Java 8*' -and ([Version]$_.DisplayVersion) -eq $version} -ErrorAction SilentlyContinue
$checkreg32 = Get-ItemProperty HKLM:\Software\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, PSChildName | Where-Object { $_.DisplayName -like '*Java 8*' -and ([Version]$_.DisplayVersion) -eq $version} -ErrorAction SilentlyContinue
$osBitness = Get-ProcessorBits
<#
Exit Codes:
0: Java installed successfully.
1605: Java is not installed.
3010: A reboot is required to finish the install.
#>
if($checkreg32 -ne $null)
{
Write-Warning "Uninstalling JRE version $Version 32bit"
$32 = $checkreg32.PSChildName
Start-ChocolateyProcessAsAdmin "/qn /norestart /X$32" -exeToRun "msiexec.exe" -validExitCodes @(0,1605,3010)
}
if($checkreg64 -ne $null)
{
Write-Warning "Uninstalling JRE version $Version $osBitness bit" #Formatted weird for x86 windows installs
$64 = $checkreg64.PSChildName
Start-ChocolateyProcessAsAdmin "/qn /norestart /X$64" -exeToRun "msiexec.exe" -validExitCodes @(0,1605,3010)
}
Write-Warning "$packageName may require a reboot to complete the uninstallation."
Log in or click on link to see number of positives.
- jre8.8.0.271.nupkg (156991024a8e) - ## / 62
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Java SE Runtime Environment 8.0.271 | 787136 | Friday, October 30, 2020 | Approved |
Java SE Runtime Environment 8.0.261 | 962716 | Wednesday, July 29, 2020 | Approved |
Java SE Runtime Environment 8.0.251 | 1014283 | Wednesday, April 29, 2020 | Approved |
Java SE Runtime Environment 8.0.241 | 1094748 | Tuesday, January 21, 2020 | Approved |
Java SE Runtime Environment 8.0.231 | 1160368 | Tuesday, October 29, 2019 | Approved |
Java SE Runtime Environment 8.0.221 | 1302222 | Friday, July 19, 2019 | Approved |
Java SE Runtime Environment 8.0.211 | 999872 | Thursday, April 25, 2019 | Approved |
Java SE Runtime Environment 8.0.201 | 1169485 | Wednesday, January 23, 2019 | Approved |
Java SE Runtime Environment 8.0.191.20181114 | 723762 | Wednesday, November 14, 2018 | Approved |
Java SE Runtime Environment 8.0.191 | 165977 | Saturday, November 10, 2018 | Approved |
Java SE Runtime Environment 8.0.181 | 1096104 | Wednesday, July 25, 2018 | Approved |
Java SE Runtime Environment 8.0.171 | 689598 | Monday, April 30, 2018 | Approved |
Java SE Runtime Environment 8.0.161 | 1284248 | Tuesday, January 23, 2018 | Approved |
Java SE Runtime Environment 8.0.151 | 1081481 | Friday, October 27, 2017 | Approved |
Java SE Runtime Environment 8.0.144 | 664741 | Friday, August 11, 2017 | Approved |
Java SE Runtime Environment 8.0.141 | 214766 | Thursday, July 20, 2017 | Approved |
Java SE Runtime Environment 8.0.131 | 654417 | Friday, April 28, 2017 | Approved |
Java SE Runtime Environment 8.0.121 | 541597 | Thursday, February 2, 2017 | Approved |
Java SE Runtime Environment 8.0.111 | 586485 | Saturday, November 5, 2016 | Approved |
Java SE Runtime Environment 8.0.101.20160917 | 374052 | Sunday, September 18, 2016 | Approved |
Java SE Runtime Environment 8.0.101 | 401754 | Friday, July 22, 2016 | Approved |
Java SE Runtime Environment 8.0.91 | 34534 | Friday, April 22, 2016 | Approved |
Java SE Runtime Environment 8.0.77 | 44645 | Saturday, March 26, 2016 | Approved |
Java SE Runtime Environment 8.0.73 | 58251 | Thursday, February 11, 2016 | Approved |
Java SE Runtime Environment 8.0.71 | 30785 | Thursday, January 21, 2016 | Approved |
Java SE Runtime Environment 8.0.66 | 56666 | Thursday, November 19, 2015 | Approved |
Java SE Runtime Environment 8.0.65 | 37464 | Sunday, October 25, 2015 | Approved |
Java SE Runtime Environment 8.0.60.20150902 | 52769 | Wednesday, September 2, 2015 | Approved |
Java SE Runtime Environment 8.0.51 | 52131 | Wednesday, July 22, 2015 | Approved |
Java SE Runtime Environment 8.0.45 | 308536 | Wednesday, April 22, 2015 | Approved |
Java SE Runtime Environment 8.0.40.20150402 | 609 | Tuesday, April 14, 2015 | Approved |
Java SE Runtime Environment 8.0.40.20150325 | 479 | Saturday, March 28, 2015 | Approved |
Java SE Runtime Environment 8.0.40 | 32154 | Tuesday, March 17, 2015 | Approved |
Java SE Runtime Environment 8.0.31 | 16708 | Thursday, January 22, 2015 | Approved |
Java SE Runtime Environment 8.0.25.03 | 6424 | Monday, November 10, 2014 | Approved |
Java SE Runtime Environment 8u25 8.0.25.02 | 2080 | Friday, October 24, 2014 | Approved |
Java SE Runtime Environment 8u25 8.0.25.01 | 663 | Thursday, October 23, 2014 | Approved |
Java SE Runtime Environment 8u25 8.0.25 | 1217 | Wednesday, October 15, 2014 | Approved |
Java SE Runtime Environment 8u20 8.0.20.01 | 799 | Sunday, September 7, 2014 | Approved |
Java SE Runtime Environment 8u20 8.0.20 | 2673 | Wednesday, September 3, 2014 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Java SE Runtime Environment and the Java SE Runtime Environment package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Java SE Runtime Environment, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.