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:

161,124

Downloads of v 7.0.79:

4,011

Last Update:

04 Aug 2015

Package Maintainer(s):

Software Author(s):

  • Oracle

Tags:

java jdk jre debugger

Java Platform (JDK)

  • 1
  • 2
  • 3

7.0.79 | Updated: 04 Aug 2015

Downloads:

161,124

Downloads of v 7.0.79:

4,011

Maintainer(s):

Software Author(s):

  • Oracle

Java Platform (JDK) 7.0.79

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

No detections found in any package files

Details
Package Approved

This package was approved by moderator ferventcoder on 13 Aug 2015.

WARNING

This package is unlisted and hidden from package listings.

Description

Java Development Kit. Includes a complete JRE plus tools for developing, debugging, and monitoring Java applications.

http://www.oracle.com/technetwork/java/javase/downloads/index.html


tools\chocolateyInstall.ps1
$customArgs = $env:chocolateyInstallArguments

$script_path = $(Split-Path -parent $MyInvocation.MyCommand.Definition)

$common = $(Join-Path $script_path "common.ps1")
. $common

try {
#    $params = "$env:chocolateyPackageParameters" # -params '"x64=false;path=c:\\java\\jdk"'
#    $params = (ConvertFrom-StringData $params.Replace(";", "`n")) 
    
    if (checkIfInstalled)
    {
        Write-Host "JDK $java_version already installed."
        return
    } 

	# Download JDK file and store locally
	$arch = get-arch
    $jdk_file = download-jdk

	# Install JDK
    Install-ChocolateyInstallPackage $package 'exe' "/s" $jdk_file          
	
	# Add java bin folder to Path
	$java_bin = get-java-bin
	Write-Host "Adding $java_bin to the Path"    
    Install-ChocolateyPath $java_bin 'Machine' 
	Write-Host "Completed Adding $java_bin to the Path"	

	# Add CLASSPATH environment variable if it doesn't exist
    if ([Environment]::GetEnvironmentVariable('CLASSPATH','Machine') -eq $null) {
		Write-Host "Adding CLASSPATH Environment Variable"    
        Install-ChocolateyEnvironmentVariable 'CLASSPATH' '.;' 'Machine'
		Write-Host "Completed Adding CLASSPATH Environment Variable"    
    }

	# Add JAVA_HOME environment variable if it doesn't exist

    if ([Environment]::GetEnvironmentVariable('JAVA_HOME','Machine') -eq $null) {
		Write-Host "Adding JAVA_HOME Environment Variable"    
        Install-ChocolateyEnvironmentVariable 'JAVA_HOME' $java_home 'Machine'
		Write-Host "Completed Adding JAVA_HOME Environment Variable"    
    }
	
} catch {    
    throw 
}  
tools\chocolateyuninstall.ps1
$script_path = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
$common = $(Join-Path $script_path "common.ps1")
. $common

# Function to remove a value from the Machine Environment Variable path value
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 "Starting PATH environment variable update to remove $pathToUninstall"
    $actualPath = [Environment]::GetEnvironmentVariable('Path', $pathType)

    $statementTerminator = ";"
    $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)
    }    
    
    $env:Path = $actualPath
	
	Write-Host "Completed PATH environment variable update to remove $pathToUninstall"
  }
}

# Helper function to figure out the GUID to use with msiexec to uninstall JDK and JRE versions that are installed for this package
# The GUID changes depending on if OS is x64 or i386
function Uninstall-JDK-And-JRE {
    $use64bit = use64bit
    if ($use64bit) {
        # HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{64A3A4F4-B792-11D6-A78A-00B0D0170720}
        $jdk = " /qn /x {64A3A4F4-B792-11D6-A78A-00B0D0" + $uninstall_id + "0}"       
        # HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{26A24AE4-039D-4CA4-87B4-2F06417072FF}
        $jre = " /qn /x {26A24AE4-039D-4CA4-87B4-2F064" + $uninstall_id + "FF}"   
    } else {
        $jdk = " /qn /x {32A3A4F4-B792-11D6-A78A-00B0D0" + $uninstall_id + "0}"
        $jre = " /qn /x {26A24AE4-039D-4CA4-87B4-2F832" + $uninstall_id + "FF}"   
    }
     Write-Host "Uninstalling JDK"
     Start-ChocolateyProcessAsAdmin $jdk 'msiexec'
     Write-Host "Completed Uninstalling JDK"
     
     Write-Host "Uninstalling JRE"
     Start-ChocolateyProcessAsAdmin $jre 'msiexec'
     Write-Host "Completed Uninstalling JRE"
}

try {  

  # Uninstall JRE and JDK
  $java_bin = get-java-bin  

  Uninstall-JDK-And-JRE

  # Remove java-bin from the Environment path
  Uninstall-ChocolateyPath $java_bin 'Machine'
  
  # If CLASSPATH environment variable exist, make it null
  if ([Environment]::GetEnvironmentVariable('CLASSPATH','Machine') -eq '.;') {
        Write-Host "Uninstalled Machine Environment Variable 'CLASSPATH'"
        Install-ChocolateyEnvironmentVariable 'CLASSPATH' $null 'Machine'
  }
  
  # If JAVA_HOME environment variable equal to this version of the JDK, make it null
  if ([Environment]::GetEnvironmentVariable('JAVA_HOME','Machine') -eq "$java_home") {
	Write-Host "Making Machine Environment Variable 'JAVA_HOME' blank"
	Install-ChocolateyEnvironmentVariable 'JAVA_HOME' $null 'Machine'
	Write-Host "Completed Making Machine Environment Variable 'JAVA_HOME' blank"
  }
  
} catch {
    throw 
}
tools\common.ps1
$package = 'jdk7'
$build = '15'
$jdk_version = '7u79' 
$java_version = "1.7.0_79"
$uninstall_id = "17079" 
$jdkRegistryPath = "HKLM:\SOFTWARE\JavaSoft\Java Development Kit\$java_version"
# Check if OS is 32 bit or 64 Bit
function use64bit() {
    $is64bitOS = (Get-WmiObject -Class Win32_ComputerSystem).SystemType -match '(x64)'
    return $is64bitOS
}

# Check if a file exist or not
function has_file($filename) {
    return Test-Path $filename
}

# Get the Program Files Directory
function get-programfilesdir() {
    $programFiles = (Get-Item "Env:ProgramFiles").Value

    return $programFiles
}

# Check if JDK Version is already installed or not
function checkIfInstalled()
{
	$isInstalled = Test-Path -Path $jdkRegistryPath

	Write-Debug "Jdk $java_version Is Installed: $isInstalled"
	return $isinstalled	
}

# Helper function to properly download a given JDK version from Oracle
# Key for this to work is to set the Header Cookie Information
# Will only if it doesn't already exist on the local system
function download-from-oracle($url, $output_filename) {
    if (-not (has_file($output_fileName))) {
        Write-Host  "Downloading JDK from $url"

        [System.Net.ServicePointManager]::ServerCertificateValidationCallback = { $true }
        $client = New-Object Net.WebClient
        $client.Proxy = [System.Net.WebRequest]::DefaultWebProxy
        $client.Headers.Add('Cookie', 'gpw_e24=http://www.oracle.com; oraclelicense=accept-securebackup-cookie')
        $client.DownloadFile($url, $output_filename)
        
        Write-Host  "Completed Downloading JDK from $url"
    }  
}

# Download the JDK version that we need.
function download-jdk() {
    
    $filename = "jdk-$jdk_version-windows-$arch.exe"
    $url = "http://download.oracle.com/otn-pub/java/jdk/$jdk_version-b$build/$filename"
    $output_filename = Join-Path $script_path $filename
	
    download-from-oracle $url $output_filename
	
    return $output_filename
}


# Figure out where the JAVA_HOME directory is
function get-java-home() {    
    return (Get-ItemProperty -path $jdkRegistryPath -name "JavaHome") | select -expandproperty JavaHome
}

# Figure out where the JAVA_HOME bin directory is
function get-java-bin() {
    $java_home = get-java-home
    return Join-Path $java_home 'bin'
}

# Helper function to figure out the architecture for the oracle download.  
# Either x64 or i586
function get-arch() {
    if(use64bit) {
        return "x64"
    } else {
        return "i586"
    }
}

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

This package has no dependencies.

Discussion for the Java Platform (JDK) Package

Ground Rules:

  • This discussion is only about Java Platform (JDK) and the Java Platform (JDK) 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 Platform (JDK), 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