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,734,905
Downloads of v 8.0.25.02:
2,081
Last Update:
24 Oct 2014
Package Maintainer(s):
Software Author(s):
- Sun Microsystems/Oracle Corporation
Tags:
java jre- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Java SE Runtime Environment 8u25
This is not the latest version of Java SE Runtime Environment 8u25 available.
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
17,734,905
Downloads of v 8.0.25.02:
2,081
Maintainer(s):
Software Author(s):
- Sun Microsystems/Oracle Corporation
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.
Java SE Runtime Environment 8u25 8.0.25.02
This is not the latest version of Java SE Runtime Environment 8u25 available.
All Checks are Unknown
2 Test of Unknown Status
Validation Testing Unknown
Verification Testing Unknown
To install Java SE Runtime Environment 8u25, run the following command from the command line or from PowerShell:
To upgrade Java SE Runtime Environment 8u25, run the following command from the command line or from PowerShell:
To uninstall Java SE Runtime Environment 8u25, 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 --version=8.0.25.02 --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.25.02
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.25.02'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: jre8,
Version: 8.0.25.02,
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.25.02'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'jre8':
provider => 'chocolatey',
ensure => '8.0.25.02',
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.25.02" 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 by moderator purity on 21 Sep 2015.
Java SE Runtime Environment 8.0.25.02
$script_path = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
$common = $(Join-Path $script_path "common.ps1")
. $common
#installs jre8
try {
$params = "$env:chocolateyPackageParameters" # -params '"x64=false;path=c:\\java\\jre"'
$params = (ConvertFrom-StringData $params.Replace(";", "`n"))
if (check-both($params)) {
chocolatey-install $true
chocolatey-install
out-both($params)
} else {
out-i586($params)
chocolatey-install
}
} catch {
if ($_.Exception.InnerException) {
$msg = $_.Exception.InnerException.Message
} else {
$msg = $_.Exception.Message
}
Write-ChocolateyFailure 'jre8' "$msg"
throw
}
$script_path = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
$common = $(Join-Path $script_path "common.ps1")
. $common
function Uninstall-JRE {
if (Test-Path (Join-Path $script_path "both.txt")) {
$jre = "/qn /x {26A24AE4-039D-4CA4-87B4-2F864" + $uninstall_id + "F0}"
Start-ChocolateyProcessAsAdmin $jre 'msiexec'
$jre = "/qn /x {26A24AE4-039D-4CA4-87B4-2F832" + $uninstall_id + "F0}"
Start-ChocolateyProcessAsAdmin $jre 'msiexec'
} else {
$use64bit = use64bit
if ($use64bit) {
$jre = "/qn /x {26A24AE4-039D-4CA4-87B4-2F864" + $uninstall_id + "F0}"
} else {
$jre = "/qn /x {26A24AE4-039D-4CA4-87B4-2F832" + $uninstall_id + "F0}"
}
Start-ChocolateyProcessAsAdmin $jre 'msiexec'
}
}
try {
Uninstall-JRE
} catch {
# ingore exception
} finally {
Write-ChocolateySuccess 'jre8'
}
$jre_version = '8u25'
$build = '18'
$uninstall_id = "18025"
$script_path = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
function use64bit($Forcei586 = $false) {
if ($Forcei586) {
return $false
}
if (Test-Path (Join-Path $script_path "i586.txt")) {
return $false
}
$is64bitOS = (Get-WmiObject -Class Win32_ComputerSystem).SystemType -match ‘(x64)’
return $is64bitOS
}
function has_file($filename) {
return Test-Path $filename
}
function download-from-oracle($url, $output_filename) {
if (-not (has_file($output_fileName))) {
Write-Host "Downloading jre from $url"
[System.Net.ServicePointManager]::ServerCertificateValidationCallback = { $true }
$client = New-Object Net.WebClient
$dummy = $client.Headers.Add('Cookie', 'gpw_e24=http://www.oracle.com; oraclelicense=accept-securebackup-cookie')
$dummy = $client.DownloadFile($url, $output_filename)
}
}
function download-jre-file($url, $output_filename) {
$dummy = download-from-oracle $url $output_filename
}
function download-jre($Forcei586 = $false) {
$arch = get-arch $Forcei586
$filename = "jre-$jre_version-windows-$arch.exe"
$url = "http://download.oracle.com/otn-pub/java/jdk/$jre_version-b$build/$filename"
$output_filename = Join-Path $script_path $filename
$dummy = download-jre-file $url $output_filename
return $output_filename
}
function get-arch($Forcei586 = $false) {
if((use64bit $Forcei586)) {
return "x64"
} else {
return "i586"
}
}
function chocolatey-install($Forcei586 = $false) {
$jre_file = download-jre $Forcei586
$arch = get-arch $Forcei586
Write-Host "Installing jre $jre_version($arch) to $java_home"
Install-ChocolateyInstallPackage 'jre8' 'exe' "/s" $jre_file
Write-ChocolateySuccess 'jre8'
}
function out-i586($params) {
if ($params.i586 -eq $true -or $params.x64 -eq $false) {
Out-File (Join-Path $script_path "i586.txt")
}
}
function check-both($params) {
return ($params.both -eq $true) -and (use64bit)
}
function out-both($params) {
if (check-both($params)) {
Out-File (Join-Path $script_path "both.txt")
}
}
Log in or click on link to see number of positives.
- jre-8u25-windows-x64.exe&BHost=javadl.sun.com&File=jre-8u25-windows-x64.exe&AuthParam=1461424499_c088520ebc27567a64598bf1e2cff4c6&ext=.exe (e92b0b2b51d3) - ## / 54
- jre8.8.0.25.02.nupkg (a0bf267c38ca) - ## / 57
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 | 810847 | Friday, October 30, 2020 | Approved |
Java SE Runtime Environment 8.0.261 | 962755 | Wednesday, July 29, 2020 | Approved |
Java SE Runtime Environment 8.0.251 | 1014345 | Wednesday, April 29, 2020 | Approved |
Java SE Runtime Environment 8.0.241 | 1094763 | Tuesday, January 21, 2020 | Approved |
Java SE Runtime Environment 8.0.231 | 1160460 | Tuesday, October 29, 2019 | Approved |
Java SE Runtime Environment 8.0.221 | 1302230 | Friday, July 19, 2019 | Approved |
Java SE Runtime Environment 8.0.211 | 999875 | Thursday, April 25, 2019 | Approved |
Java SE Runtime Environment 8.0.201 | 1169506 | Wednesday, January 23, 2019 | Approved |
Java SE Runtime Environment 8.0.191.20181114 | 723764 | Wednesday, November 14, 2018 | Approved |
Java SE Runtime Environment 8.0.191 | 165978 | Saturday, November 10, 2018 | Approved |
Java SE Runtime Environment 8.0.181 | 1096111 | Wednesday, July 25, 2018 | Approved |
Java SE Runtime Environment 8.0.171 | 689609 | Monday, April 30, 2018 | Approved |
Java SE Runtime Environment 8.0.161 | 1284249 | Tuesday, January 23, 2018 | Approved |
Java SE Runtime Environment 8.0.151 | 1082783 | Friday, October 27, 2017 | Approved |
Java SE Runtime Environment 8.0.144 | 664743 | Friday, August 11, 2017 | Approved |
Java SE Runtime Environment 8.0.141 | 214767 | Thursday, July 20, 2017 | Approved |
Java SE Runtime Environment 8.0.131 | 654419 | Friday, April 28, 2017 | Approved |
Java SE Runtime Environment 8.0.121 | 541604 | Thursday, February 2, 2017 | Approved |
Java SE Runtime Environment 8.0.111 | 586487 | Saturday, November 5, 2016 | Approved |
Java SE Runtime Environment 8.0.101.20160917 | 374054 | Sunday, September 18, 2016 | Approved |
Java SE Runtime Environment 8.0.101 | 401777 | Friday, July 22, 2016 | Approved |
Java SE Runtime Environment 8.0.91 | 34538 | Friday, April 22, 2016 | Approved |
Java SE Runtime Environment 8.0.77 | 44647 | Saturday, March 26, 2016 | Approved |
Java SE Runtime Environment 8.0.73 | 58253 | Thursday, February 11, 2016 | Approved |
Java SE Runtime Environment 8.0.71 | 30786 | Thursday, January 21, 2016 | Approved |
Java SE Runtime Environment 8.0.66 | 56667 | Thursday, November 19, 2015 | Approved |
Java SE Runtime Environment 8.0.65 | 37466 | Sunday, October 25, 2015 | Approved |
Java SE Runtime Environment 8.0.60.20150902 | 52771 | Wednesday, September 2, 2015 | Approved |
Java SE Runtime Environment 8.0.51 | 52134 | Wednesday, July 22, 2015 | Approved |
Java SE Runtime Environment 8.0.45 | 308539 | Wednesday, April 22, 2015 | Approved |
Java SE Runtime Environment 8.0.40.20150402 | 610 | Tuesday, April 14, 2015 | Approved |
Java SE Runtime Environment 8.0.40.20150325 | 480 | Saturday, March 28, 2015 | Approved |
Java SE Runtime Environment 8.0.40 | 32155 | Tuesday, March 17, 2015 | Approved |
Java SE Runtime Environment 8.0.31 | 16709 | Thursday, January 22, 2015 | Approved |
Java SE Runtime Environment 8.0.25.03 | 6427 | Monday, November 10, 2014 | Approved |
Java SE Runtime Environment 8u25 8.0.25.02 | 2081 | Friday, October 24, 2014 | Approved |
Java SE Runtime Environment 8u25 8.0.25.01 | 665 | Thursday, October 23, 2014 | Approved |
Java SE Runtime Environment 8u25 8.0.25 | 1218 | Wednesday, October 15, 2014 | Approved |
Java SE Runtime Environment 8u20 8.0.20.01 | 800 | Sunday, September 7, 2014 | Approved |
Java SE Runtime Environment 8u20 8.0.20 | 2674 | Wednesday, September 3, 2014 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Java SE Runtime Environment 8u25 and the Java SE Runtime Environment 8u25 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 8u25, 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.