Downloads:
29,207
Downloads of v 10.0.2:
19,264
Last Update:
17 Jul 2018
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
10.0.2 | Updated: 17 Jul 2018
- 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:
29,207
Downloads of v 10.0.2:
19,264
Maintainer(s):
Software Author(s):
- Sun Microsystems/Oracle Corporation
Java SE 10.0.2
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
This package was approved by moderator gep13 on 19 Jul 2018.
This package is unlisted and hidden from package listings.
By default this package installs JDK with source codes(zip).
If you don't want to install source codes
choco install jdk10 -params "source=false"
If you want auto update
choco install jdk10 -params "static=false"
If you want to specfiy install directory (you need \\ for escape)
choco install jdk10 -params 'installdir=c:\\java10'
$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
}
}
function Uninstall-JDK {
$jdk = "/qn /x {41150763-08D2-5FDA-90D8-20618BEA61D0}"
Start-ChocolateyProcessAsAdmin $jdk 'msiexec'
}
try {
Uninstall-JDK
$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 = '10.0.2'
$build = '13'
$id = "19aef61b38124481863b1413dce1855f"
$script_path = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
function has_file($filename) {
return Test-Path $filename
}
function get-programfilesdir() {
$programFiles = (Get-Item "Env:ProgramFiles").Value
return $programFiles
}
function download-from-oracle($url, $output_filename) {
if (-not (has_file($output_fileName))) {
Write-Host "Downloading JDK from $url"
try {
[System.Net.ServicePointManager]::ServerCertificateValidationCallback = { $true }
$client = New-Object Net.WebClient
$dummy = $client.Headers.Add('Cookie', 'gpw_e24=http://www.oracle.com; oraclelicense=accept-securebackup-cookie')
$defaultCreds = [System.Net.CredentialCache]::DefaultCredentials
if ($defaultCreds -ne $null) {
$client.Credentials = $defaultCreds
}
# Copy from https://github.com/chocolatey/choco/blob/master/src/chocolatey.resources/helpers/functions/Get-WebFile.ps1
# check if a proxy is required
$explicitProxy = $env:chocolateyProxyLocation
$explicitProxyUser = $env:chocolateyProxyUser
$explicitProxyPassword = $env:chocolateyProxyPassword
if ($explicitProxy -ne $null) {
# explicit proxy
$proxy = New-Object System.Net.WebProxy($explicitProxy, $true)
if ($explicitProxyPassword -ne $null) {
$passwd = ConvertTo-SecureString $explicitProxyPassword -AsPlainText -Force
$proxy.Credentials = New-Object System.Management.Automation.PSCredential ($explicitProxyUser, $passwd)
}
Write-Host "Using explicit proxy server '$explicitProxy'."
$client.Proxy = $proxy
} elseif (!$client.Proxy.IsBypassed($url)) {
# system proxy (pass through)
$creds = [net.CredentialCache]::DefaultCredentials
if ($creds -eq $null) {
Write-Debug "Default credentials were null. Attempting backup method"
$cred = get-credential
$creds = $cred.GetNetworkCredential();
}
$proxyaddress = $client.Proxy.GetProxy($url).Authority
Write-Host "Using system proxy server '$proxyaddress'."
$proxy = New-Object System.Net.WebProxy($proxyaddress)
$proxy.Credentials = $creds
$client.Proxy = $proxy
}
$dummy = $client.DownloadFile($url, $output_filename)
} finally {
[System.Net.ServicePointManager]::ServerCertificateValidationCallback = $null
}
}
}
function download-jdk-file($url, $output_filename) {
$dummy = download-from-oracle $url $output_filename
}
function download-jdk() {
$filename = "jdk-" + $jdk_version + "_windows-x64_bin.exe"
$url = "http://download.oracle.com/otn-pub/java/jdk/$jdk_version+$build/$id/$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-" + $jdk_version)
}
function get-java-bin() {
$java_home = get-java-home
return Join-Path $java_home 'bin'
}
function chocolatey-install($params) {
$jdk_file = download-jdk
$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 += '"'
Install-ChocolateyInstallPackage 'jdk10' '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-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.
- jdk10.10.0.2.nupkg (298f2a801c49) - ## / 61
- jdk-10.0.2_windows-x64_bin.exe (bd2aa173db14) - ## / 64
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.
Java SE Development Kit 10.0.2
changes:
-10.0.2
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.