Skip to content

Instantly share code, notes, and snippets.

@Kazark
Created June 30, 2016 20:46
Show Gist options
  • Save Kazark/649b511d4e4ef672ef521504739fa3e4 to your computer and use it in GitHub Desktop.
Save Kazark/649b511d4e4ef672ef521504739fa3e4 to your computer and use it in GitHub Desktop.
choco install psexec fails now
Chocolatey is running on Windows v 6.3.9600.0
Attempting to delete file "C:/ProgramData/chocolatey/choco.exe.old".
Attempting to delete file "C:\ProgramData\chocolatey\choco.exe.old".
Command line: "C:\ProgramData\chocolatey\choco.exe" install psexec -debug -verbose
Received arguments: install psexec -debug -verbose
RemovePendingPackagesTask is now ready and waiting for PreRunMessage.
Sending message 'PreRunMessage' out if there are subscribers...
[Pending] Removing all pending packages that should not be considered installed...
The source 'https://chocolatey.org/api/v2/' evaluated to a 'normal' source type
NOTE: Hiding sensitive configuration data! Please double and triple
check to be sure no sensitive data is shown, especially if copying
output to a gist for review.
Configuration: CommandName='install'|
CacheLocation='C:\Users\Administrator\AppData\Local\Temp\1\chocolatey'|
ContainsLegacyPackageInstalls='True'|
CommandExecutionTimeoutSeconds='2700'|WebRequestTimeoutSeconds='30'|
Sources='https://chocolatey.org/api/v2/'|SourceType='normal'|
Debug='True'|Verbose='True'|Force='False'|Noop='False'|
HelpRequested='False'|RegularOutput='True'|QuietOutput='False'|
PromptForConfirmation='True'|AcceptLicense='False'|
AllowUnofficialBuild='False'|Input='psexec'|AllVersions='False'|
SkipPackageInstallProvider='False'|PackageNames='psexec'|
Prerelease='False'|ForceX86='False'|OverrideArguments='False'|
NotSilent='False'|IgnoreDependencies='False'|
AllowMultipleVersions='False'|AllowDowngrade='False'|
ForceDependencies='False'|Information.PlatformType='Windows'|
Information.PlatformVersion='6.3.9600.0'|
Information.PlatformName='Windows Server 2012 R2'|
Information.ChocolateyVersion='0.9.10.3'|
Information.ChocolateyProductVersion='0.9.10.3'|
Information.FullName='choco, Version=0.9.10.3, Culture=neutral, PublicKeyToken=79d02ea9cad655eb'|
Information.Is64Bit='True'|Information.IsInteractive='True'|
Information.IsUserAdministrator='True'|
Information.IsProcessElevated='True'|
Information.IsLicensedVersion='False'|Features.AutoUninstaller='True'|
Features.CheckSumFiles='True'|Features.FailOnAutoUninstaller='False'|
Features.FailOnStandardError='False'|Features.UsePowerShellHost='True'|
Features.LogEnvironmentValues='False'|Features.VirusCheck='False'|
Features.FailOnInvalidOrMissingLicense='False'|
Features.IgnoreInvalidOptionsSwitches='True'|
Features.UsePackageExitCodes='True'|
Features.UseFipsCompliantChecksums='False'|
ListCommand.LocalOnly='False'|
ListCommand.IncludeRegistryPrograms='False'|ListCommand.PageSize='25'|
ListCommand.Exact='False'|ListCommand.ByIdOnly='False'|
ListCommand.IdStartsWith='False'|ListCommand.OrderByPopularity='False'|
ListCommand.ApprovedOnly='False'|
ListCommand.DownloadCacheAvailable='False'|
ListCommand.NotBroken='False'|UpgradeCommand.FailOnUnfound='False'|
UpgradeCommand.FailOnNotInstalled='False'|
UpgradeCommand.NotifyOnlyAvailableUpgrades='False'|
NewCommand.AutomaticPackage='False'|
NewCommand.UseOriginalTemplate='False'|SourceCommand.Command='unknown'|
SourceCommand.Priority='0'|FeatureCommand.Command='unknown'|
ConfigCommand.Command='unknown'|PinCommand.Command='unknown'|
_ Chocolatey:ChocolateyInstallCommand - Normal Run Mode _
Installing the following packages:
psexec
By installing you accept licenses for the packages.
[NuGet] Installing 'psexec 2.11'.
[NuGet] Added file 'chocolateyInstall.ps1' to folder 'psexec\tools'.
[NuGet] Added file 'psexec.nuspec' to folder 'psexec'.
[NuGet] Added file 'psexec.nupkg' to folder 'psexec'.
[NuGet] Successfully installed 'psexec 2.11'.
psexec v2.11 [Approved]
Setting installer args and package parameters for psexec
Contents of 'C:\ProgramData\chocolatey\lib\psexec\tools\chocolateyInstall.ps1':
$packageName = 'psexec'
$url = 'https://download.sysinternals.com/files/PSTools.zip'
$checksum = 'd82ef74b45f7b25e5efa7311a87ecab89c259a39'
$checksumType = 'sha1'
$url64 = "$url"
$checksum64 = "$checksum"
$checksumType64 = "checksumType"
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
Install-ChocolateyZipPackage -PackageName "$packageName" `
-Url "$url" `
-UnzipLocation "$toolsDir" `
-Url64bit "$url64" `
-Checksum "$checksum" `
-ChecksumType "$checksumType" `
-Checksum64 "$checksum64" `
-ChecksumType64 "$checksumType64"
Write-Verbose "Accepting license..."
$regRoot = 'HKCU:\Software\Sysinternals'
$regPkg = 'PsExec'
$regPath = Join-Path $regRoot $regPkg
if (!(Test-Path $regRoot)) {New-Item -Path "$regRoot"}
if (!(Test-Path $regPath)) {New-Item -Path "$regRoot" -Name "$regPkg"}
Set-ItemProperty -Path "$regPath" -Name EulaAccepted -Value 1
if ((Get-ItemProperty -Path "$regPath").EulaAccepted -ne 1) {
throw "Failed setting registry value."
}
The package psexec wants to run 'chocolateyInstall.ps1'.
Note: If you don't run this script, the installation will fail.
Note: To confirm automatically next time, use '-y' or consider setting
'allowGlobalConfirmation'. Run 'choco feature -h' for more details.
Do you want to run the script?([Y]es/[N]o/[P]rint):
Calling built-in PowerShell host with ['[System.Threading.Thread]::CurrentThread.CurrentCulture = '';[System.Threading.Thread]::CurrentThread.CurrentUICulture = ''; & import-module -name 'C:\ProgramData\chocolatey\helpers\chocolateyInstaller.psm1'; & 'C:\ProgramData\chocolatey\helpers\chocolateyScriptRunner.ps1' -packageScript 'C:\ProgramData\chocolatey\lib\psexec\tools\chocolateyInstall.ps1' -installArguments '' -packageParameters ''']
Redirecting System.Management.Automation.resources, Version=3.0.0.0, Culture=en-US, PublicKeyToken=31bf3856ad364e35, requested by ''
Attempting to load assembly System.Management.Automation.resources failed:
Could not load file or assembly 'System.Management.Automation.resources, Version=5.0.0.0, Culture=en-US, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
Attempting to load assembly System.Management.Automation.resources failed:
Could not load file or assembly 'System.Management.Automation.resources, Version=4.0.0.0, Culture=en-US, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
Attempting to load assembly System.Management.Automation.resources failed:
Could not load file or assembly 'System.Management.Automation.resources, Version=3.0.0.0, Culture=en-US, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
Attempting to load assembly System.Management.Automation.resources failed:
Could not load file or assembly 'System.Management.Automation.resources, Version=1.0.0.0, Culture=en-US, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
Host version is 4.0, PowerShell Version is '4.0' and CLR Version is '4.0.30319.42000'.
Loading community extensions
VERBOSE: Exporting function 'Format-FileSize'.
VERBOSE: Exporting function 'Get-ChecksumValid'.
VERBOSE: Exporting function 'Get-ChocolateyUnzip'.
VERBOSE: Exporting function 'Get-ChocolateyWebFile'.
VERBOSE: Exporting function 'Get-EnvironmentVariable'.
VERBOSE: Exporting function 'Get-EnvironmentVariableNames'.
VERBOSE: Exporting function 'Get-FtpFile'.
VERBOSE: Exporting function 'Get-OSArchitectureWidth'.
VERBOSE: Exporting function 'Get-ToolsLocation'.
VERBOSE: Exporting function 'Get-UACEnabled'.
VERBOSE: Exporting function 'Get-UninstallRegistryKey'.
VERBOSE: Exporting function 'Get-VirusCheckValid'.
VERBOSE: Exporting function 'Get-WebFile'.
VERBOSE: Exporting function 'Get-WebFileName'.
VERBOSE: Exporting function 'Get-WebHeaders'.
VERBOSE: Exporting function 'Install-BinFile'.
VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'.
VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'.
VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'.
VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'.
VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'.
VERBOSE: Exporting function 'Install-ChocolateyPackage'.
VERBOSE: Exporting function 'Install-ChocolateyPath'.
VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'.
VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'.
VERBOSE: Exporting function 'Install-ChocolateyShortcut'.
VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'.
VERBOSE: Exporting function 'Install-ChocolateyZipPackage'.
VERBOSE: Exporting function 'Install-Vsix'.
VERBOSE: Exporting function 'Set-EnvironmentVariable'.
VERBOSE: Exporting function 'Set-PowerShellExitCode'.
VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'.
VERBOSE: Exporting function 'Test-ProcessAdminRights'.
VERBOSE: Exporting function 'Uninstall-BinFile'.
VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'.
VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'.
VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'.
VERBOSE: Exporting function 'Update-SessionEnvironment'.
VERBOSE: Exporting function 'Write-ChocolateyFailure'.
VERBOSE: Exporting function 'Write-ChocolateySuccess'.
VERBOSE: Exporting function 'Write-FileUpdateLog'.
VERBOSE: Exporting alias 'Get-ProcessorBits'.
VERBOSE: Exporting alias 'Get-InstallRegistryKey'.
VERBOSE: Exporting alias 'Generate-BinFile'.
VERBOSE: Exporting alias 'Add-BinFile'.
VERBOSE: Exporting alias 'Remove-BinFile'.
VERBOSE: Exporting alias 'refreshenv'.
VERBOSE: Importing function 'Format-FileSize'.
VERBOSE: Importing function 'Get-ChecksumValid'.
VERBOSE: Importing function 'Get-ChocolateyUnzip'.
VERBOSE: Importing function 'Get-ChocolateyWebFile'.
VERBOSE: Importing function 'Get-EnvironmentVariable'.
VERBOSE: Importing function 'Get-EnvironmentVariableNames'.
VERBOSE: Importing function 'Get-FtpFile'.
VERBOSE: Importing function 'Get-OSArchitectureWidth'.
VERBOSE: Importing function 'Get-ToolsLocation'.
VERBOSE: Importing function 'Get-UACEnabled'.
VERBOSE: Importing function 'Get-UninstallRegistryKey'.
VERBOSE: Importing function 'Get-VirusCheckValid'.
VERBOSE: Importing function 'Get-WebFile'.
VERBOSE: Importing function 'Get-WebFileName'.
VERBOSE: Importing function 'Get-WebHeaders'.
VERBOSE: Importing function 'Install-BinFile'.
VERBOSE: Importing function 'Install-ChocolateyDesktopLink'.
VERBOSE: Importing function 'Install-ChocolateyEnvironmentVariable'.
VERBOSE: Importing function 'Install-ChocolateyExplorerMenuItem'.
VERBOSE: Importing function 'Install-ChocolateyFileAssociation'.
VERBOSE: Importing function 'Install-ChocolateyInstallPackage'.
VERBOSE: Importing function 'Install-ChocolateyPackage'.
VERBOSE: Importing function 'Install-ChocolateyPath'.
VERBOSE: Importing function 'Install-ChocolateyPinnedTaskBarItem'.
VERBOSE: Importing function 'Install-ChocolateyPowershellCommand'.
VERBOSE: Importing function 'Install-ChocolateyShortcut'.
VERBOSE: Importing function 'Install-ChocolateyVsixPackage'.
VERBOSE: Importing function 'Install-ChocolateyZipPackage'.
VERBOSE: Importing function 'Install-Vsix'.
VERBOSE: Importing function 'Set-EnvironmentVariable'.
VERBOSE: Importing function 'Set-PowerShellExitCode'.
VERBOSE: Importing function 'Start-ChocolateyProcessAsAdmin'.
VERBOSE: Importing function 'Test-ProcessAdminRights'.
VERBOSE: Importing function 'Uninstall-BinFile'.
VERBOSE: Importing function 'Uninstall-ChocolateyEnvironmentVariable'.
VERBOSE: Importing function 'Uninstall-ChocolateyPackage'.
VERBOSE: Importing function 'Uninstall-ChocolateyZipPackage'.
VERBOSE: Importing function 'Update-SessionEnvironment'.
VERBOSE: Importing function 'Write-ChocolateyFailure'.
VERBOSE: Importing function 'Write-ChocolateySuccess'.
VERBOSE: Importing function 'Write-FileUpdateLog'.
VERBOSE: Importing alias 'Add-BinFile'.
VERBOSE: Importing alias 'Generate-BinFile'.
VERBOSE: Importing alias 'Get-InstallRegistryKey'.
VERBOSE: Importing alias 'Get-ProcessorBits'.
VERBOSE: Importing alias 'refreshenv'.
VERBOSE: Importing alias 'Remove-BinFile'.
Running 'ChocolateyScriptRunner' for psexec v2.11 with packageScript 'C:\ProgramData\chocolatey\lib\psexec\tools\chocolateyInstall.ps1', packageFolder:'C:\ProgramData\chocolatey\lib\psexec', installArguments: '', packageParameters: '',
Running 'C:\ProgramData\chocolatey\lib\psexec\tools\chocolateyInstall.ps1'
Running 'Install-ChocolateyZipPackage' for psexec with url:'https://download.sysinternals.com/files/PSTools.zip', unzipLocation: 'C:\ProgramData\chocolatey\lib\psexec\tools', url64bit: 'https://download.sysinternals.com/files/PSTools.zip', specificFolder: '', checksum: 'd82ef74b45f7b25e5efa7311a87ecab89c259a39', checksumType: 'sha1', checksum64: 'd82ef74b45f7b25e5efa7311a87ecab89c259a39', checksumType64: 'checksumType'
Running 'Get-ChocolateyWebFile' for psexec with url:'https://download.sysinternals.com/files/PSTools.zip', fileFullPath:'C:\Users\Administrator\AppData\Local\Temp\1\chocolatey\psexec\2.11\psexecInstall.zip', url64bit:'https://download.sysinternals.com/files/PSTools.zip', checksum: 'd82ef74b45f7b25e5efa7311a87ecab89c259a39', checksumType: 'sha1', checksum64: 'd82ef74b45f7b25e5efa7311a87ecab89c259a39', checksumType64: 'checksumType'
Running 'Get-OSArchitectureWidth'
CPU is 64 bit
Setting url to 'https://download.sysinternals.com/files/PSTools.zip' and bitPackage to 64
Running 'Get-WebFileName' to determine name with url:'https://download.sysinternals.com/files/PSTools.zip', defaultName:'psexecInstall.zip'
Using response url to determine file name. 'https://download.sysinternals.com/files/PSTools.zip'
File name determined from url is 'PSTools.zip'
Running 'Get-WebHeaders' with url:'https://download.sysinternals.com/files/PSTools.zip', userAgent: 'chocolatey command line'
Setting the UserAgent to 'chocolatey command line'
Request Headers:
'Accept':'*/*'
'User-Agent':'chocolatey command line'
Response Headers:
'Content-MD5':'sR0048No7ef45cgR5L1E+Q=='
'X-Cache':'HIT'
'x-ms-blob-type':'BlockBlob'
'x-ms-lease-status':'unlocked'
'x-ms-meta-CbModifiedTime':'Tue, 29 Apr 2014 22:22:54 GMT'
'x-ms-request-id':'6e0dce33-0001-0033-5051-d23eb9000000'
'x-ms-version':'2009-09-19'
'x-ms-write-protection':'false'
'Accept-Ranges':'bytes'
'Content-Length':'2825404'
'Content-Type':'application/x-zip-compressed'
'Date':'Thu, 30 Jun 2016 20:38:46 GMT'
'ETag':'0x8D3A066FC342036'
'Last-Modified':'Wed, 29 Jun 2016 21:47:36 GMT'
'Server':'ECAcc (dca/537E)'
Downloading psexec 64 bit
from 'https://download.sysinternals.com/files/PSTools.zip'
Running 'Get-WebFile' for C:\Users\Administrator\AppData\Local\Temp\1\chocolatey\psexec\2.11\PSTools.zip with url:'https://download.sysinternals.com/files/PSTools.zip', userAgent: 'chocolatey command line'
Setting request timeout to 30000
Setting read/write timeout to 2700000
Setting the UserAgent to 'chocolatey command line'
Downloading https://download.sysinternals.com/files/PSTools.zip to C:\Users\Administrator\AppData\Local\Temp\1\chocolatey\psexec\2.11\PSTools.zip
Progress: 5% - Saving 143.99 KB of 2.69 MB (147448/2825404)
Progress: 10% - Saving 288 KB of 2.69 MB (294910/2825404)
Progress: 16% - Saving 447.99 KB of 2.69 MB (458740/2825404)
Progress: 22% - Saving 607.98 KB of 2.69 MB (622570/2825404)
Progress: 28% - Saving 767.97 KB of 2.69 MB (786400/2825404)
Progress: 34% - Saving 927.96 KB of 2.69 MB (950230/2825404)
Progress: 39% - Saving 1.06 MB of 2.69 MB (1114060/2825404)
Progress: 45% - Saving 1.22 MB of 2.69 MB (1277890/2825404)
Progress: 51% - Saving 1.37 MB of 2.69 MB (1441720/2825404)
Progress: 57% - Saving 1.53 MB of 2.69 MB (1605550/2825404)
Progress: 63% - Saving 1.69 MB of 2.69 MB (1769380/2825404)
Progress: 68% - Saving 1.84 MB of 2.69 MB (1933210/2825404)
Progress: 74% - Saving 2 MB of 2.69 MB (2097040/2825404)
Progress: 80% - Saving 2.16 MB of 2.69 MB (2260870/2825404)
Progress: 86% - Saving 2.31 MB of 2.69 MB (2424700/2825404)
Progress: 92% - Saving 2.47 MB of 2.69 MB (2588530/2825404)
Progress: 97% - Saving 2.62 MB of 2.69 MB (2752360/2825404)
Download of PSTools.zip (2.69 MB) completed.
No virus checking built into FOSS Chocolatey. Check out Pro or Business if you need this. https://chocolatey.org/compare
Checking that 'C:\Users\Administrator\AppData\Local\Temp\1\chocolatey\psexec\2.11\PSTools.zip' is the size we expect it to be.
Verifying package provided checksum of 'd82ef74b45f7b25e5efa7311a87ecab89c259a39' for 'C:\Users\Administrator\AppData\Local\Temp\1\chocolatey\psexec\2.11\PSTools.zip'.
Running 'Get-ChecksumValid' with file:'C:\Users\Administrator\AppData\Local\Temp\1\chocolatey\psexec\2.11\PSTools.zip', checksum: 'd82ef74b45f7b25e5efa7311a87ecab89c259a39', checksumType: 'sha1'
checksum.exe found at 'C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe'
Executing command ['C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' -c="d82ef74b45f7b25e5efa7311a87ecab89c259a39" -t="sha1" -f="C:\Users\Administrator\AppData\Local\Temp\1\chocolatey\psexec\2.11\PSTools.zip"]
Error - hashes do not match. Actual value was '80EFCD616F4DEB4C9C4915B1FA12A7DB91A325E7'.
Command ['C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' -c="d82ef74b45f7b25e5efa7311a87ecab89c259a39" -t="sha1" -f="C:\Users\Administrator\AppData\Local\Temp\1\chocolatey\psexec\2.11\PSTools.zip"] exited with '1'.
ERROR: Checksum for 'C:\Users\Administrator\AppData\Local\Temp\1\chocolatey\psexec\2.11\PSTools.zip' did not meet 'd82ef74b45f7b25e5efa7311a87ecab89c259a39' for checksum type 'sha1'. Consider passing --ignore-checksums if necessary.
at Get-ChecksumValid, C:\ProgramData\chocolatey\helpers\functions\Get-CheckSumValid.ps1: line 107
at Get-ChocolateyWebFile, C:\ProgramData\chocolatey\helpers\functions\Get-ChocolateyWebFile.ps1: line 289
at Install-ChocolateyZipPackage, C:\ProgramData\chocolatey\helpers\functions\Install-ChocolateyZipPackage.ps1: line 153
at <ScriptBlock>, C:\ProgramData\chocolatey\lib\psexec\tools\chocolateyInstall.ps1: line 9
at <ScriptBlock>, C:\ProgramData\chocolatey\helpers\chocolateyScriptRunner.ps1: line 48
at <ScriptBlock>, <No file>: line 1
Built-in PowerShell host called with ['[System.Threading.Thread]::CurrentThread.CurrentCulture = '';[System.Threading.Thread]::CurrentThread.CurrentUICulture = ''; & import-module -name 'C:\ProgramData\chocolatey\helpers\chocolateyInstaller.psm1'; & 'C:\ProgramData\chocolatey\helpers\chocolateyScriptRunner.ps1' -packageScript 'C:\ProgramData\chocolatey\lib\psexec\tools\chocolateyInstall.ps1' -installArguments '' -packageParameters '''] exited with '-1'.
Calling command ['"C:\Windows\System32\shutdown.exe" /a']
Command ['"C:\Windows\System32\shutdown.exe" /a'] exited with '1116'
Capturing package files in 'C:\ProgramData\chocolatey\lib\psexec'
Found 'C:\ProgramData\chocolatey\lib\psexec\.chocolateyPending'
with checksum '26719E0F9D3C1921901224218E7E1885'
Found 'C:\ProgramData\chocolatey\lib\psexec\psexec.nupkg'
with checksum 'A735FD47B009BCC72D396E2CE722569C'
Found 'C:\ProgramData\chocolatey\lib\psexec\psexec.nuspec'
with checksum '88AEA66CA33E14F5C40E1746F5F18F43'
Found 'C:\ProgramData\chocolatey\lib\psexec\tools\chocolateyInstall.ps1'
with checksum '7DD54A2B620C4BB1397E51A6B44F56E5'
Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\psexec.2.11\.files.update".
Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\psexec.2.11\.sxs".
Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\psexec.2.11\.pin".
Attempting to delete directory "C:\ProgramData\chocolatey\lib-bad\psexec".
Sending message 'HandlePackageResultCompletedMessage' out if there are subscribers...
The install of psexec was NOT successful.
Error while running 'C:\ProgramData\chocolatey\lib\psexec\tools\chocolateyInstall.ps1'.
See log for details.
Moving 'C:\ProgramData\chocolatey\lib\psexec'
to 'C:\ProgramData\chocolatey\lib-bad\psexec'
Attempting to delete file "C:\Users\Administrator\AppData\Local\NuGet\Cache\psexec.2.11.nupkg".
Chocolatey installed 0/1 packages. 1 packages failed.
See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).
Failures
- psexec (exited -1) - Error while running 'C:\ProgramData\chocolatey\lib\psexec\tools\chocolateyInstall.ps1'.
See log for details.
Sending message 'PostRunMessage' out if there are subscribers...
Exiting with -1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment