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:

4,005,347

Downloads of v 8.0.211:

1,120,351

Last Update:

21 Apr 2019

Package Maintainer(s):

Software Author(s):

  • Sun Microsystems/Oracle Corporation

Tags:

java jdk admin

Java SE

  • 1
  • 2
  • 3

8.0.211 | Updated: 21 Apr 2019

Downloads:

4,005,347

Downloads of v 8.0.211:

1,120,351

Maintainer(s):

Software Author(s):

  • Sun Microsystems/Oracle Corporation

Tags:

java jdk admin

Java SE 8.0.211

  • 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, 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:

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 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.

Package Approved

This package was approved as a trusted package on 21 Aug 2020.

Description

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'

tools\chocolateyInstall.ps1
$script_path = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
$common = $(Join-Path $script_path "common.ps1")
. $common
 
#installs jdk8
try {
    $params = "$env:chocolateyPackageParameters" 
    $params = (ConvertFrom-StringData $params.Replace(";", "`n")) 
     
    out-installdir($params)
    if (check-both($params)) {
        chocolatey-install $params $true
        chocolatey-install $params
        out-both($params)
    } else {
        out-i586($params)
        chocolatey-install $params
    }   
    set-path
} catch {
    if ($_.Exception.InnerException) {
        $msg = $_.Exception.InnerException.Message
    } else {
        $msg = $_.Exception.Message
    }
    throw 
}  
tools\chocolateyUninstall.ps1
$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
}
tools\common.ps1
$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.

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.201 157988 Wednesday, January 16, 2019 Approved
Java SE 8.0.191 178845 Wednesday, October 17, 2018 Approved

Java SE Development Kit 8u211

changes:
-8u211


This package has no dependencies.

Discussion for the Java SE Package

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