Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
90,712
Downloads of v 2.222.4:
10,282
Last Update:
28 May 2020
Package Maintainer(s):
Software Author(s):
- Kohsuke Kawaguchi
Tags:
ci- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Jenkins CI
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
90,712
Downloads of v 2.222.4:
10,282
Maintainer(s):
Software Author(s):
- Kohsuke Kawaguchi
Tags:
ciEdit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
All Checks are Passing
2 Passing Test
To install Jenkins CI, run the following command from the command line or from PowerShell:
To upgrade Jenkins CI, run the following command from the command line or from PowerShell:
To uninstall Jenkins CI, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
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
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download jenkins --internalize --source=https://community.chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://community.chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade jenkins -y --source="'STEP 3 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 jenkins -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure jenkins installed
win_chocolatey:
name: jenkins
state: present
version: 2.222.4
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'jenkins' do
action :install
version '2.222.4'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: jenkins,
Version: 2.222.4,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller jenkins
{
Name = 'jenkins'
Ensure = 'Present'
Version = '2.222.4'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'jenkins':
provider => 'chocolatey',
ensure => '2.222.4',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install jenkins version="2.222.4" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 29 May 2020.
Jenkins is an open source automation server which enables developers around the world to reliably build, test, and deploy their software.
Continuous Integration and Continuous Delivery
As an extensible automation server, Jenkins can be used as a simple CI server or turned into the continuous delivery hub for any project.Easy installation
Jenkins is a self-contained Java-based program, ready to run out-of-the-box, with packages for Windows, Mac OS X and other Unix-like operating systems.Easy configuration
Jenkins can be easily set up and configured via its web interface, which includes on-the-fly error checks and built-in help.Plugins
With hundreds of plugins in the Update Center, Jenkins integrates with practically every tool in the continuous integration and continuous delivery toolchain.Extensible
Jenkins can be extended via its plugin architecture, providing nearly infinite possibilities for what Jenkins can do.Distributed
Jenkins can easily distribute work across multiple machines, helping drive builds, tests and deployments across multiple platforms faster.
NOTE: This is an automatically updated package. If you find it is out of date by more than a week, please contact the maintainer(s) and let them know the package is no longer updating correctly.
$ErrorActionPreference = 'Stop'
# create temp directory
do {
$tempPath = Join-Path -Path $env:TEMP -ChildPath ([System.Guid]::NewGuid().ToString())
} while (Test-Path $tempPath)
New-Item -ItemType Directory -Path $tempPath | Out-Null
$zipArgs = @{
packageName = $env:ChocolateyPackageName
fileFullPath = Join-Path -Path $tempPath -ChildPath 'jenkins.zip';
destination = $tempPath
url = 'http://mirrors.jenkins-ci.org/windows-stable/jenkins-2.222.4.zip'
checksum = '5c76665c959795edd267358e1e3f8235f1cf0b9dc8f378024f8fded5a9c7f6fa'
checksumType = 'sha256'
}
Get-ChocolateyWebFile @zipArgs
Get-ChocolateyUnzip @zipArgs
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'msi'
file = Join-Path -Path $tempPath -ChildPath 'jenkins.msi'
silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`"" # ALLUSERS=1 DISABLEDESKTOPSHORTCUT=1 ADDDESKTOPICON=0 ADDSTARTMENU=0
validExitCodes= @(0, 3010, 1641)
}
Install-ChocolateyInstallPackage @packageArgs
Log in or click on link to see number of positives.
- jenkins.2.222.4.nupkg (229a2ecdfda9) - ## / 63
- jenkins-2.222.4.zip (5c76665c9597) - ## / 48
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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Jenkins CI 2.222.4 | 10282 | Thursday, May 28, 2020 | Approved |
Jenkins CI 2.222.3 | 1363 | Saturday, April 25, 2020 | Approved |
Jenkins CI 2.222.1 | 1655 | Wednesday, March 25, 2020 | Approved |
Jenkins CI 2.204.5 | 749 | Sunday, March 8, 2020 | Approved |
Jenkins CI 2.204.4 | 272 | Wednesday, March 4, 2020 | Approved |
Jenkins CI 2.204.3 | 254 | Saturday, February 29, 2020 | Approved |
Jenkins CI 2.204.2 | 869 | Wednesday, January 29, 2020 | Approved |
Jenkins CI 2.204.1 | 957 | Thursday, December 19, 2019 | Approved |
Jenkins CI 2.190.3 | 896 | Thursday, November 21, 2019 | Approved |
Jenkins CI 2.190.2 | 1054 | Tuesday, October 29, 2019 | Approved |
Jenkins CI 2.190.1 | 1254 | Wednesday, September 25, 2019 | Approved |
Jenkins CI 2.176.3 | 1094 | Wednesday, August 28, 2019 | Approved |
Jenkins CI 2.176.2 | 1200 | Wednesday, July 17, 2019 | Approved |
Jenkins CI 2.176.1 | 793 | Monday, June 10, 2019 | Approved |
Jenkins CI 2.164.3 | 766 | Friday, May 10, 2019 | Approved |
Jenkins CI 2.164.2 | 882 | Wednesday, April 10, 2019 | Approved |
Jenkins CI 2.164.1 | 1013 | Thursday, March 14, 2019 | Approved |
Jenkins CI 2.150.3 | 4791 | Monday, February 18, 2019 | Approved |
Jenkins CI 2.150.2 | 1214 | Wednesday, January 16, 2019 | Approved |
Jenkins CI 2.150.1 | 842 | Wednesday, December 5, 2018 | Approved |
Jenkins CI 2.138.3 | 547 | Friday, November 9, 2018 | Approved |
Jenkins CI 2.138.2 | 567 | Friday, October 12, 2018 | Approved |
Jenkins CI 2.138.1 | 217 | Wednesday, November 14, 2018 | Approved |
Jenkins CI 2.89.2 | 6190 | Friday, December 15, 2017 | Approved |
Jenkins CI 2.89.1 | 632 | Friday, December 8, 2017 | Approved |
Jenkins CI 2.73.3 | 662 | Tuesday, December 5, 2017 | Approved |
Jenkins CI 2.60.3 | 1824 | Wednesday, September 13, 2017 | Approved |
Jenkins CI 2.46.3 | 2339 | Friday, May 26, 2017 | Approved |
Jenkins CI 2.46.1 | 1137 | Saturday, April 8, 2017 | Approved |
Jenkins CI 2.32.3 | 2228 | Friday, March 10, 2017 | Approved |
Jenkins CI 2.32.2 | 999 | Friday, February 3, 2017 | Approved |
Jenkins CI 2.32.1 | 903 | Friday, January 6, 2017 | Approved |
Jenkins CI 2.19.4 | 1332 | Friday, December 2, 2016 | Approved |
Jenkins CI 2.19.3 | 442 | Monday, November 21, 2016 | Approved |
Jenkins CI 2.19.2 | 406 | Monday, November 14, 2016 | Approved |
Jenkins CI 2.16.0.0 | 3523 | Tuesday, August 2, 2016 | Approved |
Jenkins CI 2.0.0.0 | 482 | Thursday, April 21, 2016 | Approved |
Jenkins CI 1.654.0.0 | 836 | Tuesday, March 22, 2016 | Approved |
Jenkins CI 1.652.0.0 | 349 | Tuesday, March 8, 2016 | Approved |
Jenkins CI 1.650.0.0 | 301 | Thursday, February 25, 2016 | Approved |
Jenkins CI 1.649.0.0 | 284 | Monday, February 22, 2016 | Approved |
Jenkins CI 1.648.0.0 | 317 | Thursday, February 18, 2016 | Approved |
Jenkins CI 1.647.0.0 | 361 | Thursday, February 4, 2016 | Approved |
Jenkins CI 1.646.0.0 | 309 | Wednesday, January 27, 2016 | Approved |
Jenkins CI 1.645.0.0 | 358 | Wednesday, January 20, 2016 | Approved |
Jenkins CI 1.644.0.0 | 360 | Monday, January 11, 2016 | Approved |
Jenkins CI 1.643.0.0 | 473 | Monday, January 4, 2016 | Approved |
Jenkins CI 1.641.0.0 | 425 | Thursday, December 10, 2015 | Approved |
Jenkins CI 1.640.0.0 | 392 | Monday, December 7, 2015 | Approved |
Jenkins CI 1.639.0.0 | 344 | Monday, November 30, 2015 | Approved |
Jenkins CI 1.638.0.0 | 370 | Tuesday, November 24, 2015 | Approved |
Jenkins CI 1.632.0.0 | 666 | Thursday, October 8, 2015 | Approved |
Jenkins CI 1.629.0.0 | 548 | Tuesday, September 15, 2015 | Approved |
Jenkins CI 1.628.0.0 | 323 | Tuesday, September 8, 2015 | Approved |
Jenkins CI 1.627.0.0 | 352 | Monday, August 31, 2015 | Approved |
Jenkins CI 1.626.0.0 | 354 | Monday, August 24, 2015 | Approved |
Jenkins CI 1.624.0.0 | 440 | Monday, August 10, 2015 | Approved |
Jenkins CI 1.623.0.0 | 339 | Monday, August 3, 2015 | Approved |
Jenkins CI 1.620.0.0 | 336 | Wednesday, July 15, 2015 | Approved |
Jenkins CI 1.619.0.0 | 292 | Thursday, July 9, 2015 | Approved |
Jenkins CI 1.618.0.0 | 337 | Monday, June 29, 2015 | Approved |
Jenkins CI 1.617.0.0 | 394 | Monday, June 8, 2015 | Approved |
Jenkins CI 1.615.0.0 | 378 | Tuesday, May 26, 2015 | Approved |
Jenkins CI 1.612.0.0 | 453 | Monday, May 4, 2015 | Approved |
Jenkins CI 1.611.0.0 | 349 | Monday, April 27, 2015 | Approved |
Jenkins CI 1.610.0.0 | 319 | Tuesday, April 21, 2015 | Approved |
Jenkins CI 1.609.0.0 | 302 | Monday, April 13, 2015 | Approved |
Jenkins CI 1.608.0.0 | 280 | Monday, April 13, 2015 | Approved |
Jenkins CI 1.607.0.0 | 385 | Tuesday, March 31, 2015 | Approved |
Jenkins CI 1.606.0.0 | 429 | Tuesday, March 24, 2015 | Approved |
Jenkins CI 1.605.0.0 | 348 | Tuesday, March 17, 2015 | Approved |
Jenkins CI 1.602.0.0 | 334 | Monday, March 9, 2015 | Approved |
Jenkins CI 1.601.0.0 | 397 | Wednesday, March 4, 2015 | Approved |
Jenkins CI 1.599.0.0 | 380 | Wednesday, February 18, 2015 | Approved |
Jenkins CI 1.598.0.0 | 400 | Monday, February 9, 2015 | Approved |
Jenkins CI 1.597.0.0 | 352 | Monday, January 19, 2015 | Approved |
Jenkins CI 1.596.0.0 | 486 | Monday, January 5, 2015 | Approved |
Jenkins CI 1.595.0.0 | 381 | Monday, December 22, 2014 | Approved |
Jenkins CI 1.594.0.0 | 355 | Friday, December 19, 2014 | Approved |
Jenkins CI 1.593.0.0 | 420 | Monday, December 8, 2014 | Approved |
Jenkins CI 1.592.0.0 | 341 | Friday, December 5, 2014 | Approved |
Jenkins CI 1.590.0.0 | 478 | Monday, November 17, 2014 | Approved |
Jenkins CI 1.589.0.0 | 298 | Wednesday, November 12, 2014 | Approved |
Jenkins CI 1.588.0.0 | 346 | Thursday, November 6, 2014 | Approved |
Jenkins CI 1.585.0.0 | 356 | Sunday, October 26, 2014 | Approved |
Jenkins CI 1.570.0.0 | 663 | Monday, June 30, 2014 | Approved |
Jenkins CI 1.569.0.0 | 378 | Tuesday, June 24, 2014 | Approved |
Jenkins CI 1.568.0.0 | 337 | Wednesday, June 18, 2014 | Approved |
Jenkins CI 1.567.0.0 | 301 | Wednesday, June 11, 2014 | Approved |
Jenkins CI 1.566.0.0 | 324 | Friday, June 6, 2014 | Approved |
Jenkins CI 1.565.0.0 | 369 | Tuesday, May 27, 2014 | Approved |
Jenkins CI 1.564.0.0 | 301 | Friday, May 23, 2014 | Approved |
Jenkins CI 1.563.0.0 | 323 | Tuesday, May 13, 2014 | Approved |
Jenkins CI 1.562.0.0 | 307 | Tuesday, May 6, 2014 | Approved |
Jenkins CI 1.561.0.0 | 347 | Wednesday, April 30, 2014 | Approved |
Jenkins CI 1.559.0.0 | 352 | Tuesday, April 15, 2014 | Approved |
Jenkins CI 1.558.0.0 | 334 | Monday, April 7, 2014 | Approved |
Jenkins CI 1.557.0.0 | 358 | Friday, April 4, 2014 | Approved |
Jenkins CI 1.556.0.0 | 332 | Friday, March 28, 2014 | Approved |
Jenkins CI 1.555.0.0 | 360 | Friday, March 21, 2014 | Approved |
Jenkins CI 1.552.0.0 | 372 | Friday, February 28, 2014 | Approved |
Jenkins CI 1.551.0.0 | 356 | Sunday, February 16, 2014 | Approved |
Jenkins CI 1.550.0.0 | 350 | Wednesday, February 12, 2014 | Approved |
Jenkins CI 1.549.0.0 | 400 | Tuesday, January 28, 2014 | Approved |
Jenkins CI 1.548.0.0 | 341 | Tuesday, January 21, 2014 | Approved |
Jenkins CI 1.543.0.0 | 422 | Thursday, December 12, 2013 | Approved |
Jenkins CI 1.542.0.0 | 335 | Wednesday, December 4, 2013 | Approved |
Jenkins CI 1.541.0.0 | 336 | Tuesday, November 26, 2013 | Approved |
Jenkins CI 1.540.0.0 | 374 | Tuesday, November 19, 2013 | Approved |
Jenkins CI 1.539.0.0 | 370 | Friday, November 15, 2013 | Approved |
Jenkins CI 1.538.0.0 | 379 | Monday, November 4, 2013 | Approved |
Jenkins CI 1.536.0.0 | 403 | Tuesday, October 22, 2013 | Approved |
Jenkins CI 1.532.0.0 | 377 | Thursday, September 26, 2013 | Approved |
Jenkins CI 1.530.0.0 | 370 | Tuesday, September 10, 2013 | Approved |
Jenkins CI 1.529.0.0 | 394 | Tuesday, August 27, 2013 | Approved |
Jenkins CI 1.528.0.0 | 336 | Tuesday, August 20, 2013 | Approved |
Jenkins CI 1.527.0.0 | 327 | Wednesday, August 14, 2013 | Approved |
Jenkins CI 1.525.0.0 | 367 | Tuesday, July 30, 2013 | Approved |
Jenkins CI 1.524.0.0 | 391 | Thursday, July 25, 2013 | Approved |
Jenkins CI 1.520.0.0 | 380 | Wednesday, June 26, 2013 | Approved |
Jenkins CI 1.519.0.0 | 367 | Wednesday, June 19, 2013 | Approved |
Jenkins CI 1.517.0.0 | 340 | Tuesday, June 4, 2013 | Approved |
Jenkins CI 1.516.0.0 | 335 | Tuesday, May 28, 2013 | Approved |
Jenkins CI 1.515.0.0 | 351 | Thursday, May 23, 2013 | Approved |
Jenkins CI 1.514.0.0 | 384 | Thursday, May 16, 2013 | Approved |
Jenkins CI 1.500.0.0 | 443 | Friday, February 1, 2013 | Approved |
Jenkins CI 1.499.0.0 | 378 | Sunday, January 20, 2013 | Approved |
2018 Kohsuke Kawaguchi
This package has no dependencies.
Ground Rules:
- This discussion is only about Jenkins CI and the Jenkins CI 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 Jenkins CI, 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.