Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

31,064,639

Downloads of v 8.0.151:

1,133,187

Last Update:

27 Oct 2017

Package Maintainer(s):

Software Author(s):

  • Oracle

Tags:

java runtime environment

Java SE Runtime Environment

This is not the latest version of Java SE Runtime Environment available.

  • 1
  • 2
  • 3

8.0.151 | Updated: 27 Oct 2017

Downloads:

31,064,639

Downloads of v 8.0.151:

1,133,187

Software Author(s):

  • Oracle

Java SE Runtime Environment 8.0.151

This is not the latest version of Java SE Runtime Environment available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

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://community.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

3. Copy Your Script

choco upgrade jre8 -y --source="'INTERNAL REPO URL'" --version="'8.0.151'" [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="'INTERNAL REPO URL'" --version="'8.0.151'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install jre8
  win_chocolatey:
    name: jre8
    version: '8.0.151'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'jre8' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '8.0.151'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller jre8
{
    Name     = "jre8"
    Version  = "8.0.151"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'jre8':
  ensure   => '8.0.151',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 24 Dec 2017.

Description

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.

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
This package no longer manually adds an environment variable.

This package can install 32-bit, 64-bit, or both versions. Find on GitHub


tools\chocolateyInstall.ps1
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"]
      }

  } else {
      Write-Debug "No Package Parameters Passed in"
  }

  $scriptDir = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
  # Import function to test if JRE in the same version is already installed
  Import-Module (Join-Path $scriptDir 'thisJreInstalled.ps1')
  
  $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=227550_e758a0de34e24606bca991d704f6dcbf'
  $checksum32 = '990FA41BD7A66C0402A6EDE43D51983CA0AC5F74B212FDD9F4AFE366CDE7A28D'
  $url64 = 'https://javadl.oracle.com/webapps/download/AutoDL?BundleId=227552_e758a0de34e24606bca991d704f6dcbf'
  $checksum64 = '4378D712C510930D066BFA256B24E07DFEA5ED31AA514AFB7C7DD72FCCE9BB68'
  $oldVersion = '8.0.1440.1'
  $version = '8.0.1510.12'
  #--------------------------------------------------------------------------
  $homepath = $version -replace "(\d+\.\d+)\.(\d\d)(.*)",'jre1.$1_$2'
  $installerType = 'exe'
  $installArgs = "/s REBOOT=0 SPONSORS=0 AUTO_UPDATE=0 $32dir"
  $installArgs64 = "/s REBOOT=0 SPONSORS=0 AUTO_UPDATE=0 $64dir"
  $osBitness = Get-ProcessorBits
   
  Write-Output "Searching if new version exists..."
  $thisJreInstalledHash = thisJreInstalled($version)

  # This is the code for both javaruntime and javaruntime-platformspecific packages.
  # If the package is javaruntime-platformspecific, only install the jre version
  # based on the OS bitness, otherwise install both 32- and 64-bit versions
  if ($packageName -match 'platformspecific') {

    if (($thisJreInstalledHash[0]) -or ($thisJreInstalledHash[1])) {
      Write-Output "Java Runtime Environment $version is already installed. Skipping download and installation to avoid 1603 errors."
    } else {
      Install-ChocolateyPackage $packageName $installerType $installArgs $url $url64
    }

  } else {
    # Otherwise it is the javaruntime package which installs by default both 32- and 64-bit jre versions on 64-bit systems.

    # 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 ($thisJreInstalledHash[0]) 
    {
      Write-Output "Java Runtime Environment $version (32-bit) is already installed. Skipping download and installation"
    } 
    elseif ($exclude -ne "32") 
    {
      Install-ChocolateyPackage $packageName $installerType $installArgs $url -checksum $checksum32 -checksumtype 'sha256'
    } 
    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 ($thisJreInstalledHash[1]) 
      {
        Write-Output "Java Runtime Environment $version (64-bit) is already installed. Skipping download and installation"
      } 
      elseif ($exclude -ne "64") 
      {
        Install-ChocolateyPackage $packageName $installerType $installArgs64 -url64bit $url64 -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..."
  $oldJreInstalledHash = thisJreInstalled($oldVersion)

  if($oldJreInstalledHash[0]) 
  {
     Write-Warning "Uninstalling JRE version $oldVersion 32bit"
     $32 = $oldJreInstalledHash[0].IdentifyingNumber
     Start-ChocolateyProcessAsAdmin "/qn /norestart /X$32" -exeToRun "msiexec.exe" -validExitCodes @(0,1605,3010)
  }
  if($oldJreInstalledHash[1])
  {
     Write-Warning "Uninstalling JRE version $oldVersion 64bit"
     $64 = $oldJreInstalledHash[1].IdentifyingNumber
     Start-ChocolateyProcessAsAdmin "/qn /norestart /X$64" -exeToRun "msiexec.exe" -validExitCodes @(0,1605,3010)
  }
} catch {
  #Write-ChocolateyFailure $packageName $($_.Exception.Message)
  throw
}
tools\chocolateyUninstall.ps1
Write-Debug ("Starting " + $MyInvocation.MyCommand.Definition)

$scriptDir = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
# Import function to test if JRE in the same version is already installed
Import-Module (Join-Path $scriptDir 'thisJreInstalled.ps1')

[string]$packageName="Javaruntime"
$version = '8.0.1510.12'
$thisJreInstalledHash = thisJreInstalled($version)

<#
Exit Codes:
    0: Java installed successfully.
    1605: Java is not installed.
    3010: A reboot is required to finish the install.
#>

if($thisJreInstalledHash[0]) 
  {
     Write-Warning "Uninstalling JRE version $Version 32bit"
     $32 = $thisJreInstalledHash[0].IdentifyingNumber
     Start-ChocolateyProcessAsAdmin "/qn /norestart /X$32" -exeToRun "msiexec.exe" -validExitCodes @(0,1605,3010)
  }
  if($thisJreInstalledHash[1])
  {
     Write-Warning "Uninstalling JRE version $Version 64bit"
     $64 = $thisJreInstalledHash[1].IdentifyingNumber
     Start-ChocolateyProcessAsAdmin "/qn /norestart /X$64" -exeToRun "msiexec.exe" -validExitCodes @(0,1605,3010)
  }

Write-Warning "$packageName may require a reboot to complete the uninstallation."
tools\thisJreInstalled.ps1
# This function checks if the same version of JRE is already installed on the computer.
# It returns a hash map with a 'x86_32' and 'x86_64'. These values are not empty if the
# same version and bitness of JRE is already installed.
function thisJreInstalled($version) {
  $productSearch = Get-WmiObject -Class Win32_Product | Where-Object {$_.Name -match '^Java \d+ Update \d+'}
  
  # The regexes for the name of the JRE registry entries (32- and 64 bit versions)
  $nameRegex32 = '^Java \d+ Update \d+$'
  $nameRegex64 = '^Java \d+ Update \d+ \(64-bit\)$'
  $versionRegex = $('^' + $version + '\d*$')

  $x86_32 = $productSearch | Where-Object {$_.Name -match $nameRegex32 -and $_.Version -match $versionRegex}
  $x86_64 = $productSearch | Where-Object {$_.Name -match $nameRegex64 -and $_.Version -match $versionRegex}
  if($x86_32 -eq $null)
  {
    $x86_32 = $false
  }
  if($x86_64 -eq $null)
  {
    $x86_64 = $false
  } 
  return $x86_32,$x86_64
} 

Log in or click on link to see number of positives.

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.

Add to Builder Version Downloads Last Updated Status
Java SE Runtime Environment 8.0.391 1084579 Thursday, October 19, 2023 Approved
Java SE Runtime Environment 8.0.381 1315923 Wednesday, August 2, 2023 Approved
Java SE Runtime Environment 8.0.371 1237762 Tuesday, May 2, 2023 Approved
Java SE Runtime Environment 8.0.361 1195491 Tuesday, January 31, 2023 Approved
Java SE Runtime Environment 8.0.351 1160448 Tuesday, October 25, 2022 Approved
Java SE Runtime Environment 8.0.341 843838 Wednesday, July 27, 2022 Approved
Java SE Runtime Environment 8.0.333 736531 Thursday, May 19, 2022 Approved
Java SE Runtime Environment 8.0.331 386697 Thursday, April 28, 2022 Approved
Java SE Runtime Environment 8.0.321 836463 Tuesday, February 1, 2022 Exempted
Java SE Runtime Environment 8.0.311 852502 Monday, October 25, 2021 Approved
Java SE Runtime Environment 8.0.301 855520 Friday, July 30, 2021 Approved
Java SE Runtime Environment 8.0.291 819366 Wednesday, April 28, 2021 Approved
Java SE Runtime Environment 8.0.281 827129 Wednesday, January 27, 2021 Approved
Java SE Runtime Environment 8.0.271 837039 Friday, October 30, 2020 Approved
Java SE Runtime Environment 8.0.261 967215 Wednesday, July 29, 2020 Approved
Java SE Runtime Environment 8.0.251 1023055 Wednesday, April 29, 2020 Approved
Java SE Runtime Environment 8.0.241 1096166 Tuesday, January 21, 2020 Approved
Java SE Runtime Environment 8.0.231 1202657 Tuesday, October 29, 2019 Approved
Java SE Runtime Environment 8.0.221 1306767 Friday, July 19, 2019 Approved
Java SE Runtime Environment 8.0.211 1000733 Thursday, April 25, 2019 Approved
Java SE Runtime Environment 8.0.201 1239485 Wednesday, January 23, 2019 Approved
Java SE Runtime Environment 8.0.191.20181114 724548 Wednesday, November 14, 2018 Approved
Java SE Runtime Environment 8.0.191 166580 Saturday, November 10, 2018 Approved
Java SE Runtime Environment 8.0.181 1097596 Wednesday, July 25, 2018 Approved
Java SE Runtime Environment 8.0.171 690572 Monday, April 30, 2018 Approved
Java SE Runtime Environment 8.0.161 1284711 Tuesday, January 23, 2018 Approved
Java SE Runtime Environment 8.0.151 1133187 Friday, October 27, 2017 Approved
Java SE Runtime Environment 8.0.144 665309 Friday, August 11, 2017 Approved
Java SE Runtime Environment 8.0.141 214954 Thursday, July 20, 2017 Approved
Java SE Runtime Environment 8.0.131 654678 Friday, April 28, 2017 Approved
Java SE Runtime Environment 8.0.121 545637 Thursday, February 2, 2017 Approved
Java SE Runtime Environment 8.0.111 586851 Saturday, November 5, 2016 Approved
Java SE Runtime Environment 8.0.101.20160917 374253 Sunday, September 18, 2016 Approved
Java SE Runtime Environment 8.0.101 402061 Friday, July 22, 2016 Approved
Java SE Runtime Environment 8.0.91 34961 Friday, April 22, 2016 Approved
Java SE Runtime Environment 8.0.77 44850 Saturday, March 26, 2016 Approved
Java SE Runtime Environment 8.0.73 58578 Thursday, February 11, 2016 Approved
Java SE Runtime Environment 8.0.71 30980 Thursday, January 21, 2016 Approved
Java SE Runtime Environment 8.0.66 56879 Thursday, November 19, 2015 Approved
Java SE Runtime Environment 8.0.65 37653 Sunday, October 25, 2015 Approved
Java SE Runtime Environment 8.0.60.20150902 52998 Wednesday, September 2, 2015 Approved
Java SE Runtime Environment 8.0.51 52338 Wednesday, July 22, 2015 Approved
Java SE Runtime Environment 8.0.45 308739 Wednesday, April 22, 2015 Approved
Java SE Runtime Environment 8.0.40.20150402 802 Tuesday, April 14, 2015 Approved
Java SE Runtime Environment 8.0.40.20150325 686 Saturday, March 28, 2015 Approved
Java SE Runtime Environment 8.0.40 32358 Tuesday, March 17, 2015 Approved
Java SE Runtime Environment 8.0.31 16979 Thursday, January 22, 2015 Approved
Java SE Runtime Environment 8.0.25.03 6626 Monday, November 10, 2014 Approved
Java SE Runtime Environment 8u25 8.0.25.02 2273 Friday, October 24, 2014 Approved
Java SE Runtime Environment 8u25 8.0.25.01 868 Thursday, October 23, 2014 Approved
Java SE Runtime Environment 8u25 8.0.25 1405 Wednesday, October 15, 2014 Approved
Java SE Runtime Environment 8u20 8.0.20.01 1016 Sunday, September 7, 2014 Approved
Java SE Runtime Environment 8u20 8.0.20 2977 Wednesday, September 3, 2014 Approved

This package has no dependencies.

Discussion for the Java SE Runtime Environment Package

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.
comments powered by Disqus