Downloads:
4,073,412
Downloads of v 8.0.211:
1,187,002
Last Update:
21 Apr 2019
Package Maintainer(s):
Software Author(s):
- Sun Microsystems/Oracle Corporation
Tags:
java jdk admin- 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
- 1
- 2
- 3
8.0.211 | Updated: 21 Apr 2019
- 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:
4,073,412
Downloads of v 8.0.211:
1,187,002
Maintainer(s):
Software Author(s):
- Sun Microsystems/Oracle Corporation
Java SE 8.0.211
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Sun Microsystems/Oracle Corporation. The inclusion of Sun Microsystems/Oracle Corporation trademark(s), if any, upon this webpage is solely to identify Sun Microsystems/Oracle Corporation goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Java SE, run the following command from the command line or from PowerShell:
To upgrade Java SE, run the following command from the command line or from PowerShell:
To uninstall Java SE, 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 jdk8 --internalize --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 jdk8 -y --source="'INTERNAL REPO 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 jdk8 -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install jdk8
win_chocolatey:
name: jdk8
version: '8.0.211'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'jdk8' do
action :install
source 'INTERNAL REPO URL'
version '8.0.211'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller jdk8
{
Name = "jdk8"
Version = "8.0.211"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'jdk8':
ensure => '8.0.211',
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 as a trusted package on 21 Aug 2020.
By default this package installs JDK according to your platform (x86 or x64).
To force x86 (32bit) installation on 64 bit systems
choco install jdk8 --x86
or
choco install jdk8 --forcex86
Note that params "i586=true" and "x64=false" are deprecated.
if you install by
choco install jdk8 -params "both=true"
then
Both 32bits and 64bits JDK will be installed and 64bits will be defaults.
By default this package installs JDK with source codes(zip).
If you don't want to install source codes
choco install jdk8 -params "source=false"
If you want auto update
choco install jdk8 -params "static=false"
If you want to specfiy install directory (you need \\ for escape)
choco install jdk8 -params 'installdir=c:\\java8'
$script_path = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
$common = $(Join-Path $script_path "common.ps1")
. $common
function Uninstall-ChocolateyPath {
param(
[string] $pathToUninstall,
[System.EnvironmentVariableTarget] $pathType = [System.EnvironmentVariableTarget]::User
)
Write-Debug "Running 'Uninstall-ChocolateyPath' with pathToUninstall:`'$pathToUninstall`'";
#get the PATH variable
$envPath = $env:PATH
if ($envPath.ToLower().Contains($pathToUninstall.ToLower()))
{
Write-Host "PATH environment variable has $pathToUninstall in it. Removing..."
$actualPath = [Environment]::GetEnvironmentVariable('Path', $pathType)
$statementTerminator = ";"
# remove $pathToUninstall
$actualPath = (($actualPath -split $statementTerminator) -ne $pathToUninstall) -join $statementTerminator
if ($pathType -eq [System.EnvironmentVariableTarget]::Machine) {
$psArgs = "[Environment]::SetEnvironmentVariable('Path',`'$actualPath`', `'$pathType`')"
Start-ChocolateyProcessAsAdmin "$psArgs"
} else {
[Environment]::SetEnvironmentVariable('Path', $actualPath, $pathType)
}
#add it to the local path as well so users will be off and running
$env:Path = $actualPath
}
}
try {
$java_bin = get-java-bin
Uninstall-ChocolateyPath $java_bin 'Machine'
if ([Environment]::GetEnvironmentVariable('CLASSPATH','Machine') -eq '.;') {
Install-ChocolateyEnvironmentVariable 'CLASSPATH' $null 'Machine'
}
Install-ChocolateyEnvironmentVariable 'JAVA_HOME' $null 'Machine'
} catch {
# ingore exception
}
$jdk_version = '8u211'
$build = '12'
$java_version = "1.8.0_211"
$uninstall_id = "180211"
$id = "478a62b7d4e34b78b671c754eaaf38ab"
$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-ProcessorBits 64
return $is64bitOS
}
function has_file($filename) {
return Test-Path $filename
}
function get-programfilesdir() {
if ((use64bit) -or (Get-ProcessorBits 32)) {
$programFiles = (Get-Item "Env:ProgramFiles").Value
} else {
$programFiles = (Get-Item "Env:ProgramFiles(x86)").Value
}
return $programFiles
}
function download-from-oracle($url, $output_filename) {
if (-not (has_file($output_fileName))) {
Write-Host "Downloading JDK from $url"
$client = New-Object Net.WebClient
$dummy = $client.DownloadFile($url, $output_filename)
}
}
function download-jdk-file($url, $output_filename) {
$dummy = download-from-oracle $url $output_filename
}
function download-jdk($Forcei586 = $false) {
$arch = get-arch $Forcei586
$filename = "jdk-$jdk_version-windows-$arch.exe"
$url = "https://javadl.oracle.com/webapps/download/GetFile/$java_version-b$build/$id/windows-i586/$filename"
$output_filename = Join-Path $script_path $filename
$dummy = download-jdk-file $url $output_filename
return $output_filename
}
function get-java-home() {
if (Test-Path (Join-Path $script_path "installdir.txt")) {
return Get-Content (Join-Path $script_path "installdir.txt")
}
$program_files = get-programfilesdir
return Join-Path $program_files "Java\jdk$java_version"
}
function get-java-bin() {
$java_home = get-java-home
return Join-Path $java_home 'bin'
}
function get-arch($Forcei586 = $false) {
if((use64bit $Forcei586)) {
return "x64"
} else {
return "i586"
}
}
function chocolatey-install($params, $Forcei586 = $false) {
$jdk_file = download-jdk $Forcei586
$arch = get-arch $Forcei586
$java_home = get-java-home
$java_bin = get-java-bin
$install_options = '/s '
if ($params.static -ne $false) {
$install_options += 'STATIC=1 '
}
if ($params.installdir -ne $null) {
$install_options += 'INSTALLDIR=' + $params.installdir + ' '
}
$install_options += 'ADDLOCAL="ToolsFeature'
if ($params.source -ne $false) {
$install_options += ',SourceFeature'
}
$install_options += '"'
#if ($params.source -eq $false) {
# $install_options = '/s STATIC=1 ADDLOCAL="ToolsFeature"'
#} else {
# $install_options = '/s STATIC=1 ADDLOCAL="ToolsFeature,SourceFeature"'
#}
Install-ChocolateyInstallPackage 'jdk8' 'exe' $install_options $jdk_file
}
function set-path() {
$java_home = get-java-home
$java_bin = get-java-bin
Install-ChocolateyPath $java_bin 'Machine'
if ([Environment]::GetEnvironmentVariable('CLASSPATH','Machine') -eq $null) {
Install-ChocolateyEnvironmentVariable 'CLASSPATH' '.;' 'Machine'
}
Install-ChocolateyEnvironmentVariable 'JAVA_HOME' $java_home 'Machine'
}
function out-i586($params) {
if ($env:ChocolateyForceX86 -eq 'true' -or $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")
}
}
function out-installdir($params) {
if ($params.installdir -ne $null) {
Out-File -InputObject $params.installdir -FilePath (Join-Path $script_path "installdir.txt")
}
}
Log in or click on link to see number of positives.
- jdk8.8.0.211.nupkg (cd7ea8b402a8) - ## / 61
- jdk-8u211-windows-x64.exe (f46be98d14a2) - ## / 69
- jdk-8u211-windows-i586.exe (9c3d428f04c5) - ## / 70
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 8.0.211 | 1187002 | Sunday, April 21, 2019 | Approved | |
Java SE 8.0.201 | 158140 | Wednesday, January 16, 2019 | Approved | |
Java SE 8.0.191 | 178943 | Wednesday, October 17, 2018 | Approved |
Java SE Development Kit 8u211
changes:
-8u211
This package has no dependencies.
Ground Rules:
- This discussion is only about Java SE and the Java SE 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, 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.