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:
3,712,967
Downloads of v 2017.12.13:
14,401
Last Update:
13 Dec 2017
Package Maintainer(s):
Software Author(s):
- Mark Russinovich
- Bryce Cogswell
Tags:
sysinternals troubleshooting pstools psexec file disk utilities freeware cli tools portable- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Sysinternals
This is not the latest version of Sysinternals available.
- 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:
3,712,967
Downloads of v 2017.12.13:
14,401
Maintainer(s):
Software Author(s):
- Mark Russinovich
- Bryce Cogswell
Edit 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.
Sysinternals 2017.12.13
This is not the latest version of Sysinternals available.
All Checks are Passing
2 Passing Test
To install Sysinternals, run the following command from the command line or from PowerShell:
To upgrade Sysinternals, run the following command from the command line or from PowerShell:
To uninstall Sysinternals, 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://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 sysinternals --internalize --version=2017.12.13 --source=https://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://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade sysinternals -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 sysinternals -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 sysinternals installed
win_chocolatey:
name: sysinternals
state: present
version: 2017.12.13
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'sysinternals' do
action :install
version '2017.12.13'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: sysinternals,
Version: 2017.12.13,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller sysinternals
{
Name = 'sysinternals'
Ensure = 'Present'
Version = '2017.12.13'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'sysinternals':
provider => 'chocolatey',
ensure => '2017.12.13',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install sysinternals version="2017.12.13" 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 13 Dec 2017.
The Sysinternals Troubleshooting Utilities have been rolled up into a single suite of tools.
This file contains the individual troubleshooting tools and help files.
It does not contain non-troubleshooting tools like the BSOD Screen Saver or NotMyFault.
Package parameters
/InstallDir
- Installation directory, by default Chocolatey tools directory./InstallationPath
- the same asInstallDir
Notes
- This package by default installs to tools directory which will create shims for all applications. When you install to different directory, shims are not created but directory is added to the PATH.
- This package now downloads the nano edition of sysinternals on nano servers.
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1
$pp = Get-PackageParameters
$installDir = $toolsPath
if ($pp.InstallDir -or $pp.InstallationPath ) { $InstallDir = $pp.InstallDir + $pp.InstallationPath }
Write-Host "Sysinternals Suite is going to be installed in '$installDir'"
$packageArgs = @{
packageName = 'sysinternals'
url = 'https://download.sysinternals.com/files/SysinternalsSuite.zip'
checksum = '522d1b52e9a1ef15663b34fb7494a28f81e30376243e0d9d453c9f27219955ac'
checksumType = 'sha256'
unzipLocation = $installDir
}
Install-ChocolateyZipPackage @packageArgs
Accept-Eula
if ($installDir -ne $toolsPath) { Install-ChocolateyPath $installDir }
if (Is-NanoServer) {
$packageArgs.url = 'https://download.sysinternals.com/files/SysinternalsSuite-Nano.zip'
$packageArgs.checksum = '369c8906e82d51bfa0a636392aa9d8ecc0ed025609aabead8ea18d5925a2761e'
}
$old_path = 'c:\sysinternals'
if ((Test-Path $old_path) -and ($installDir -ne $old_path)) {
Write-Warning "Clean up older versions of this install at c:\sysinternals"
}
function Accept-Eula() {
$tools = `
"AccessChk", "Active Directory Explorer", "ADInsight", "Autologon", "AutoRuns",
"BGInfo", "CacheSet", "ClockRes", "Coreinfo", "Ctrl2cap",
"DbgView", "Desktops", "Disk2Vhd", "Diskmon", "DiskView",
"Du", "EFSDump", "FindLinks", "Handle", "Hex2Dec",
"Junction", "LdmDump", "ListDLLs", "LoadOrder", "Movefile",
"PageDefrag", "PendMove", "PipeList", "Portmon", "ProcDump",
"Process Explorer", "Process Monitor", "PsExec", "psfile", "PsGetSid",
"PsInfo", "PsKill", "PsList", "PsLoggedon", "PsLoglist",
"PsPasswd", "PsService", "PsShutdown", "PsSuspend", "RamMap",
"RegDelNull", "Regjump", "Regsize", "RootkitRevealer", "Share Enum",
"ShellRunas", "SigCheck", "Streams", "Strings", "Sync",
"System Monitor", "TCPView", "VMMap", "VolumeID", "Whois",
"Winobj", "ZoomIt"
$root_path = "HKCU:\SOFTWARE\Sysinternals"
mkdir "$root_path" -ea 0 | Out-Null
foreach($tool in $tools) {
mkdir "$root_path\$tool" -ea 0 | Out-Null
New-ItemProperty -Path "$root_path\$tool" -Name EulaAccepted -Value 1 -Force | Out-Null
}
$vt = "$root_path\SigCheck\VirusTotal"
mkdir $vt -ea 0 | Out-Null
New-ItemProperty -Path $vt -Name VirusTotalTermsAccepted -Value 1 -Force | Out-Null
}
function Is-NanoServer() {
# This would be true for both nano servers, and IoT devices.
if ($PSVersionTable.PSEdition -ne 'Core') { return $false }
# 143 = Datacenter nano server
# 144 = Standard nano server
$sku = (Get-CimInstance -ClassName Win32_OperatingSystem).OperatingSystemSKU
return ($sku -eq 143) -or ($sku -eq 144);
}
Log in or click on link to see number of positives.
- SysinternalsSuite.zip (522d1b52e9a1) - ## / 60
- sysinternals.2017.12.13.nupkg (8b8b36206d44) - ## / 60
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 |
---|---|---|---|
Sysinternals 2021.2.22 | 3352 | Thursday, February 25, 2021 | Approved |
Sysinternals 2021.1.19 | 67100 | Wednesday, January 20, 2021 | Approved |
Sysinternals 2021.1.15 | 21854 | Friday, January 15, 2021 | Approved |
Sysinternals 2021.1.12 | 15877 | Wednesday, January 13, 2021 | Approved |
Sysinternals 2021.1.11 | 17070 | Monday, January 11, 2021 | Approved |
Sysinternals 2020.11.25 | 69631 | Wednesday, November 25, 2020 | Approved |
Sysinternals 2020.11.4 | 51095 | Thursday, November 5, 2020 | Approved |
Sysinternals 2020.10.15 | 47511 | Friday, October 16, 2020 | Approved |
Sysinternals 2020.9.18 | 91166 | Friday, September 18, 2020 | Approved |
Sysinternals 2020.9.17 | 8900 | Thursday, September 17, 2020 | Approved |
Sysinternals 2020.7.15 | 87035 | Wednesday, July 15, 2020 | Approved |
Sysinternals 2020.6.24 | 37500 | Wednesday, June 24, 2020 | Approved |
Sysinternals 2020.4.28 | 92778 | Wednesday, April 29, 2020 | Approved |
Sysinternals 2019.12.19 | 266255 | Thursday, December 19, 2019 | Approved |
Sysinternals 2019.12.11 | 42113 | Thursday, December 12, 2019 | Approved |
Sysinternals 2019.9.23 | 194438 | Monday, September 23, 2019 | Approved |
Sysinternals 2019.9.16 | 21758 | Monday, September 16, 2019 | Approved |
Sysinternals 2019.9.5 | 38092 | Friday, September 6, 2019 | Approved |
Sysinternals 2019.6.29.20190904 | 13648 | Wednesday, September 4, 2019 | Approved |
Sysinternals 2019.6.29 | 183813 | Saturday, June 29, 2019 | Approved |
Sysinternals 2019.6.14 | 26174 | Friday, June 14, 2019 | Approved |
Sysinternals 2019.6.12 | 10105 | Thursday, June 13, 2019 | Approved |
Sysinternals 2019.6.11 | 10207 | Wednesday, June 12, 2019 | Approved |
Sysinternals 2019.6.5 | 24630 | Wednesday, June 5, 2019 | Approved |
Sysinternals 2019.4.23 | 74517 | Tuesday, April 23, 2019 | Approved |
Sysinternals 2019.4.4 | 56905 | Thursday, April 4, 2019 | Approved |
Sysinternals 2019.3.26 | 27992 | Tuesday, March 26, 2019 | Approved |
Sysinternals 2019.3.18 | 25061 | Monday, March 18, 2019 | Approved |
Sysinternals 2019.3.5 | 31282 | Tuesday, March 5, 2019 | Approved |
Sysinternals 2019.2.19 | 29972 | Tuesday, February 19, 2019 | Approved |
Sysinternals 2018.12.27 | 152841 | Friday, December 28, 2018 | Approved |
Sysinternals 2018.12.18 | 12452 | Wednesday, December 19, 2018 | Approved |
Sysinternals 2018.12.14 | 10011 | Saturday, December 15, 2018 | Approved |
Sysinternals 2018.12.13 | 6488 | Friday, December 14, 2018 | Approved |
Sysinternals 2018.10.16 | 56100 | Wednesday, October 17, 2018 | Approved |
Sysinternals 2018.8.8 | 58435 | Wednesday, August 8, 2018 | Approved |
Sysinternals 2018.7.19 | 23100 | Friday, July 20, 2018 | Approved |
Sysinternals 2018.7.5 | 18942 | Friday, July 6, 2018 | Approved |
Sysinternals 2018.5.31 | 36877 | Friday, June 1, 2018 | Approved |
Sysinternals 2018.5.14 | 25191 | Monday, May 14, 2018 | Approved |
Sysinternals 2018.4.30 | 23889 | Monday, April 30, 2018 | Approved |
Sysinternals 2018.2.13 | 89361 | Wednesday, February 14, 2018 | Approved |
Sysinternals 2018.2.11 | 7864 | Monday, February 12, 2018 | Approved |
Sysinternals 2018.1.18 | 28185 | Friday, January 19, 2018 | Approved |
Sysinternals 2018.1.5 | 18813 | Saturday, January 6, 2018 | Approved |
Sysinternals 2018.1.2 | 9851 | Wednesday, January 3, 2018 | Approved |
Sysinternals 2017.12.31 | 6674 | Sunday, December 31, 2017 | Approved |
Sysinternals 2017.12.21 | 13697 | Thursday, December 21, 2017 | Approved |
Sysinternals 2017.12.13 | 14401 | Wednesday, December 13, 2017 | Approved |
Sysinternals 2017.12.12 | 398131 | Wednesday, December 13, 2017 | Approved |
Sysinternals 2017.11.21 | 409618 | Tuesday, November 21, 2017 | Approved |
Sysinternals 2017.9.12 | 61461 | Tuesday, September 12, 2017 | Approved |
Sysinternals 2017.9.11 | 4819 | Tuesday, September 12, 2017 | Approved |
Sysinternals 2017.6.30 | 57376 | Friday, June 30, 2017 | Approved |
Sysinternals 2017.6.14 | 18187 | Wednesday, June 14, 2017 | Approved |
Sysinternals 2017.5.22.20170609 | 10347 | Friday, June 9, 2017 | Approved |
Sysinternals 2017.05.22 | 18951 | Monday, May 22, 2017 | Approved |
Sysinternals 2017.5.16.20170518 | 8326 | Thursday, May 18, 2017 | Approved |
Sysinternals 2017.05.16 | 8241 | Tuesday, May 16, 2017 | Approved |
Sysinternals 2017.2.17.20170317 | 44246 | Friday, March 17, 2017 | Approved |
Sysinternals 2017.02.17 | 29220 | Friday, February 17, 2017 | Approved |
Sysinternals 2016.11.18 | 56521 | Wednesday, November 23, 2016 | Approved |
Sysinternals 2016.08.29 | 62165 | Wednesday, August 31, 2016 | Approved |
Sysinternals 2016.07.29 | 25297 | Wednesday, August 3, 2016 | Approved |
Sysinternals 2016.07.04 | 9286 | Sunday, July 17, 2016 | Approved |
Sysinternals 2016.04.28 | 390 | Sunday, May 8, 2016 | Approved |
Sysinternals 2016.02.02 | 22296 | Friday, February 5, 2016 | Approved |
Sysinternals 2016.01.04.20160120 | 8035 | Wednesday, January 20, 2016 | Approved |
Sysinternals 2016.01.04 | 4519 | Wednesday, January 13, 2016 | Approved |
Sysinternals 2015.10.26 | 16182 | Wednesday, October 28, 2015 | Approved |
Sysinternals 2015.07.20 | 19985 | Tuesday, July 21, 2015 | Approved |
Sysinternals 2015.05.31 | 9350 | Sunday, May 31, 2015 | Approved |
Sysinternals 2015.05.26 | 1858 | Wednesday, May 27, 2015 | Approved |
Sysinternals 2015.04.20 | 7627 | Tuesday, April 21, 2015 | Approved |
Sysinternals 2015.03.10 | 7208 | Friday, March 13, 2015 | Approved |
Sysinternals 2015.01.29 | 7130 | Friday, January 30, 2015 | Approved |
Sysinternals 2015.01.19 | 397 | Tuesday, January 20, 2015 | Approved |
Sysinternals 2014.09.11 | 14413 | Saturday, September 13, 2014 | Approved |
Sysinternals 2014.08.18 | 3259 | Wednesday, August 20, 2014 | Approved |
Sysinternals 2014.08.05 | 1941 | Saturday, August 9, 2014 | Approved |
Sysinternals 2014.05.13 | 38351 | Wednesday, May 14, 2014 | Approved |
Sysinternals 2014.03.07 | 5454 | Saturday, March 8, 2014 | Approved |
Sysinternals 2014.02.04 | 2279 | Wednesday, February 5, 2014 | Approved |
Sysinternals 2014.01.29 | 878 | Thursday, January 30, 2014 | Approved |
Sysinternals 2014.01.21 | 942 | Wednesday, January 22, 2014 | Approved |
Sysinternals 2013.12.19.20140121 | 569 | Tuesday, January 21, 2014 | Approved |
Sysinternals 2013.12.19 | 1579 | Wednesday, January 1, 2014 | Approved |
Sysinternals 2013.11.01 | 2321 | Saturday, November 2, 2013 | Approved |
Sysinternals 2013.08.01.20130912 | 1799 | Thursday, September 12, 2013 | Approved |
Sysinternals 2013.08.01 | 564 | Tuesday, September 10, 2013 | Approved |
Sysinternals 1.2012.05.14 | 6784 | Tuesday, May 15, 2012 | Approved |
Sysinternals 1.2012.03.23 | 613 | Monday, April 9, 2012 | Approved |
Sysinternals 1.2012.2.3 | 695 | Friday, February 3, 2012 | Approved |
Sysinternals 1.2011.12.15 | 550 | Saturday, December 17, 2011 | Approved |
Sysinternals 1.0.0.2 | 658 | Tuesday, August 23, 2011 | Approved |
Sysinternals 1.0.0.1 | 479 | Tuesday, August 23, 2011 | Approved |
Sysinternals 1.0 | 667 | Tuesday, August 23, 2011 | Approved |
-
- chocolatey-core.extension (≥ 1.3.3)
Ground Rules:
- This discussion is only about Sysinternals and the Sysinternals 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 Sysinternals, 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.