
2,005,509
Downloads
18,792
Downloads of v 2018.7.5
7/6/2018
Last update
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
Example: choco install sysinternals --params "/InstallDir:C:\your\install\path"
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.
To install Sysinternals, run the following command from the command line or from PowerShell:
C:\> choco install sysinternals
--version 2018.7.5
To upgrade Sysinternals, run the following command from the command line or from PowerShell:
C:\> choco upgrade sysinternals
--version 2018.7.5
Files
Hide- tools\chocolateyInstall.ps1
Show
$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 = 'b4be0d2e3b35b1c8b9bbc001a0dd3ae4db59bdb2a1ceeabd744a54002fb64c2c' 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 = 'bfff457db201fe022dc528a13200e080281b950ad2c6ca0c85957b6caef2cd2c' } $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" }
- tools\helpers.ps1
Show
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); }
Virus Scan Results
- sysinternals.2018.7.5.nupkg (6939db7c266d) - ## / 60 - Log in or click on link to see number of positives
- SysinternalsSuite.zip (b4be0d2e3b35) - ## / 60 - Log in or click on link to see number of positives
Dependencies
-
- chocolatey-core.extension (≥ 1.3.3)
Package Maintainer(s)
Software Author(s)
Tags
Version History
Version | Downloads | Last updated | Status |
---|---|---|---|
Sysinternals 2018.12.27 | 150101 | Friday, December 28, 2018 | approved |
Sysinternals 2018.12.18 | 12330 | Wednesday, December 19, 2018 | approved |
Sysinternals 2018.12.14 | 9652 | Saturday, December 15, 2018 | approved |
Sysinternals 2018.12.13 | 6373 | Friday, December 14, 2018 | approved |
Sysinternals 2018.10.16 | 50159 | Wednesday, October 17, 2018 | approved |
Sysinternals 2018.8.8 | 56162 | Wednesday, August 8, 2018 | approved |
Sysinternals 2018.7.19 | 22583 | Friday, July 20, 2018 | approved |
Sysinternals 2018.7.5 | 18792 | Friday, July 6, 2018 | approved |
Sysinternals 2018.5.31 | 36738 | Friday, June 1, 2018 | approved |
Sysinternals 2018.5.14 | 25038 | Monday, May 14, 2018 | approved |
Discussion for the Sysinternals Package
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.