Downloads:
33,795,755
Downloads of v 8.0.60.20150902:
53,068
Last Update:
02 Sep 2015
Package Maintainer(s):
Software Author(s):
- Oracle
Tags:
java runtime environment- 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
This is not the latest version of Java SE Runtime Environment available.
- 1
- 2
- 3
8.0.60.20150902 | Updated: 02 Sep 2015
- 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:
33,795,755
Downloads of v 8.0.60.20150902:
53,068
Maintainer(s):
Software Author(s):
- Oracle
Java SE Runtime Environment 8.0.60.20150902
This is not the latest version of Java SE Runtime Environment available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Oracle. The inclusion of Oracle trademark(s), if any, upon this webpage is solely to identify Oracle goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Unknown
Verification Testing Unknown
Scan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
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:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download jre8 --internalize --version=8.0.60.20150902 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade jre8 -y --source="'INTERNAL REPO URL'" --version="'8.0.60.20150902'" [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.60.20150902'"
$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.60.20150902'
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.60.20150902'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller jre8
{
Name = "jre8"
Version = "8.0.60.20150902"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'jre8':
ensure => '8.0.60.20150902',
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.
This package was approved by moderator ferventcoder on 21 Sep 2015.
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 install to an alternate directory, use the 32dir and/or the 64dir parameter. Example: choco install jre8 -PackageParameters "/32dir:c:\path\to\install /64dir:c:\path\to\64" -y
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 can install 32-bit, 64-bit, or both versions.
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.600.27'
$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."
# 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.
- jre8.8.0.60.20150902.nupkg (884b5738c609) - ## / 57
- jre-8u60-windows-i586.exe&BHost=javadl.sun.com&File=jre-8u60-windows-i586.exe&AuthParam=1463071198_ecb6e4f2a29cecd7f8b890986a25cb88&ext=.exe (dc25fff41ffe) - ## / 56
- jre8Install.exe (40e0b9ba6dcd) - ## / 56
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.431 | 551832 | Monday, October 21, 2024 | Approved | |
Java SE Runtime Environment 8.0.421 | 1149017 | Friday, July 26, 2024 | Approved | |
Java SE Runtime Environment 8.0.411 | 964237 | Monday, April 22, 2024 | Approved | |
Java SE Runtime Environment 8.0.401 | 1006464 | Monday, January 22, 2024 | Approved | |
Java SE Runtime Environment 8.0.391 | 1086033 | Thursday, October 19, 2023 | Approved | |
Java SE Runtime Environment 8.0.381 | 1316474 | Wednesday, August 2, 2023 | Approved | |
Java SE Runtime Environment 8.0.371 | 1239540 | Tuesday, May 2, 2023 | Approved | |
Java SE Runtime Environment 8.0.361 | 1196093 | Tuesday, January 31, 2023 | Approved | |
Java SE Runtime Environment 8.0.351 | 1160660 | Tuesday, October 25, 2022 | Approved | |
Java SE Runtime Environment 8.0.341 | 843961 | Wednesday, July 27, 2022 | Approved | |
Java SE Runtime Environment 8.0.333 | 737475 | Thursday, May 19, 2022 | Approved | |
Java SE Runtime Environment 8.0.331 | 386773 | Thursday, April 28, 2022 | Approved | |
Java SE Runtime Environment 8.0.321 | 837351 | Tuesday, February 1, 2022 | Exempted | |
Java SE Runtime Environment 8.0.311 | 852640 | Monday, October 25, 2021 | Approved | |
Java SE Runtime Environment 8.0.301 | 855726 | Friday, July 30, 2021 | Approved | |
Java SE Runtime Environment 8.0.291 | 819483 | Wednesday, April 28, 2021 | Approved | |
Java SE Runtime Environment 8.0.281 | 827293 | Wednesday, January 27, 2021 | Approved | |
Java SE Runtime Environment 8.0.271 | 837117 | Friday, October 30, 2020 | Approved | |
Java SE Runtime Environment 8.0.261 | 967269 | Wednesday, July 29, 2020 | Approved | |
Java SE Runtime Environment 8.0.251 | 1023801 | Wednesday, April 29, 2020 | Approved | |
Java SE Runtime Environment 8.0.241 | 1096341 | Tuesday, January 21, 2020 | Approved | |
Java SE Runtime Environment 8.0.231 | 1202796 | Tuesday, October 29, 2019 | Approved | |
Java SE Runtime Environment 8.0.221 | 1306876 | Friday, July 19, 2019 | Approved | |
Java SE Runtime Environment 8.0.211 | 1000794 | Thursday, April 25, 2019 | Approved | |
Java SE Runtime Environment 8.0.201 | 1242058 | Wednesday, January 23, 2019 | Approved | |
Java SE Runtime Environment 8.0.191.20181114 | 724668 | Wednesday, November 14, 2018 | Approved | |
Java SE Runtime Environment 8.0.191 | 166648 | Saturday, November 10, 2018 | Approved | |
Java SE Runtime Environment 8.0.181 | 1097683 | Wednesday, July 25, 2018 | Approved | |
Java SE Runtime Environment 8.0.171 | 690667 | Monday, April 30, 2018 | Approved | |
Java SE Runtime Environment 8.0.161 | 1284783 | Tuesday, January 23, 2018 | Approved | |
Java SE Runtime Environment 8.0.151 | 1133330 | Friday, October 27, 2017 | Approved | |
Java SE Runtime Environment 8.0.144 | 665394 | Friday, August 11, 2017 | Approved | |
Java SE Runtime Environment 8.0.141 | 215024 | Thursday, July 20, 2017 | Approved | |
Java SE Runtime Environment 8.0.131 | 654745 | Friday, April 28, 2017 | Approved | |
Java SE Runtime Environment 8.0.121 | 545723 | Thursday, February 2, 2017 | Approved | |
Java SE Runtime Environment 8.0.111 | 586936 | Saturday, November 5, 2016 | Approved | |
Java SE Runtime Environment 8.0.101.20160917 | 374321 | Sunday, September 18, 2016 | Approved | |
Java SE Runtime Environment 8.0.101 | 402123 | Friday, July 22, 2016 | Approved | |
Java SE Runtime Environment 8.0.91 | 35044 | Friday, April 22, 2016 | Approved | |
Java SE Runtime Environment 8.0.77 | 44934 | Saturday, March 26, 2016 | Approved | |
Java SE Runtime Environment 8.0.73 | 58660 | Thursday, February 11, 2016 | Approved | |
Java SE Runtime Environment 8.0.71 | 31059 | Thursday, January 21, 2016 | Approved | |
Java SE Runtime Environment 8.0.66 | 56964 | Thursday, November 19, 2015 | Approved | |
Java SE Runtime Environment 8.0.65 | 37718 | Sunday, October 25, 2015 | Approved | |
Java SE Runtime Environment 8.0.60.20150902 | 53068 | Wednesday, September 2, 2015 | Approved | |
Java SE Runtime Environment 8.0.51 | 52454 | Wednesday, July 22, 2015 | Approved | |
Java SE Runtime Environment 8.0.45 | 308817 | Wednesday, April 22, 2015 | Approved | |
Java SE Runtime Environment 8.0.40.20150402 | 877 | Tuesday, April 14, 2015 | Approved | |
Java SE Runtime Environment 8.0.40.20150325 | 770 | Saturday, March 28, 2015 | Approved | |
Java SE Runtime Environment 8.0.40 | 32434 | Tuesday, March 17, 2015 | Approved | |
Java SE Runtime Environment 8.0.31 | 17053 | Thursday, January 22, 2015 | Approved | |
Java SE Runtime Environment 8.0.25.03 | 6695 | Monday, November 10, 2014 | Approved | |
Java SE Runtime Environment 8u25 8.0.25.02 | 2344 | Friday, October 24, 2014 | Approved | |
Java SE Runtime Environment 8u25 8.0.25.01 | 934 | Thursday, October 23, 2014 | Approved | |
Java SE Runtime Environment 8u25 8.0.25 | 1478 | Wednesday, October 15, 2014 | Approved | |
Java SE Runtime Environment 8u20 8.0.20.01 | 1078 | Sunday, September 7, 2014 | Approved | |
Java SE Runtime Environment 8u20 8.0.20 | 3059 | 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.