|
2020-01-31 14:37:02,152 2148 [DEBUG] - [NuGet] Added file 'complete-x86_x32.exe' to folder 'vim-tux.portable\tools'. |
|
2020-01-31 14:37:02,231 2148 [DEBUG] - [NuGet] Added file 'diff.exe.ignore' to folder 'vim-tux.portable\tools\vim81'. |
|
2020-01-31 14:37:02,262 2148 [DEBUG] - [NuGet] Added file 'evim.bat' to folder 'vim-tux.portable\tools\vim81'. |
|
2020-01-31 14:37:02,309 2148 [DEBUG] - [NuGet] Added file 'gview.bat' to folder 'vim-tux.portable\tools\vim81'. |
|
2020-01-31 14:37:02,324 2148 [DEBUG] - [NuGet] Added file 'gvim.bat' to folder 'vim-tux.portable\tools\vim81'. |
|
2020-01-31 14:37:02,340 2148 [DEBUG] - [NuGet] Added file 'gvim.exe.ignore' to folder 'vim-tux.portable\tools\vim81'. |
|
2020-01-31 14:37:02,355 2148 [DEBUG] - [NuGet] Added file 'gvimdiff.bat' to folder 'vim-tux.portable\tools\vim81'. |
|
2020-01-31 14:37:02,355 2148 [DEBUG] - [NuGet] Added file 'gvim_noOLE.exe.ignore' to folder 'vim-tux.portable\tools\vim81'. |
|
2020-01-31 14:37:02,355 2148 [DEBUG] - [NuGet] Added file 'install.exe.ignore' to folder 'vim-tux.portable\tools\vim81'. |
|
2020-01-31 14:37:02,371 2148 [DEBUG] - [NuGet] Added file 'patch.exe.ignore' to folder 'vim-tux.portable\tools\vim81'. |
|
2020-01-31 14:37:02,371 2148 [DEBUG] - [NuGet] Added file 'patch.exe.manifest' to folder 'vim-tux.portable\tools\vim81'. |
|
2020-01-31 14:37:02,371 2148 [DEBUG] - [NuGet] Added file 'tee.exe.ignore' to folder 'vim-tux.portable\tools\vim81'. |
|
2020-01-31 14:37:02,386 2148 [DEBUG] - [NuGet] Added file 'uninstal.exe.ignore' to folder 'vim-tux.portable\tools\vim81'. |
|
2020-01-31 14:37:02,386 2148 [DEBUG] - [NuGet] Added file 'view.bat' to folder 'vim-tux.portable\tools\vim81'. |
|
2020-01-31 14:37:02,386 2148 [DEBUG] - [NuGet] Added file 'vim.bat' to folder 'vim-tux.portable\tools\vim81'. |
|
2020-01-31 14:37:02,402 2148 [DEBUG] - [NuGet] Added file 'vim.exe.ignore' to folder 'vim-tux.portable\tools\vim81'. |
|
2020-01-31 14:37:02,402 2148 [DEBUG] - [NuGet] Added file 'vimdiff.bat' to folder 'vim-tux.portable\tools\vim81'. |
|
2020-01-31 14:37:02,402 2148 [DEBUG] - [NuGet] Added file 'vimrun.exe.ignore' to folder 'vim-tux.portable\tools\vim81'. |
|
2020-01-31 14:37:02,418 2148 [DEBUG] - [NuGet] Added file 'winpty-agent.exe.ignore' to folder 'vim-tux.portable\tools\vim81'. |
|
2020-01-31 14:37:02,418 2148 [DEBUG] - [NuGet] Added file 'xxd.exe.ignore' to folder 'vim-tux.portable\tools\vim81'. |
|
2020-01-31 14:37:06,964 2148 [DEBUG] - [NuGet] Added file 'vim-tux.portable.nupkg' to folder 'vim-tux.portable'. |
|
2020-01-31 14:37:07,183 2148 [DEBUG] - [NuGet] Added file 'vim-tux.portable.nuspec' to folder 'vim-tux.portable'. |
|
2020-01-31 14:37:07,183 2148 [INFO ] - [NuGet] Successfully installed 'vim-tux.portable 8.2.0184'. |
|
2020-01-31 14:37:07,199 2148 [INFO ] - |
|
vim-tux.portable v8.2.0184 (forced) |
|
2020-01-31 14:37:07,199 2148 [INFO ] - vim-tux.portable package files install completed. Performing other installation steps. |
|
2020-01-31 14:37:07,214 2148 [DEBUG] - Setting installer args for vim-tux.portable |
|
2020-01-31 14:37:07,214 2148 [DEBUG] - Setting package parameters for vim-tux.portable |
|
2020-01-31 14:37:07,230 2148 [DEBUG] - Contents of 'C:\ProgramData\chocolatey\lib\vim-tux.portable\tools\chocolateyinstall.ps1': |
|
2020-01-31 14:37:07,230 2148 [DEBUG] - $ErrorActionPreference = 'Stop' |
|
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" |
|
$destDir = Join-Path $toolsDir "vim82" |
|
if ($Env:ChocolateyPackageParameters -match '/InstallDir:\s*(.+)') { |
|
$destDir = $Matches[1] |
|
$destDir = $destDir -replace '^[''"]|[''"]$' # Strip quotations. Necessary? |
|
$destDir = $destDir -replace '[\/]$' # Remove any slashes from end of line |
|
if (-not ($destDir.EndsWith('vim82'))) { $destDir = Join-Path $destDir 'vim82' } # Vim will not run if it is not within folder vim82 |
|
} |
|
|
|
$packageArgs = @{ |
|
packageName = 'vim-tux.portable' |
|
filetype = 'exe' |
|
file = gi $toolsDir\*_x32.exe |
|
file64 = gi $toolsDir\*_x64.exe |
|
silentArgs = "-o`"$destDir`" -y" |
|
} |
|
|
|
Install-ChocolateyPackage @packageArgs |
|
(Get-Item $destdir\patch.exe).LastWriteTime = (Get-Date) # exe must be newer than manifest; Supplied manifest fixes useless UAC request |
|
# Rather than letting the installer place the batch files in C:\WINDOWS, I have included them in this package. |
|
# Installing them in this way ensures the package is compatible with non-admin installs, as a good portable package should :) |
|
Get-ChildItem "$destDir\*.bat" | %{ Install-BinFile -Name $_.BaseName -Path $_ } |
|
Remove-Item -Force -ea 0 "$toolsDir\*_x32.exe","$toolsDir\*_x64.exe" |
|
Write-Host 'Build provided by TuxProject.de - consider donating to help support their server costs.' |
|
|
|
2020-01-31 14:37:07,230 2148 [DEBUG] - 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\vim-tux.portable\tools\chocolateyinstall.ps1' -installArguments '' -packageParameters '''] |
|
2020-01-31 14:37:07,246 2148 [DEBUG] - Redirecting Microsoft.PowerShell.Security, requested by '' |
|
2020-01-31 14:37:07,261 2148 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=5.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 14:37:07,261 2148 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=4.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 14:37:07,261 2148 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=3.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 14:37:07,261 2148 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=1.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 14:37:07,449 2148 [DEBUG] - Host version is 4.0, PowerShell Version is '4.0' and CLR Version is '4.0.30319.33440'. |
|
2020-01-31 14:37:07,574 2148 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. |
|
2020-01-31 14:37:07,574 2148 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. |
|
2020-01-31 14:37:07,589 2148 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. |
|
2020-01-31 14:37:07,589 2148 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. |
|
2020-01-31 14:37:07,589 2148 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'. |
|
2020-01-31 14:37:07,605 2148 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 14:37:07,605 2148 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. |
|
2020-01-31 14:37:07,605 2148 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. |
|
2020-01-31 14:37:07,621 2148 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 14:37:07,621 2148 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 14:37:07,621 2148 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. |
|
2020-01-31 14:37:07,636 2148 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. |
|
2020-01-31 14:37:07,636 2148 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:37:07,636 2148 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. |
|
2020-01-31 14:37:07,652 2148 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. |
|
2020-01-31 14:37:07,652 2148 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. |
|
2020-01-31 14:37:07,652 2148 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. |
|
2020-01-31 14:37:07,668 2148 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. |
|
2020-01-31 14:37:07,668 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 14:37:07,668 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:37:07,683 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 14:37:07,683 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 14:37:07,683 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 14:37:07,699 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. |
|
2020-01-31 14:37:07,699 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'. |
|
2020-01-31 14:37:07,714 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 14:37:07,714 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 14:37:07,714 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. |
|
2020-01-31 14:37:07,730 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 14:37:07,730 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 14:37:07,730 2148 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. |
|
2020-01-31 14:37:07,746 2148 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'. |
|
2020-01-31 14:37:07,746 2148 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. |
|
2020-01-31 14:37:07,746 2148 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 14:37:07,761 2148 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'. |
|
2020-01-31 14:37:07,761 2148 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. |
|
2020-01-31 14:37:07,761 2148 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:37:07,777 2148 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 14:37:07,777 2148 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 14:37:07,777 2148 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'. |
|
2020-01-31 14:37:07,793 2148 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. |
|
2020-01-31 14:37:07,808 2148 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. |
|
2020-01-31 14:37:07,808 2148 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. |
|
2020-01-31 14:37:07,808 2148 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 14:37:07,824 2148 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. |
|
2020-01-31 14:37:07,824 2148 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. |
|
2020-01-31 14:37:07,839 2148 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. |
|
2020-01-31 14:37:07,839 2148 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. |
|
2020-01-31 14:37:07,839 2148 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. |
|
2020-01-31 14:37:07,855 2148 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. |
|
2020-01-31 14:37:07,855 2148 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 14:37:07,855 2148 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. |
|
2020-01-31 14:37:07,871 2148 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. |
|
2020-01-31 14:37:07,886 2148 [DEBUG] - Loading community extensions |
|
2020-01-31 14:37:07,886 2148 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1' |
|
2020-01-31 14:37:07,902 2148 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1'. |
|
2020-01-31 14:37:08,089 2148 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:37:08,105 2148 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. |
|
2020-01-31 14:37:08,105 2148 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:37:08,105 2148 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. |
|
2020-01-31 14:37:08,121 2148 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:37:08,121 2148 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 14:37:08,136 2148 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. |
|
2020-01-31 14:37:08,136 2148 [INFO ] - VERBOSE: Exporting function 'Register-Application'. |
|
2020-01-31 14:37:08,152 2148 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. |
|
2020-01-31 14:37:08,152 2148 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. |
|
2020-01-31 14:37:08,152 2148 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:37:08,168 2148 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. |
|
2020-01-31 14:37:08,168 2148 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:37:08,183 2148 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'. |
|
2020-01-31 14:37:08,183 2148 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:37:08,183 2148 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. |
|
2020-01-31 14:37:08,183 2148 [INFO ] - VERBOSE: Importing function 'Register-Application'. |
|
2020-01-31 14:37:08,199 2148 [INFO ] - VERBOSE: Importing function 'Remove-Process'. |
|
2020-01-31 14:37:08,199 2148 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1' |
|
2020-01-31 14:37:08,214 2148 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1'. |
|
2020-01-31 14:37:08,230 2148 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. |
|
2020-01-31 14:37:08,246 2148 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. |
|
2020-01-31 14:37:08,246 2148 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. |
|
2020-01-31 14:37:08,246 2148 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. |
|
2020-01-31 14:37:08,261 2148 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. |
|
2020-01-31 14:37:08,261 2148 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. |
|
2020-01-31 14:37:08,261 2148 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. |
|
2020-01-31 14:37:08,261 2148 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. |
|
2020-01-31 14:37:08,277 2148 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'. |
|
2020-01-31 14:37:08,277 2148 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 14:37:08,277 2148 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. |
|
2020-01-31 14:37:08,277 2148 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. |
|
2020-01-31 14:37:08,293 2148 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 14:37:08,293 2148 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 14:37:08,293 2148 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. |
|
2020-01-31 14:37:08,308 2148 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. |
|
2020-01-31 14:37:08,308 2148 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:37:08,308 2148 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. |
|
2020-01-31 14:37:08,324 2148 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. |
|
2020-01-31 14:37:08,324 2148 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. |
|
2020-01-31 14:37:08,324 2148 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. |
|
2020-01-31 14:37:08,324 2148 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. |
|
2020-01-31 14:37:08,339 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 14:37:08,339 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:37:08,339 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 14:37:08,355 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 14:37:08,355 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 14:37:08,355 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. |
|
2020-01-31 14:37:08,371 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'. |
|
2020-01-31 14:37:08,371 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 14:37:08,371 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 14:37:08,371 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. |
|
2020-01-31 14:37:08,386 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 14:37:08,386 2148 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 14:37:08,386 2148 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. |
|
2020-01-31 14:37:08,402 2148 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'. |
|
2020-01-31 14:37:08,402 2148 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. |
|
2020-01-31 14:37:08,402 2148 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 14:37:08,402 2148 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'. |
|
2020-01-31 14:37:08,418 2148 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. |
|
2020-01-31 14:37:08,418 2148 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:37:08,418 2148 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 14:37:08,433 2148 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 14:37:08,433 2148 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'. |
|
2020-01-31 14:37:08,433 2148 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. |
|
2020-01-31 14:37:08,433 2148 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. |
|
2020-01-31 14:37:08,449 2148 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. |
|
2020-01-31 14:37:08,449 2148 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 14:37:08,449 2148 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. |
|
2020-01-31 14:37:08,449 2148 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:37:08,464 2148 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. |
|
2020-01-31 14:37:08,464 2148 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:37:08,464 2148 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. |
|
2020-01-31 14:37:08,480 2148 [INFO ] - VERBOSE: Exporting function 'Register-Application'. |
|
2020-01-31 14:37:08,480 2148 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. |
|
2020-01-31 14:37:08,496 2148 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. |
|
2020-01-31 14:37:08,496 2148 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. |
|
2020-01-31 14:37:08,511 2148 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. |
|
2020-01-31 14:37:08,511 2148 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. |
|
2020-01-31 14:37:08,527 2148 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. |
|
2020-01-31 14:37:08,527 2148 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. |
|
2020-01-31 14:37:08,543 2148 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. |
|
2020-01-31 14:37:08,543 2148 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. |
|
2020-01-31 14:37:08,543 2148 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 14:37:08,558 2148 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. |
|
2020-01-31 14:37:08,558 2148 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. |
|
2020-01-31 14:37:08,574 2148 [INFO ] - VERBOSE: Importing function 'Format-FileSize'. |
|
2020-01-31 14:37:08,574 2148 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. |
|
2020-01-31 14:37:08,574 2148 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:37:08,590 2148 [INFO ] - VERBOSE: Importing function 'Get-ChecksumValid'. |
|
2020-01-31 14:37:08,590 2148 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyUnzip'. |
|
2020-01-31 14:37:08,605 2148 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyWebFile'. |
|
2020-01-31 14:37:08,605 2148 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. |
|
2020-01-31 14:37:08,622 2148 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariable'. |
|
2020-01-31 14:37:08,622 2148 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 14:37:08,636 2148 [INFO ] - VERBOSE: Importing function 'Get-FtpFile'. |
|
2020-01-31 14:37:08,652 2148 [INFO ] - VERBOSE: Importing function 'Get-OSArchitectureWidth'. |
|
2020-01-31 14:37:08,652 2148 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:37:08,652 2148 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'. |
|
2020-01-31 14:37:08,668 2148 [INFO ] - VERBOSE: Importing function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 14:37:08,668 2148 [INFO ] - VERBOSE: Importing function 'Get-ToolsLocation'. |
|
2020-01-31 14:37:08,668 2148 [INFO ] - VERBOSE: Importing function 'Get-UACEnabled'. |
|
2020-01-31 14:37:08,683 2148 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:37:08,683 2148 [INFO ] - VERBOSE: Importing function 'Get-VirusCheckValid'. |
|
2020-01-31 14:37:08,683 2148 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. |
|
2020-01-31 14:37:08,699 2148 [INFO ] - VERBOSE: Importing function 'Get-WebFile'. |
|
2020-01-31 14:37:08,699 2148 [INFO ] - VERBOSE: Importing function 'Get-WebFileName'. |
|
2020-01-31 14:37:08,699 2148 [INFO ] - VERBOSE: Importing function 'Get-WebHeaders'. |
|
2020-01-31 14:37:08,714 2148 [INFO ] - VERBOSE: Importing function 'Install-BinFile'. |
|
2020-01-31 14:37:08,714 2148 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 14:37:08,714 2148 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:37:08,714 2148 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 14:37:08,730 2148 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 14:37:08,730 2148 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 14:37:08,730 2148 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPackage'. |
|
2020-01-31 14:37:08,746 2148 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPath'. |
|
2020-01-31 14:37:08,746 2148 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 14:37:08,746 2148 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 14:37:08,761 2148 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyShortcut'. |
|
2020-01-31 14:37:08,761 2148 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 14:37:08,761 2148 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 14:37:08,777 2148 [INFO ] - VERBOSE: Importing function 'Install-Vsix'. |
|
2020-01-31 14:37:08,777 2148 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. |
|
2020-01-31 14:37:08,777 2148 [INFO ] - VERBOSE: Importing function 'Register-Application'. |
|
2020-01-31 14:37:08,793 2148 [INFO ] - VERBOSE: Importing function 'Remove-Process'. |
|
2020-01-31 14:37:08,793 2148 [INFO ] - VERBOSE: Importing function 'Set-EnvironmentVariable'. |
|
2020-01-31 14:37:08,793 2148 [INFO ] - VERBOSE: Importing function 'Set-PowerShellExitCode'. |
|
2020-01-31 14:37:08,808 2148 [INFO ] - VERBOSE: Importing function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 14:37:08,808 2148 [INFO ] - VERBOSE: Importing function 'Test-ProcessAdminRights'. |
|
2020-01-31 14:37:08,808 2148 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. |
|
2020-01-31 14:37:08,824 2148 [INFO ] - VERBOSE: Importing function 'Uninstall-BinFile'. |
|
2020-01-31 14:37:08,824 2148 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:37:08,824 2148 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 14:37:08,839 2148 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 14:37:08,839 2148 [INFO ] - VERBOSE: Importing function 'Update-SessionEnvironment'. |
|
2020-01-31 14:37:08,839 2148 [INFO ] - VERBOSE: Importing function 'Write-ChocolateyFailure'. |
|
2020-01-31 14:37:08,855 2148 [INFO ] - VERBOSE: Importing function 'Write-ChocolateySuccess'. |
|
2020-01-31 14:37:08,855 2148 [INFO ] - VERBOSE: Importing function 'Write-FileUpdateLog'. |
|
2020-01-31 14:37:08,871 2148 [INFO ] - VERBOSE: Importing function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 14:37:08,871 2148 [INFO ] - VERBOSE: Importing alias 'Add-BinFile'. |
|
2020-01-31 14:37:08,871 2148 [INFO ] - VERBOSE: Importing alias 'Generate-BinFile'. |
|
2020-01-31 14:37:08,871 2148 [INFO ] - VERBOSE: Importing alias 'Get-InstallRegistryKey'. |
|
2020-01-31 14:37:08,886 2148 [INFO ] - VERBOSE: Importing alias 'Get-OSBitness'. |
|
2020-01-31 14:37:08,886 2148 [INFO ] - VERBOSE: Importing alias 'Get-ProcessorBits'. |
|
2020-01-31 14:37:08,886 2148 [INFO ] - VERBOSE: Importing alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 14:37:08,902 2148 [INFO ] - VERBOSE: Importing alias 'refreshenv'. |
|
2020-01-31 14:37:08,902 2148 [INFO ] - VERBOSE: Importing alias 'Remove-BinFile'. |
|
2020-01-31 14:37:08,902 2148 [INFO ] - VERBOSE: Importing alias 'Start-ChocolateyProcess'. |
|
2020-01-31 14:37:08,918 2148 [DEBUG] - ---------------------------Script Execution--------------------------- |
|
2020-01-31 14:37:08,918 2148 [DEBUG] - Running 'ChocolateyScriptRunner' for vim-tux.portable v8.2.0184 with packageScript 'C:\ProgramData\chocolatey\lib\vim-tux.portable\tools\chocolateyinstall.ps1', packageFolder:'C:\ProgramData\chocolatey\lib\vim-tux.portable', installArguments: '', packageParameters: '', |
|
2020-01-31 14:37:08,933 2148 [DEBUG] - Running 'C:\ProgramData\chocolatey\lib\vim-tux.portable\tools\chocolateyinstall.ps1' |
|
2020-01-31 14:37:08,980 2148 [DEBUG] - Running Install-ChocolateyPackage -file64 'C:\ProgramData\chocolatey\lib\vim-tux.portable\tools\complete-x64_x64.exe' -fileType 'exe' -silentArgs '-o"C:\ProgramData\chocolatey\lib\vim-tux.portable\tools\vim82" -y' -packageName 'vim-tux.portable' -file 'C:\ProgramData\chocolatey\lib\vim-tux.portable\tools\complete-x86_x32.exe' |
|
2020-01-31 14:37:08,980 2148 [DEBUG] - Running Get-ChocolateyWebFile -packageName 'vim-tux.portable' -fileFullPath 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\vim-tux.portable\8.2.0184\vim-tux.portableInstall.exe' -url 'C:\ProgramData\chocolatey\lib\vim-tux.portable\tools\complete-x86_x32.exe' -url64bit 'C:\ProgramData\chocolatey\lib\vim-tux.portable\tools\complete-x64_x64.exe' -checksum '' -checksumType '' -checksum64 '' -checksumType64 '' -options 'System.Collections.Hashtable' -getOriginalFileName 'True' |
|
2020-01-31 14:37:08,996 2148 [DEBUG] - Running Get-ProcessorBits -compare '64' |
|
2020-01-31 14:37:08,996 2148 [DEBUG] - CPU is 64 bit |
|
2020-01-31 14:37:08,996 2148 [DEBUG] - Setting url to 'C:\ProgramData\chocolatey\lib\vim-tux.portable\tools\complete-x64_x64.exe' and bitPackage to 64 |
|
2020-01-31 14:37:09,011 2148 [DEBUG] - Running Get-WebFileName -url 'C:\ProgramData\chocolatey\lib\vim-tux.portable\tools\complete-x64_x64.exe' -defaultName 'vim-tux.portableInstall.exe' |
|
2020-01-31 14:37:09,183 2148 [INFO ] - Attempt to use original download file name failed for 'C:\ProgramData\chocolatey\lib\vim-tux.portable\tools\complete-x64_x64.exe'. |
|
2020-01-31 14:37:09,183 2148 [INFO ] - |
|
2020-01-31 14:37:09,199 2148 [INFO ] - Copying vim-tux.portable |
|
from 'C:\ProgramData\chocolatey\lib\vim-tux.portable\tools\complete-x64_x64.exe' |
|
2020-01-31 14:37:09,199 2148 [INFO ] - |
|
2020-01-31 14:37:11,215 2148 [DEBUG] - No runtime virus checking built into FOSS Chocolatey. Check out Pro/Business - https://chocolatey.org/compare |
|
2020-01-31 14:37:11,230 2148 [DEBUG] - Running Install-ChocolateyInstallPackage -packageName 'vim-tux.portable' -fileType 'exe' -silentArgs '-o"C:\ProgramData\chocolatey\lib\vim-tux.portable\tools\vim82" -y' -file 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\vim-tux.portable\8.2.0184\vim-tux.portableInstall.exe' -validExitCodes '0' -useOnlyPackageSilentArguments 'False' |
|
2020-01-31 14:37:11,230 2148 [DEBUG] - Running Get-ProcessorBits -compare '32' |
|
2020-01-31 14:37:11,246 2148 [INFO ] - Installing vim-tux.portable... |
|
2020-01-31 14:38:06,411 2656 [DEBUG] - XmlConfiguration is now operational |
|
2020-01-31 14:38:06,647 2656 [INFO ] - ============================================================ |
|
2020-01-31 14:38:07,444 2656 [INFO ] - Chocolatey v0.10.15 |
|
2020-01-31 14:38:07,490 2656 [DEBUG] - Chocolatey is running on Windows v 6.3.9600.0 |
|
2020-01-31 14:38:07,490 2656 [DEBUG] - Attempting to delete file "C:/ProgramData/chocolatey/choco.exe.old". |
|
2020-01-31 14:38:07,505 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\choco.exe.old". |
|
2020-01-31 14:38:07,537 2656 [DEBUG] - Command line: "C:\ProgramData\chocolatey\choco.exe" install vim-tux.install --version 8.2.0184 -fdvy --execution-timeout=2700 --allow-downgrade |
|
2020-01-31 14:38:07,537 2656 [DEBUG] - Received arguments: install vim-tux.install --version 8.2.0184 -fdvy --execution-timeout=2700 --allow-downgrade |
|
2020-01-31 14:38:07,725 2656 [DEBUG] - RemovePendingPackagesTask is now ready and waiting for PreRunMessage. |
|
2020-01-31 14:38:07,740 2656 [DEBUG] - Sending message 'PreRunMessage' out if there are subscribers... |
|
2020-01-31 14:38:07,771 2656 [DEBUG] - [Pending] Removing all pending packages that should not be considered installed... |
|
2020-01-31 14:38:07,974 2656 [DEBUG] - Performing validation checks. |
|
2020-01-31 14:38:08,006 2656 [DEBUG] - Global Configuration Validation Checks: |
|
2020-01-31 14:38:08,006 2656 [DEBUG] - - Package Exit Code / Exit On Reboot = Checked |
|
2020-01-31 14:38:08,021 2656 [DEBUG] - System State Validation Checks: |
|
2020-01-31 14:38:08,037 2656 [DEBUG] - Reboot Requirement Checks: |
|
2020-01-31 14:38:08,037 2656 [DEBUG] - - Pending Computer Rename = Checked |
|
2020-01-31 14:38:08,052 2656 [DEBUG] - - Pending Component Based Servicing = Checked |
|
2020-01-31 14:38:08,052 2656 [DEBUG] - - Pending Windows Auto Update = Checked |
|
2020-01-31 14:38:08,068 2656 [DEBUG] - - Pending File Rename Operations = Checked |
|
2020-01-31 14:38:08,068 2656 [DEBUG] - - Pending Windows Package Installer = Checked |
|
2020-01-31 14:38:08,083 2656 [DEBUG] - - Pending Windows Package Installer SysWow64 = Checked |
|
2020-01-31 14:38:08,099 2656 [INFO ] - 2 validations performed. 2 success(es), 0 warning(s), and 0 error(s). |
|
2020-01-31 14:38:08,115 2656 [DEBUG] - The source 'https://chocolatey.org/api/v2/' evaluated to a 'normal' source type |
|
2020-01-31 14:38:08,131 2656 [DEBUG] - |
|
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. |
|
2020-01-31 14:38:08,177 2656 [DEBUG] - Configuration: CommandName='install'| |
|
CacheLocation='C:\Users\Administrator\AppData\Local\Temp\chocolatey'| |
|
ContainsLegacyPackageInstalls='True'| |
|
CommandExecutionTimeoutSeconds='2700'|WebRequestTimeoutSeconds='30'| |
|
Sources='https://chocolatey.org/api/v2/'|SourceType='normal'| |
|
Debug='True'|Verbose='True'|Trace='False'|Force='True'|Noop='False'| |
|
HelpRequested='False'|UnsuccessfulParsing='False'|RegularOutput='True'| |
|
QuietOutput='False'|PromptForConfirmation='False'|AcceptLicense='True'| |
|
AllowUnofficialBuild='False'|Input='vim-tux.install'| |
|
Version='8.2.0184'| |
|
AllVersions='False'|SkipPackageInstallProvider='False'| |
|
PackageNames='vim-tux.install'|Prerelease='False'|ForceX86='False'| |
|
OverrideArguments='False'|NotSilent='False'| |
|
ApplyPackageParametersToDependencies='False'| |
|
ApplyInstallArgumentsToDependencies='False'|IgnoreDependencies='False'| |
|
AllowMultipleVersions='False'|AllowDowngrade='True'| |
|
ForceDependencies='False'|Information.PlatformType='Windows'| |
|
Information.PlatformVersion='6.3.9600.0'| |
|
Information.PlatformName='Windows Server 2012 R2'| |
|
Information.ChocolateyVersion='0.10.15.0'| |
|
Information.ChocolateyProductVersion='0.10.15'| |
|
Information.FullName='choco, Version=0.10.15.0, Culture=neutral, PublicKeyToken=79d02ea9cad655eb'| |
|
|
|
Information.Is64BitOperatingSystem='True'| |
|
Information.Is64BitProcess='True'|Information.IsInteractive='True'| |
|
Information.UserName='vagrant'| |
|
Information.UserDomainName='WIN-E5K8TM30719'| |
|
Information.IsUserAdministrator='True'| |
|
Information.IsUserSystemAccount='False'| |
|
Information.IsUserRemoteDesktop='False'| |
|
Information.IsUserRemote='True'| |
|
Information.IsProcessElevated='True'| |
|
Information.IsLicensedVersion='False'|Information.LicenseType='Foss'| |
|
Information.CurrentDirectory='C:\Windows\system32'| |
|
Features.AutoUninstaller='True'|Features.ChecksumFiles='True'| |
|
Features.AllowEmptyChecksums='False'| |
|
Features.AllowEmptyChecksumsSecure='True'| |
|
Features.FailOnAutoUninstaller='False'| |
|
Features.FailOnStandardError='False'|Features.UsePowerShellHost='True'| |
|
Features.LogEnvironmentValues='True'|Features.LogWithoutColor='False'| |
|
Features.VirusCheck='False'| |
|
Features.FailOnInvalidOrMissingLicense='False'| |
|
Features.IgnoreInvalidOptionsSwitches='True'| |
|
Features.UsePackageExitCodes='True'| |
|
Features.UseEnhancedExitCodes='False'| |
|
Features.UseFipsCompliantChecksums='False'| |
|
Features.ShowNonElevatedWarnings='True'| |
|
Features.ShowDownloadProgress='False'| |
|
Features.StopOnFirstPackageFailure='False'| |
|
Features.UseRememberedArgumentsForUpgrades='False'| |
|
Features.IgnoreUnfoundPackagesOnUpgradeOutdated='False'| |
|
Features.SkipPackageUpgradesWhenNotInstalled='False'| |
|
Features.RemovePackageInformationOnUninstall='False'| |
|
Features.ExitOnRebootDetected='False'| |
|
Features.LogValidationResultsOnWarnings='True'| |
|
Features.UsePackageRepositoryOptimizations='True'| |
|
Features.ScriptsCheckLastExitCode='False'| |
|
ListCommand.LocalOnly='False'| |
|
ListCommand.IdOnly='False'|ListCommand.IncludeRegistryPrograms='False'| |
|
ListCommand.PageSize='25'|ListCommand.Exact='False'| |
|
ListCommand.ByIdOnly='False'|ListCommand.ByTagOnly='False'| |
|
ListCommand.IdStartsWith='False'|ListCommand.OrderByPopularity='False'| |
|
ListCommand.ApprovedOnly='False'| |
|
ListCommand.DownloadCacheAvailable='False'| |
|
ListCommand.NotBroken='False'| |
|
ListCommand.IncludeVersionOverrides='False'| |
|
UpgradeCommand.FailOnUnfound='False'| |
|
UpgradeCommand.FailOnNotInstalled='False'| |
|
UpgradeCommand.NotifyOnlyAvailableUpgrades='False'| |
|
UpgradeCommand.ExcludePrerelease='False'| |
|
NewCommand.AutomaticPackage='False'| |
|
NewCommand.UseOriginalTemplate='False'|SourceCommand.Command='unknown'| |
|
SourceCommand.Priority='0'|SourceCommand.BypassProxy='False'| |
|
SourceCommand.AllowSelfService='False'| |
|
SourceCommand.VisibleToAdminsOnly='False'| |
|
FeatureCommand.Command='unknown'|ConfigCommand.Command='unknown'| |
|
ApiKeyCommand.Remove='False'|PinCommand.Command='unknown'| |
|
OutdatedCommand.IgnorePinned='False'|Proxy.BypassOnLocal='True'| |
|
2020-01-31 14:38:08,193 2656 [DEBUG] - _ Chocolatey:ChocolateyInstallCommand - Normal Run Mode _ |
|
2020-01-31 14:38:08,209 2656 [INFO ] - Installing the following packages: |
|
2020-01-31 14:38:08,224 2656 [INFO ] - vim-tux.install |
|
2020-01-31 14:38:08,224 2656 [INFO ] - By installing you accept licenses for the packages. |
|
2020-01-31 14:38:08,255 2656 [DEBUG] - Current environment values (may contain sensitive data): |
|
2020-01-31 14:38:08,255 2656 [DEBUG] - * 'TMP'='C:\Users\Administrator\AppData\Local\Temp' ('User') |
|
2020-01-31 14:38:08,255 2656 [DEBUG] - * 'TEMP'='C:\Users\Administrator\AppData\Local\Temp' ('User') |
|
2020-01-31 14:38:08,271 2656 [DEBUG] - * 'ChocolateyLastPathUpdate'='132249380372837642' ('User') |
|
2020-01-31 14:38:08,271 2656 [DEBUG] - * 'FP_NO_HOST_CHECK'='NO' ('Machine') |
|
2020-01-31 14:38:08,271 2656 [DEBUG] - * 'USERNAME'='SYSTEM' ('Machine') |
|
2020-01-31 14:38:08,271 2656 [DEBUG] - * 'Path'='C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Git\cmd;C:\Program Files (x86)\Git\bin;C:\ProgramData\chocolatey\bin;' ('Machine') |
|
2020-01-31 14:38:08,286 2656 [DEBUG] - * 'ComSpec'='C:\Windows\system32\cmd.exe' ('Machine') |
|
2020-01-31 14:38:08,286 2656 [DEBUG] - * 'TMP'='C:\Windows\TEMP' ('Machine') |
|
2020-01-31 14:38:08,286 2656 [DEBUG] - * 'OS'='Windows_NT' ('Machine') |
|
2020-01-31 14:38:08,302 2656 [DEBUG] - * 'windir'='C:\Windows' ('Machine') |
|
2020-01-31 14:38:08,302 2656 [DEBUG] - * 'PROCESSOR_ARCHITECTURE'='AMD64' ('Machine') |
|
2020-01-31 14:38:08,302 2656 [DEBUG] - * 'TEMP'='C:\Windows\TEMP' ('Machine') |
|
2020-01-31 14:38:08,318 2656 [DEBUG] - * 'PATHEXT'='.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC' ('Machine') |
|
2020-01-31 14:38:08,318 2656 [DEBUG] - * 'PSModulePath'='C:\Windows\system32\WindowsPowerShell\v1.0\Modules\' ('Machine') |
|
2020-01-31 14:38:08,318 2656 [DEBUG] - * 'NUMBER_OF_PROCESSORS'='4' ('Machine') |
|
2020-01-31 14:38:08,318 2656 [DEBUG] - * 'PROCESSOR_LEVEL'='6' ('Machine') |
|
2020-01-31 14:38:08,333 2656 [DEBUG] - * 'PROCESSOR_IDENTIFIER'='Intel64 Family 6 Model 45 Stepping 7, GenuineIntel' ('Machine') |
|
2020-01-31 14:38:08,333 2656 [DEBUG] - * 'PROCESSOR_REVISION'='2d07' ('Machine') |
|
2020-01-31 14:38:08,333 2656 [DEBUG] - * 'HOME'='C:\Users\Administrator' ('Machine') |
|
2020-01-31 14:38:08,333 2656 [DEBUG] - * 'ChocolateyInstall'='C:\ProgramData\chocolatey' ('Machine') |
|
2020-01-31 14:38:20,506 2656 [INFO ] - [NuGet] Attempting to resolve dependency 'vcredist2015'. |
|
2020-01-31 14:38:22,584 2656 [INFO ] - [NuGet] Attempting to resolve dependency 'vcredist140 (= 14.0.24215.1)'. |
|
2020-01-31 14:38:23,349 2656 [INFO ] - [NuGet] Attempting to resolve dependency 'chocolatey-core.extension (= 1.3.3)'. |
|
2020-01-31 14:38:25,522 2656 [INFO ] - [NuGet] Attempting to resolve dependency 'KB3033929 (= 1.0.3)'. |
|
2020-01-31 14:38:27,240 2656 [INFO ] - [NuGet] Attempting to resolve dependency 'chocolatey-windowsupdate.extension (= 1.0.4)'. |
|
2020-01-31 14:38:28,084 2656 [INFO ] - [NuGet] Attempting to resolve dependency 'KB3035131 (= 1.0.3)'. |
|
2020-01-31 14:38:28,318 2656 [INFO ] - [NuGet] Attempting to resolve dependency 'KB2919355 (= 1.0.20160915)'. |
|
2020-01-31 14:38:28,881 2656 [INFO ] - [NuGet] Attempting to resolve dependency 'KB2919442 (= 1.0.20160915)'. |
|
2020-01-31 14:38:30,083 2656 [INFO ] - [NuGet] Attempting to resolve dependency 'kb2999226 (= 1.0.20170509)'. |
|
2020-01-31 14:38:54,927 2656 [INFO ] - [NuGet] Installing 'chocolatey-core.extension 1.3.5.1'. |
|
2020-01-31 14:38:54,959 2656 [DEBUG] - [NuGet] Added file 'chocolatey-core.psm1' to folder 'chocolatey-core.extension\extensions'. |
|
2020-01-31 14:38:54,959 2656 [DEBUG] - [NuGet] Added file 'Get-AppInstallLocation.ps1' to folder 'chocolatey-core.extension\extensions'. |
|
2020-01-31 14:38:54,974 2656 [DEBUG] - [NuGet] Added file 'Get-AvailableDriveLetter.ps1' to folder 'chocolatey-core.extension\extensions'. |
|
2020-01-31 14:38:54,974 2656 [DEBUG] - [NuGet] Added file 'Get-EffectiveProxy.ps1' to folder 'chocolatey-core.extension\extensions'. |
|
2020-01-31 14:38:54,974 2656 [DEBUG] - [NuGet] Added file 'Get-PackageCacheLocation.ps1' to folder 'chocolatey-core.extension\extensions'. |
|
2020-01-31 14:38:54,990 2656 [DEBUG] - [NuGet] Added file 'Get-PackageParameters.ps1' to folder 'chocolatey-core.extension\extensions'. |
|
2020-01-31 14:38:54,990 2656 [DEBUG] - [NuGet] Added file 'Get-UninstallRegistryKey.ps1' to folder 'chocolatey-core.extension\extensions'. |
|
2020-01-31 14:38:54,990 2656 [DEBUG] - [NuGet] Added file 'Get-WebContent.ps1' to folder 'chocolatey-core.extension\extensions'. |
|
2020-01-31 14:38:54,990 2656 [DEBUG] - [NuGet] Added file 'Register-Application.ps1' to folder 'chocolatey-core.extension\extensions'. |
|
2020-01-31 14:38:55,005 2656 [DEBUG] - [NuGet] Added file 'Remove-Process.ps1' to folder 'chocolatey-core.extension\extensions'. |
|
2020-01-31 14:38:55,021 2656 [DEBUG] - [NuGet] Added file 'chocolatey-core.extension.nupkg' to folder 'chocolatey-core.extension'. |
|
2020-01-31 14:38:55,849 2656 [DEBUG] - [NuGet] Added file 'chocolatey-core.extension.nuspec' to folder 'chocolatey-core.extension'. |
|
2020-01-31 14:38:55,849 2656 [INFO ] - [NuGet] Successfully installed 'chocolatey-core.extension 1.3.5.1'. |
|
2020-01-31 14:38:55,865 2656 [INFO ] - |
|
chocolatey-core.extension v1.3.5.1 (forced) [Approved] |
|
2020-01-31 14:38:55,912 2656 [INFO ] - chocolatey-core.extension package files install completed. Performing other installation steps. |
|
2020-01-31 14:38:56,568 2656 [DEBUG] - Capturing package files in 'C:\ProgramData\chocolatey\lib\chocolatey-core.extension' |
|
2020-01-31 14:38:56,568 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-core.extension\chocolatey-core.extension.nupkg' |
|
with checksum '7F066B11D65D07704BDB0A9D8FB4437F' |
|
2020-01-31 14:38:56,583 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-core.extension\chocolatey-core.extension.nuspec' |
|
with checksum 'D71F7B1D873058AA1A6CE4EA7CD21AE8' |
|
2020-01-31 14:38:56,583 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\chocolatey-core.psm1' |
|
with checksum '8007E67FDE249548DBF78D1DC8AFDCCC' |
|
2020-01-31 14:38:56,583 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\Get-AppInstallLocation.ps1' |
|
with checksum 'D036C97BC50A3731BF69A15417F60E72' |
|
2020-01-31 14:38:56,583 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\Get-AvailableDriveLetter.ps1' |
|
with checksum '2F386746AFC2ACB9561DFB245239B93F' |
|
2020-01-31 14:38:56,599 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\Get-EffectiveProxy.ps1' |
|
with checksum '3895F062D2D91D9D32D1FC57A619066C' |
|
2020-01-31 14:38:56,599 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\Get-PackageCacheLocation.ps1' |
|
with checksum '77A378E5C659E5A53D2D64E276159B62' |
|
2020-01-31 14:38:56,599 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\Get-PackageParameters.ps1' |
|
with checksum 'C08B3AF8CA150B6609DF2B978B693269' |
|
2020-01-31 14:38:56,615 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\Get-UninstallRegistryKey.ps1' |
|
with checksum '3FAA5C11AAFC4EA35BB98EA797446C97' |
|
2020-01-31 14:38:56,615 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\Get-WebContent.ps1' |
|
with checksum '57D013E581EFEA3D4D8366183C9A5797' |
|
2020-01-31 14:38:56,615 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\Register-Application.ps1' |
|
with checksum 'D2853E569DAC9A341642BA76EC4FB411' |
|
2020-01-31 14:38:56,615 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\Remove-Process.ps1' |
|
with checksum 'CFDFB899BE8491454B264BF7C5EF08BA' |
|
2020-01-31 14:38:56,661 2656 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\extensions". |
|
2020-01-31 14:38:56,677 2656 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\extensions\chocolatey-core". |
|
2020-01-31 14:38:56,677 2656 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\chocolatey-core.psm1" |
|
to "C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1". |
|
2020-01-31 14:38:56,693 2656 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\Get-AppInstallLocation.ps1" |
|
to "C:\ProgramData\chocolatey\extensions\chocolatey-core\Get-AppInstallLocation.ps1". |
|
2020-01-31 14:38:56,693 2656 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\Get-AvailableDriveLetter.ps1" |
|
to "C:\ProgramData\chocolatey\extensions\chocolatey-core\Get-AvailableDriveLetter.ps1". |
|
2020-01-31 14:38:56,708 2656 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\Get-EffectiveProxy.ps1" |
|
to "C:\ProgramData\chocolatey\extensions\chocolatey-core\Get-EffectiveProxy.ps1". |
|
2020-01-31 14:38:56,708 2656 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\Get-PackageCacheLocation.ps1" |
|
to "C:\ProgramData\chocolatey\extensions\chocolatey-core\Get-PackageCacheLocation.ps1". |
|
2020-01-31 14:38:56,708 2656 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\Get-PackageParameters.ps1" |
|
to "C:\ProgramData\chocolatey\extensions\chocolatey-core\Get-PackageParameters.ps1". |
|
2020-01-31 14:38:56,724 2656 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\Get-UninstallRegistryKey.ps1" |
|
to "C:\ProgramData\chocolatey\extensions\chocolatey-core\Get-UninstallRegistryKey.ps1". |
|
2020-01-31 14:38:56,724 2656 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\Get-WebContent.ps1" |
|
to "C:\ProgramData\chocolatey\extensions\chocolatey-core\Get-WebContent.ps1". |
|
2020-01-31 14:38:56,724 2656 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\Register-Application.ps1" |
|
to "C:\ProgramData\chocolatey\extensions\chocolatey-core\Register-Application.ps1". |
|
2020-01-31 14:38:56,724 2656 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib\chocolatey-core.extension\extensions\Remove-Process.ps1" |
|
to "C:\ProgramData\chocolatey\extensions\chocolatey-core\Remove-Process.ps1". |
|
2020-01-31 14:38:58,255 2656 [WARN ] - Installed/updated chocolatey-core extensions. |
|
2020-01-31 14:39:00,818 2656 [DEBUG] - Adding 'Hidden' attribute(s) to 'C:\ProgramData\chocolatey\.chocolatey'. |
|
2020-01-31 14:39:01,115 2656 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\.chocolatey\chocolatey-core.extension.1.3.5.1". |
|
2020-01-31 14:39:01,147 2656 [DEBUG] - There was no original file at 'C:\ProgramData\chocolatey\.chocolatey\chocolatey-core.extension.1.3.5.1\.files' |
|
2020-01-31 14:39:01,161 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\chocolatey-core.extension.1.3.5.1\.extra". |
|
2020-01-31 14:39:01,161 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\chocolatey-core.extension.1.3.5.1\.version". |
|
2020-01-31 14:39:01,177 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\chocolatey-core.extension.1.3.5.1\.sxs". |
|
2020-01-31 14:39:01,177 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\chocolatey-core.extension.1.3.5.1\.pin". |
|
2020-01-31 14:39:01,193 2656 [DEBUG] - Sending message 'HandlePackageResultCompletedMessage' out if there are subscribers... |
|
2020-01-31 14:39:01,193 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\chocolatey-core.extension\.chocolateyPending". |
|
2020-01-31 14:39:01,208 2656 [INFO ] - The install of chocolatey-core.extension was successful. |
|
2020-01-31 14:39:01,208 2656 [INFO ] - Software installed to 'C:\ProgramData\chocolatey\extensions\chocolatey-core' |
|
2020-01-31 14:39:01,224 2656 [INFO ] - [NuGet] Installing 'chocolatey-windowsupdate.extension 1.0.4'. |
|
2020-01-31 14:39:01,224 2656 [DEBUG] - [NuGet] Added file 'chocolatey-windowsupdate.psm1' to folder 'chocolatey-windowsupdate.extension\extensions'. |
|
2020-01-31 14:39:01,240 2656 [DEBUG] - [NuGet] Added file 'Get-NativeInstallerExitCode.ps1' to folder 'chocolatey-windowsupdate.extension\extensions'. |
|
2020-01-31 14:39:01,240 2656 [DEBUG] - [NuGet] Added file 'Get-WindowsUpdateErrorDescription.ps1' to folder 'chocolatey-windowsupdate.extension\extensions'. |
|
2020-01-31 14:39:01,240 2656 [DEBUG] - [NuGet] Added file 'Install-ChocolateyPackageAndHandleExitCode.ps1' to folder 'chocolatey-windowsupdate.extension\extensions'. |
|
2020-01-31 14:39:01,255 2656 [DEBUG] - [NuGet] Added file 'Install-WindowsUpdate.ps1' to folder 'chocolatey-windowsupdate.extension\extensions'. |
|
2020-01-31 14:39:01,255 2656 [DEBUG] - [NuGet] Added file 'Set-PowerShellExitCode.ps1' to folder 'chocolatey-windowsupdate.extension\extensions'. |
|
2020-01-31 14:39:01,255 2656 [DEBUG] - [NuGet] Added file 'Test-WindowsUpdate.ps1' to folder 'chocolatey-windowsupdate.extension\extensions'. |
|
2020-01-31 14:39:01,255 2656 [DEBUG] - [NuGet] Added file 'chocolatey-windowsupdate.extension.nupkg' to folder 'chocolatey-windowsupdate.extension'. |
|
2020-01-31 14:39:01,474 2656 [DEBUG] - [NuGet] Added file 'chocolatey-windowsupdate.extension.nuspec' to folder 'chocolatey-windowsupdate.extension'. |
|
2020-01-31 14:39:01,474 2656 [INFO ] - [NuGet] Successfully installed 'chocolatey-windowsupdate.extension 1.0.4'. |
|
2020-01-31 14:39:01,490 2656 [INFO ] - |
|
chocolatey-windowsupdate.extension v1.0.4 (forced) [Approved] |
|
2020-01-31 14:39:01,490 2656 [INFO ] - chocolatey-windowsupdate.extension package files install completed. Performing other installation steps. |
|
2020-01-31 14:39:01,506 2656 [DEBUG] - Capturing package files in 'C:\ProgramData\chocolatey\lib\chocolatey-windowsupdate.extension' |
|
2020-01-31 14:39:01,506 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-windowsupdate.extension\chocolatey-windowsupdate.extension.nupkg' |
|
with checksum '4B43CF7B5AE8F641C5B49B901409E0D6' |
|
2020-01-31 14:39:01,506 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-windowsupdate.extension\chocolatey-windowsupdate.extension.nuspec' |
|
with checksum 'F39F67A0E21A885B7EAD50BB74ADA6D8' |
|
2020-01-31 14:39:01,521 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-windowsupdate.extension\extensions\chocolatey-windowsupdate.psm1' |
|
with checksum '6743F625A65587991A230D8D965908F6' |
|
2020-01-31 14:39:01,521 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-windowsupdate.extension\extensions\Get-NativeInstallerExitCode.ps1' |
|
with checksum 'A8DA12DDEFC9C6A077E7F59FB47C3CEC' |
|
2020-01-31 14:39:01,521 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-windowsupdate.extension\extensions\Get-WindowsUpdateErrorDescription.ps1' |
|
with checksum '1E302C5D745B2A3C87DCFE76709A5C7F' |
|
2020-01-31 14:39:01,536 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-windowsupdate.extension\extensions\Install-ChocolateyPackageAndHandleExitCode.ps1' |
|
with checksum '10A758B39213EA1C887B360A3FE8F6FF' |
|
2020-01-31 14:39:01,536 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-windowsupdate.extension\extensions\Install-WindowsUpdate.ps1' |
|
with checksum '68DF43E06F795F78EBC86D86D43C793A' |
|
2020-01-31 14:39:01,536 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-windowsupdate.extension\extensions\Set-PowerShellExitCode.ps1' |
|
with checksum '58F9F443A2415DB881C5FB711C6D445A' |
|
2020-01-31 14:39:01,536 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\chocolatey-windowsupdate.extension\extensions\Test-WindowsUpdate.ps1' |
|
with checksum '7579F636EC17744323C82F774AE259DE' |
|
2020-01-31 14:39:01,552 2656 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate". |
|
2020-01-31 14:39:01,552 2656 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib\chocolatey-windowsupdate.extension\extensions\chocolatey-windowsupdate.psm1" |
|
to "C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1". |
|
2020-01-31 14:39:01,552 2656 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib\chocolatey-windowsupdate.extension\extensions\Get-NativeInstallerExitCode.ps1" |
|
to "C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\Get-NativeInstallerExitCode.ps1". |
|
2020-01-31 14:39:01,568 2656 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib\chocolatey-windowsupdate.extension\extensions\Get-WindowsUpdateErrorDescription.ps1" |
|
to "C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\Get-WindowsUpdateErrorDescription.ps1". |
|
2020-01-31 14:39:01,568 2656 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib\chocolatey-windowsupdate.extension\extensions\Install-ChocolateyPackageAndHandleExitCode.ps1" |
|
to "C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\Install-ChocolateyPackageAndHandleExitCode.ps1". |
|
2020-01-31 14:39:01,568 2656 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib\chocolatey-windowsupdate.extension\extensions\Install-WindowsUpdate.ps1" |
|
to "C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\Install-WindowsUpdate.ps1". |
|
2020-01-31 14:39:01,568 2656 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib\chocolatey-windowsupdate.extension\extensions\Set-PowerShellExitCode.ps1" |
|
to "C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\Set-PowerShellExitCode.ps1". |
|
2020-01-31 14:39:01,583 2656 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib\chocolatey-windowsupdate.extension\extensions\Test-WindowsUpdate.ps1" |
|
to "C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\Test-WindowsUpdate.ps1". |
|
2020-01-31 14:39:03,099 2656 [WARN ] - Installed/updated chocolatey-windowsupdate extensions. |
|
2020-01-31 14:39:03,099 2656 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\.chocolatey\chocolatey-windowsupdate.extension.1.0.4". |
|
2020-01-31 14:39:03,115 2656 [DEBUG] - There was no original file at 'C:\ProgramData\chocolatey\.chocolatey\chocolatey-windowsupdate.extension.1.0.4\.files' |
|
2020-01-31 14:39:03,115 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\chocolatey-windowsupdate.extension.1.0.4\.extra". |
|
2020-01-31 14:39:03,115 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\chocolatey-windowsupdate.extension.1.0.4\.version". |
|
2020-01-31 14:39:03,130 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\chocolatey-windowsupdate.extension.1.0.4\.sxs". |
|
2020-01-31 14:39:03,130 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\chocolatey-windowsupdate.extension.1.0.4\.pin". |
|
2020-01-31 14:39:03,130 2656 [DEBUG] - Sending message 'HandlePackageResultCompletedMessage' out if there are subscribers... |
|
2020-01-31 14:39:03,146 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\chocolatey-windowsupdate.extension\.chocolateyPending". |
|
2020-01-31 14:39:03,146 2656 [INFO ] - The install of chocolatey-windowsupdate.extension was successful. |
|
2020-01-31 14:39:03,146 2656 [INFO ] - Software installed to 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate' |
|
2020-01-31 14:39:03,161 2656 [INFO ] - [NuGet] Installing 'KB3035131 1.0.3'. |
|
2020-01-31 14:39:03,161 2656 [DEBUG] - [NuGet] Added file 'ChocolateyInstall.ps1' to folder 'KB3035131\Tools'. |
|
2020-01-31 14:39:03,161 2656 [DEBUG] - [NuGet] Added file 'KB3035131.nupkg' to folder 'KB3035131'. |
|
2020-01-31 14:39:03,396 2656 [DEBUG] - [NuGet] Added file 'KB3035131.nuspec' to folder 'KB3035131'. |
|
2020-01-31 14:39:03,412 2656 [INFO ] - [NuGet] Successfully installed 'KB3035131 1.0.3'. |
|
2020-01-31 14:39:03,412 2656 [INFO ] - |
|
KB3035131 v1.0.3 (forced) [Approved] |
|
2020-01-31 14:39:03,412 2656 [INFO ] - kb3035131 package files install completed. Performing other installation steps. |
|
2020-01-31 14:39:03,474 2656 [DEBUG] - Contents of 'C:\ProgramData\chocolatey\lib\KB3035131\Tools\ChocolateyInstall.ps1': |
|
2020-01-31 14:39:03,505 2656 [DEBUG] - $msuData = @{ |
|
'6.3-client' = @{ |
|
Url = 'https://download.microsoft.com/download/D/2/B/D2B466AA-E011-42D6-92DA-4FA8FCDAB8CB/Windows8.1-KB3035131-x86.msu' |
|
Checksum = '61C80C09EBE58558A7CF15F6892B392BC73A2EF669255A236562B6196FFE47C0' |
|
Url64 = 'https://download.microsoft.com/download/A/B/7/AB7824E4-A7BC-49A0-BBAB-0556344F8747/Windows8.1-KB3035131-x64.msu' |
|
Checksum64 = 'A9D6F7B519AD3A22ABDE3AF7CE3EBB90FF84A028EDE2154AC5D0548C88CCFEDD' |
|
} |
|
'6.3-server' = @{ |
|
Url64 = 'https://download.microsoft.com/download/B/2/4/B24FB08A-DEA8-4B4C-8EE4-B9F0FB180200/Windows8.1-KB3035131-x64.msu' |
|
Checksum64 = 'A9D6F7B519AD3A22ABDE3AF7CE3EBB90FF84A028EDE2154AC5D0548C88CCFEDD' |
|
} |
|
'6.2-client' = @{ |
|
Url = 'https://download.microsoft.com/download/F/A/1/FA163776-A65D-49DA-BCAA-BD4173B0656E/Windows8-RT-KB3035131-x86.msu' |
|
Checksum = '3CBA7162DE2ECFD14E2C5B8805C15C74E15898E1D1DEAAAEDCC18BB50ACB5BC3' |
|
Url64 = 'https://download.microsoft.com/download/4/3/1/431125D8-FAA3-4420-B7C0-2794E71F50FB/Windows8-RT-KB3035131-x64.msu' |
|
Checksum64 = '22CBF7E733C55C4F90DFA0864AE8B61F07E522825DE7DDD94439FF4D1F4D2766' |
|
} |
|
'6.2-server' = @{ |
|
Url64 = 'https://download.microsoft.com/download/4/7/6/47682024-8C3B-4D81-B019-24E34EAC3ABA/Windows8-RT-KB3035131-x64.msu' |
|
Checksum64 = '22CBF7E733C55C4F90DFA0864AE8B61F07E522825DE7DDD94439FF4D1F4D2766' |
|
} |
|
'6.1-client' = @{ |
|
Url = 'https://download.microsoft.com/download/8/A/3/8A3E90CC-AEC3-4645-8CF3-2BD205E26B5E/Windows6.1-KB3035131-x86.msu' |
|
Checksum = '65608782ED5A77293436ADE0B1CDA37668A30D8E27198A6CD331704ADDC3D782' |
|
Url64 = 'https://download.microsoft.com/download/3/D/F/3DF6B0B1-D849-4272-AA98-3AA8BB456CCC/Windows6.1-KB3035131-x64.msu' |
|
Checksum64 = '589F6BA1097937E99B3CECC113D3535FBF7DE4E40623D3145E89E4EBCBE028AC' |
|
} |
|
'6.1-server' = @{ |
|
Url64 = 'https://download.microsoft.com/download/1/1/4/1140E6A6-D865-48FD-BF91-5FF8975F8BE5/Windows6.1-KB3035131-x64.msu' |
|
Checksum64 = '589F6BA1097937E99B3CECC113D3535FBF7DE4E40623D3145E89E4EBCBE028AC' |
|
} |
|
'6.0-client' = @{ |
|
Url = 'https://download.microsoft.com/download/7/1/4/714C40B3-7A8A-4DE5-B082-51E5054D1EEC/Windows6.0-KB3035131-x86.msu' |
|
Checksum = 'E883D65A9DB0669DA158DC27C8FD63C4C91D1EEA46C3B415391030EA6B3C1083' |
|
Url64 = 'https://download.microsoft.com/download/C/B/5/CB536E82-8BFC-4256-B729-543F91CF7344/Windows6.0-KB3035131-x64.msu' |
|
Checksum64 = '391D27E4A62C52F2DD83DEC869728EC67A76694C6181E4E0287B565B86E8FE0E' |
|
} |
|
'6.0-server' = @{ |
|
Url = 'https://download.microsoft.com/download/8/0/E/80E3D2ED-D8C1-40C0-9CAA-9431D3F1A0A6/Windows6.0-KB3035131-x86.msu' |
|
Checksum = 'E883D65A9DB0669DA158DC27C8FD63C4C91D1EEA46C3B415391030EA6B3C1083' |
|
Url64 = 'https://download.microsoft.com/download/F/6/B/F6B87903-3523-4761-BE50-0982E5B3674A/Windows6.0-KB3035131-x64.msu' |
|
Checksum64 = '391D27E4A62C52F2DD83DEC869728EC67A76694C6181E4E0287B565B86E8FE0E' |
|
} |
|
} |
|
|
|
$servicePackRequirements = @{ |
|
'6.1' = @{ ServicePackNumber = 1; ChocolateyPackage = 'KB976932' } |
|
'6.0' = @{ ServicePackNumber = 2; ChocolateyPackage = $null } |
|
} |
|
|
|
chocolateyInstaller\Install-WindowsUpdate -Id 'KB3035131' -MsuData $msuData -ChecksumType 'sha256' -ServicePackRequirements $servicePackRequirements |
|
|
|
2020-01-31 14:39:05,208 2656 [DEBUG] - 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\KB3035131\Tools\ChocolateyInstall.ps1' -installArguments '' -packageParameters '''] |
|
2020-01-31 14:39:05,208 2656 [DEBUG] - Redirecting System.Management.Automation.resources, Version=3.0.0.0, Culture=en-US, PublicKeyToken=31bf3856ad364e35, requested by '' |
|
2020-01-31 14:39:08,677 2656 [DEBUG] - Host version is 4.0, PowerShell Version is '4.0' and CLR Version is '4.0.30319.33440'. |
|
2020-01-31 14:39:09,085 2656 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. |
|
2020-01-31 14:39:09,085 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. |
|
2020-01-31 14:39:09,085 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. |
|
2020-01-31 14:39:09,099 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. |
|
2020-01-31 14:39:09,099 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'. |
|
2020-01-31 14:39:09,099 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 14:39:09,115 2656 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. |
|
2020-01-31 14:39:09,115 2656 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. |
|
2020-01-31 14:39:09,115 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 14:39:09,130 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 14:39:09,130 2656 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. |
|
2020-01-31 14:39:09,130 2656 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. |
|
2020-01-31 14:39:09,146 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:39:09,146 2656 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. |
|
2020-01-31 14:39:09,146 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. |
|
2020-01-31 14:39:09,146 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. |
|
2020-01-31 14:39:09,162 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. |
|
2020-01-31 14:39:09,162 2656 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. |
|
2020-01-31 14:39:09,162 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 14:39:09,177 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:39:09,177 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 14:39:09,177 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 14:39:09,193 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 14:39:09,193 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. |
|
2020-01-31 14:39:09,193 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'. |
|
2020-01-31 14:39:09,208 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 14:39:09,208 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 14:39:09,208 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. |
|
2020-01-31 14:39:09,224 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 14:39:09,224 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 14:39:09,240 2656 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. |
|
2020-01-31 14:39:09,240 2656 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'. |
|
2020-01-31 14:39:09,240 2656 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. |
|
2020-01-31 14:39:09,255 2656 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 14:39:09,255 2656 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'. |
|
2020-01-31 14:39:09,271 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. |
|
2020-01-31 14:39:09,271 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:39:09,271 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 14:39:09,286 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 14:39:09,286 2656 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'. |
|
2020-01-31 14:39:09,286 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. |
|
2020-01-31 14:39:09,302 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. |
|
2020-01-31 14:39:09,302 2656 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. |
|
2020-01-31 14:39:09,302 2656 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 14:39:09,318 2656 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. |
|
2020-01-31 14:39:09,318 2656 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. |
|
2020-01-31 14:39:09,318 2656 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. |
|
2020-01-31 14:39:09,333 2656 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. |
|
2020-01-31 14:39:09,333 2656 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. |
|
2020-01-31 14:39:09,333 2656 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. |
|
2020-01-31 14:39:09,349 2656 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 14:39:09,349 2656 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. |
|
2020-01-31 14:39:09,349 2656 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. |
|
2020-01-31 14:39:09,396 2656 [DEBUG] - Loading community extensions |
|
2020-01-31 14:39:09,412 2656 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1' |
|
2020-01-31 14:39:09,412 2656 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1'. |
|
2020-01-31 14:39:10,349 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:39:10,349 2656 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. |
|
2020-01-31 14:39:10,365 2656 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:39:10,365 2656 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. |
|
2020-01-31 14:39:10,365 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:39:10,380 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 14:39:10,380 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. |
|
2020-01-31 14:39:10,396 2656 [INFO ] - VERBOSE: Exporting function 'Register-Application'. |
|
2020-01-31 14:39:10,396 2656 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. |
|
2020-01-31 14:39:10,411 2656 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. |
|
2020-01-31 14:39:10,427 2656 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:39:10,427 2656 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. |
|
2020-01-31 14:39:10,427 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:39:10,427 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'. |
|
2020-01-31 14:39:10,443 2656 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:39:10,443 2656 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. |
|
2020-01-31 14:39:10,443 2656 [INFO ] - VERBOSE: Importing function 'Register-Application'. |
|
2020-01-31 14:39:10,458 2656 [INFO ] - VERBOSE: Importing function 'Remove-Process'. |
|
2020-01-31 14:39:10,458 2656 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1' |
|
2020-01-31 14:39:10,458 2656 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1'. |
|
2020-01-31 14:39:10,599 2656 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. |
|
2020-01-31 14:39:10,599 2656 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. |
|
2020-01-31 14:39:10,599 2656 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. |
|
2020-01-31 14:39:10,615 2656 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. |
|
2020-01-31 14:39:10,615 2656 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. |
|
2020-01-31 14:39:10,615 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. |
|
2020-01-31 14:39:10,630 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. |
|
2020-01-31 14:39:10,630 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. |
|
2020-01-31 14:39:10,630 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'. |
|
2020-01-31 14:39:10,646 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 14:39:10,646 2656 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. |
|
2020-01-31 14:39:10,646 2656 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. |
|
2020-01-31 14:39:10,646 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 14:39:10,661 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 14:39:10,661 2656 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. |
|
2020-01-31 14:39:10,661 2656 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. |
|
2020-01-31 14:39:10,677 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:39:10,677 2656 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. |
|
2020-01-31 14:39:10,677 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. |
|
2020-01-31 14:39:10,693 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. |
|
2020-01-31 14:39:10,693 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. |
|
2020-01-31 14:39:10,708 2656 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. |
|
2020-01-31 14:39:10,708 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 14:39:10,708 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:39:10,724 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 14:39:10,724 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 14:39:10,724 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 14:39:10,724 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. |
|
2020-01-31 14:39:10,740 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'. |
|
2020-01-31 14:39:10,740 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 14:39:10,740 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 14:39:10,740 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. |
|
2020-01-31 14:39:10,755 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 14:39:10,755 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 14:39:10,755 2656 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. |
|
2020-01-31 14:39:10,755 2656 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'. |
|
2020-01-31 14:39:10,771 2656 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. |
|
2020-01-31 14:39:10,771 2656 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 14:39:10,787 2656 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'. |
|
2020-01-31 14:39:10,787 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. |
|
2020-01-31 14:39:10,787 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:39:10,802 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 14:39:10,802 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 14:39:10,802 2656 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'. |
|
2020-01-31 14:39:10,818 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. |
|
2020-01-31 14:39:10,818 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. |
|
2020-01-31 14:39:10,818 2656 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. |
|
2020-01-31 14:39:10,818 2656 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 14:39:10,833 2656 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. |
|
2020-01-31 14:39:10,833 2656 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:39:10,833 2656 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. |
|
2020-01-31 14:39:10,850 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:39:10,850 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. |
|
2020-01-31 14:39:10,850 2656 [INFO ] - VERBOSE: Exporting function 'Register-Application'. |
|
2020-01-31 14:39:10,865 2656 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. |
|
2020-01-31 14:39:10,865 2656 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. |
|
2020-01-31 14:39:10,865 2656 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. |
|
2020-01-31 14:39:10,865 2656 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. |
|
2020-01-31 14:39:10,880 2656 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. |
|
2020-01-31 14:39:10,880 2656 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. |
|
2020-01-31 14:39:10,880 2656 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. |
|
2020-01-31 14:39:10,896 2656 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. |
|
2020-01-31 14:39:10,896 2656 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. |
|
2020-01-31 14:39:10,896 2656 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 14:39:10,911 2656 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. |
|
2020-01-31 14:39:10,911 2656 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. |
|
2020-01-31 14:39:10,911 2656 [INFO ] - VERBOSE: Importing function 'Format-FileSize'. |
|
2020-01-31 14:39:10,927 2656 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. |
|
2020-01-31 14:39:10,927 2656 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:39:10,927 2656 [INFO ] - VERBOSE: Importing function 'Get-ChecksumValid'. |
|
2020-01-31 14:39:10,943 2656 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyUnzip'. |
|
2020-01-31 14:39:10,943 2656 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyWebFile'. |
|
2020-01-31 14:39:10,943 2656 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. |
|
2020-01-31 14:39:10,958 2656 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariable'. |
|
2020-01-31 14:39:10,958 2656 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 14:39:10,958 2656 [INFO ] - VERBOSE: Importing function 'Get-FtpFile'. |
|
2020-01-31 14:39:10,974 2656 [INFO ] - VERBOSE: Importing function 'Get-OSArchitectureWidth'. |
|
2020-01-31 14:39:10,974 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:39:10,974 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'. |
|
2020-01-31 14:39:10,990 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 14:39:10,990 2656 [INFO ] - VERBOSE: Importing function 'Get-ToolsLocation'. |
|
2020-01-31 14:39:10,990 2656 [INFO ] - VERBOSE: Importing function 'Get-UACEnabled'. |
|
2020-01-31 14:39:11,005 2656 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:39:11,005 2656 [INFO ] - VERBOSE: Importing function 'Get-VirusCheckValid'. |
|
2020-01-31 14:39:11,005 2656 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. |
|
2020-01-31 14:39:11,005 2656 [INFO ] - VERBOSE: Importing function 'Get-WebFile'. |
|
2020-01-31 14:39:11,021 2656 [INFO ] - VERBOSE: Importing function 'Get-WebFileName'. |
|
2020-01-31 14:39:11,021 2656 [INFO ] - VERBOSE: Importing function 'Get-WebHeaders'. |
|
2020-01-31 14:39:11,021 2656 [INFO ] - VERBOSE: Importing function 'Install-BinFile'. |
|
2020-01-31 14:39:11,037 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 14:39:11,037 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:39:11,037 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 14:39:11,052 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 14:39:11,052 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 14:39:11,052 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPackage'. |
|
2020-01-31 14:39:11,068 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPath'. |
|
2020-01-31 14:39:11,068 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 14:39:11,068 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 14:39:11,068 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyShortcut'. |
|
2020-01-31 14:39:11,083 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 14:39:11,083 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 14:39:11,083 2656 [INFO ] - VERBOSE: Importing function 'Install-Vsix'. |
|
2020-01-31 14:39:11,099 2656 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. |
|
2020-01-31 14:39:11,099 2656 [INFO ] - VERBOSE: Importing function 'Register-Application'. |
|
2020-01-31 14:39:11,099 2656 [INFO ] - VERBOSE: Importing function 'Remove-Process'. |
|
2020-01-31 14:39:11,115 2656 [INFO ] - VERBOSE: Importing function 'Set-EnvironmentVariable'. |
|
2020-01-31 14:39:11,115 2656 [INFO ] - VERBOSE: Importing function 'Set-PowerShellExitCode'. |
|
2020-01-31 14:39:11,115 2656 [INFO ] - VERBOSE: Importing function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 14:39:11,115 2656 [INFO ] - VERBOSE: Importing function 'Test-ProcessAdminRights'. |
|
2020-01-31 14:39:11,130 2656 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. |
|
2020-01-31 14:39:11,130 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-BinFile'. |
|
2020-01-31 14:39:11,130 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:39:11,146 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 14:39:11,146 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 14:39:11,146 2656 [INFO ] - VERBOSE: Importing function 'Update-SessionEnvironment'. |
|
2020-01-31 14:39:11,161 2656 [INFO ] - VERBOSE: Importing function 'Write-ChocolateyFailure'. |
|
2020-01-31 14:39:11,161 2656 [INFO ] - VERBOSE: Importing function 'Write-ChocolateySuccess'. |
|
2020-01-31 14:39:11,161 2656 [INFO ] - VERBOSE: Importing function 'Write-FileUpdateLog'. |
|
2020-01-31 14:39:11,177 2656 [INFO ] - VERBOSE: Importing function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 14:39:11,177 2656 [INFO ] - VERBOSE: Importing alias 'Add-BinFile'. |
|
2020-01-31 14:39:11,177 2656 [INFO ] - VERBOSE: Importing alias 'Generate-BinFile'. |
|
2020-01-31 14:39:11,193 2656 [INFO ] - VERBOSE: Importing alias 'Get-InstallRegistryKey'. |
|
2020-01-31 14:39:11,193 2656 [INFO ] - VERBOSE: Importing alias 'Get-OSBitness'. |
|
2020-01-31 14:39:11,193 2656 [INFO ] - VERBOSE: Importing alias 'Get-ProcessorBits'. |
|
2020-01-31 14:39:11,193 2656 [INFO ] - VERBOSE: Importing alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 14:39:11,208 2656 [INFO ] - VERBOSE: Importing alias 'refreshenv'. |
|
2020-01-31 14:39:11,208 2656 [INFO ] - VERBOSE: Importing alias 'Remove-BinFile'. |
|
2020-01-31 14:39:11,208 2656 [INFO ] - VERBOSE: Importing alias 'Start-ChocolateyProcess'. |
|
2020-01-31 14:39:11,661 2656 [DEBUG] - ---------------------------Script Execution--------------------------- |
|
2020-01-31 14:39:11,677 2656 [DEBUG] - Running 'ChocolateyScriptRunner' for KB3035131 v1.0.3 with packageScript 'C:\ProgramData\chocolatey\lib\KB3035131\Tools\ChocolateyInstall.ps1', packageFolder:'C:\ProgramData\chocolatey\lib\KB3035131', installArguments: '', packageParameters: '', |
|
2020-01-31 14:39:11,708 2656 [DEBUG] - Running 'C:\ProgramData\chocolatey\lib\KB3035131\Tools\ChocolateyInstall.ps1' |
|
2020-01-31 14:39:11,787 2656 [INFO ] - VERBOSE: Obtaining operating system information |
|
2020-01-31 14:39:12,583 2656 [INFO ] - VERBOSE: Operating system: Microsoft Windows Server 2012 R2 Datacenter, version 6.3.9600, product type 'server' |
|
2020-01-31 14:39:12,630 2656 [INFO ] - VERBOSE: Locating MSU rules for this operating system |
|
2020-01-31 14:39:12,677 2656 [INFO ] - VERBOSE: Located MSU rules using selector: 6.3-server |
|
2020-01-31 14:39:12,708 2656 [INFO ] - VERBOSE: Checking if update KB3035131 is already installed |
|
2020-01-31 14:39:12,724 2656 [INFO ] - VERBOSE: Looking for Win32_QuickFixEngineering with HotFixID = KB3035131 |
|
2020-01-31 14:39:14,333 2656 [INFO ] - VERBOSE: QFE KB3035131 found: False |
|
2020-01-31 14:39:14,333 2656 [INFO ] - VERBOSE: Locating Service Pack rules for this operating system |
|
2020-01-31 14:39:14,349 2656 [INFO ] - VERBOSE: No Service Pack rules defined for this operating system |
|
2020-01-31 14:39:14,365 2656 [INFO ] - VERBOSE: No Service Pack requirements are defined for this update on this operating system. |
|
2020-01-31 14:39:14,693 2656 [DEBUG] - Running Install-ChocolateyPackage -validExitCodes '0' -url64bit 'https://download.microsoft.com/download/B/2/4/B24FB08A-DEA8-4B4C-8EE4-B9F0FB180200/Windows8.1-KB3035131-x64.msu' -fileType 'msu' -checksum64 'A9D6F7B519AD3A22ABDE3AF7CE3EBB90FF84A028EDE2154AC5D0548C88CCFEDD' -packageName 'KB3035131' -checksumType 'sha256' -silentArgs '/quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB3035131.Install.evt"' -checksumType64 'sha256' |
|
2020-01-31 14:39:14,865 2656 [DEBUG] - Running Get-ChocolateyWebFile -packageName 'KB3035131' -fileFullPath 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB3035131\1.0.3\KB3035131Install.msu' -url '' -url64bit 'https://download.microsoft.com/download/B/2/4/B24FB08A-DEA8-4B4C-8EE4-B9F0FB180200/Windows8.1-KB3035131-x64.msu' -checksum '' -checksumType 'sha256' -checksum64 'A9D6F7B519AD3A22ABDE3AF7CE3EBB90FF84A028EDE2154AC5D0548C88CCFEDD' -checksumType64 'sha256' -options 'System.Collections.Hashtable' -getOriginalFileName 'True' |
|
2020-01-31 14:39:14,912 2656 [DEBUG] - Running Get-ProcessorBits -compare '64' |
|
2020-01-31 14:39:14,958 2656 [DEBUG] - CPU is 64 bit |
|
2020-01-31 14:39:14,990 2656 [DEBUG] - Setting url to 'https://download.microsoft.com/download/B/2/4/B24FB08A-DEA8-4B4C-8EE4-B9F0FB180200/Windows8.1-KB3035131-x64.msu' and bitPackage to 64 |
|
2020-01-31 14:39:15,116 2656 [DEBUG] - Running Get-WebFileName -url 'https://download.microsoft.com/download/B/2/4/B24FB08A-DEA8-4B4C-8EE4-B9F0FB180200/Windows8.1-KB3035131-x64.msu' -defaultName 'KB3035131Install.msu' |
|
2020-01-31 14:39:15,474 2656 [DEBUG] - Using response url to determine file name. 'https://download.microsoft.com/download/B/2/4/B24FB08A-DEA8-4B4C-8EE4-B9F0FB180200/Windows8.1-KB3035131-x64.msu' |
|
2020-01-31 14:39:15,490 2656 [DEBUG] - File name determined from url is 'Windows8.1-KB3035131-x64.msu' |
|
2020-01-31 14:39:15,568 2656 [DEBUG] - Running Get-WebHeaders -url 'https://download.microsoft.com/download/B/2/4/B24FB08A-DEA8-4B4C-8EE4-B9F0FB180200/Windows8.1-KB3035131-x64.msu' -ErrorAction 'Stop' |
|
2020-01-31 14:39:15,568 2656 [DEBUG] - Setting the UserAgent to 'chocolatey command line' |
|
2020-01-31 14:39:15,583 2656 [DEBUG] - Request Headers: |
|
2020-01-31 14:39:15,599 2656 [DEBUG] - 'Accept':'*/*' |
|
2020-01-31 14:39:15,599 2656 [DEBUG] - 'User-Agent':'chocolatey command line' |
|
2020-01-31 14:39:15,630 2656 [DEBUG] - Response Headers: |
|
2020-01-31 14:39:15,630 2656 [DEBUG] - 'Content-MD5':'d0yVsG2PLlcdthTpOfG3zQ==' |
|
2020-01-31 14:39:15,646 2656 [DEBUG] - 'Connection':'keep-alive' |
|
2020-01-31 14:39:15,646 2656 [DEBUG] - 'Accept-Ranges':'bytes' |
|
2020-01-31 14:39:15,646 2656 [DEBUG] - 'Content-Length':'4740655' |
|
2020-01-31 14:39:15,646 2656 [DEBUG] - 'Content-Type':'application/octet-stream' |
|
2020-01-31 14:39:15,661 2656 [DEBUG] - 'Date':'Fri, 31 Jan 2020 14:39:44 GMT' |
|
2020-01-31 14:39:15,661 2656 [DEBUG] - 'ETag':'"0x8D6334741EAF661"' |
|
2020-01-31 14:39:15,678 2656 [DEBUG] - 'Last-Modified':'Tue, 16 Oct 2018 09:10:46 GMT' |
|
2020-01-31 14:39:15,678 2656 [DEBUG] - 'Server':'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0' |
|
2020-01-31 14:39:15,708 2656 [INFO ] - Downloading KB3035131 64 bit |
|
from 'https://download.microsoft.com/download/B/2/4/B24FB08A-DEA8-4B4C-8EE4-B9F0FB180200/Windows8.1-KB3035131-x64.msu' |
|
2020-01-31 14:39:15,724 2656 [INFO ] - |
|
2020-01-31 14:39:15,771 2656 [DEBUG] - Running Get-WebFile -url 'https://download.microsoft.com/download/B/2/4/B24FB08A-DEA8-4B4C-8EE4-B9F0FB180200/Windows8.1-KB3035131-x64.msu' -fileName 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB3035131\1.0.3\Windows8.1-KB3035131-x64.msu' -options 'System.Collections.Hashtable' |
|
2020-01-31 14:39:15,771 2656 [DEBUG] - Setting request timeout to 30000 |
|
2020-01-31 14:39:15,771 2656 [DEBUG] - Setting read/write timeout to 2700000 |
|
2020-01-31 14:39:15,786 2656 [DEBUG] - Setting the UserAgent to 'chocolatey command line' |
|
2020-01-31 14:39:16,177 2656 [DEBUG] - Downloading https://download.microsoft.com/download/B/2/4/B24FB08A-DEA8-4B4C-8EE4-B9F0FB180200/Windows8.1-KB3035131-x64.msu to C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB3035131\1.0.3\Windows8.1-KB3035131-x64.msu |
|
2020-01-31 14:39:16,786 2656 [INFO ] - |
|
2020-01-31 14:39:16,786 2656 [INFO ] - Download of Windows8.1-KB3035131-x64.msu (4.52 MB) completed. |
|
2020-01-31 14:39:16,802 2656 [INFO ] - |
|
2020-01-31 14:39:19,849 2656 [DEBUG] - No runtime virus checking built into FOSS Chocolatey. Check out Pro/Business - https://chocolatey.org/compare |
|
2020-01-31 14:39:19,865 2656 [DEBUG] - Verifying package provided checksum of 'A9D6F7B519AD3A22ABDE3AF7CE3EBB90FF84A028EDE2154AC5D0548C88CCFEDD' for 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB3035131\1.0.3\Windows8.1-KB3035131-x64.msu'. |
|
2020-01-31 14:39:19,880 2656 [DEBUG] - Running Get-ChecksumValid -file 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB3035131\1.0.3\Windows8.1-KB3035131-x64.msu' -checksum 'A9D6F7B519AD3A22ABDE3AF7CE3EBB90FF84A028EDE2154AC5D0548C88CCFEDD' -checksumType 'sha256' -originalUrl 'https://download.microsoft.com/download/B/2/4/B24FB08A-DEA8-4B4C-8EE4-B9F0FB180200/Windows8.1-KB3035131-x64.msu' |
|
2020-01-31 14:39:19,913 2656 [DEBUG] - checksum.exe found at 'C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' |
|
2020-01-31 14:39:19,913 2656 [DEBUG] - Executing command ['C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' -c="A9D6F7B519AD3A22ABDE3AF7CE3EBB90FF84A028EDE2154AC5D0548C88CCFEDD" -t="sha256" -f="C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB3035131\1.0.3\Windows8.1-KB3035131-x64.msu"] |
|
2020-01-31 14:39:20,271 2656 [DEBUG] - Command ['C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' -c="A9D6F7B519AD3A22ABDE3AF7CE3EBB90FF84A028EDE2154AC5D0548C88CCFEDD" -t="sha256" -f="C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB3035131\1.0.3\Windows8.1-KB3035131-x64.msu"] exited with '0'. |
|
2020-01-31 14:39:20,349 2656 [DEBUG] - Running Install-ChocolateyInstallPackage -packageName 'KB3035131' -fileType 'msu' -silentArgs '/quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB3035131.Install.evt"' -file 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB3035131\1.0.3\Windows8.1-KB3035131-x64.msu' -validExitCodes '0' -useOnlyPackageSilentArguments 'False' |
|
2020-01-31 14:39:20,349 2656 [DEBUG] - Running Get-ProcessorBits -compare '32' |
|
2020-01-31 14:39:20,365 2656 [INFO ] - Installing KB3035131... |
|
2020-01-31 14:39:20,365 2656 [INFO ] - |
|
2020-01-31 14:39:20,490 2656 [DEBUG] - Ensuring 'C:\Users\Administrator\AppData\Local\Temp\chocolatey' exists |
|
2020-01-31 14:39:20,568 2656 [DEBUG] - Running Start-ChocolateyProcessAsAdmin -validExitCodes '0' -workingDirectory 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB3035131\1.0.3' -statements '"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB3035131\1.0.3\Windows8.1-KB3035131-x64.msu" /quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB3035131.Install.evt" ' -exeToRun 'C:\Windows\System32\wusa.exe' |
|
2020-01-31 14:39:20,584 2656 [DEBUG] - Unable to use current location for Working Directory. Using Cache Location instead. |
|
2020-01-31 14:39:20,662 2656 [DEBUG] - Test-ProcessAdminRights: returning True |
|
2020-01-31 14:39:20,693 2656 [DEBUG] - Elevating permissions and running ["C:\Windows\System32\wusa.exe" "C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB3035131\1.0.3\Windows8.1-KB3035131-x64.msu" /quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB3035131.Install.evt" ]. This may take a while, depending on the statements. |
|
2020-01-31 14:39:27,444 2656 [DEBUG] - Command ["C:\Windows\System32\wusa.exe" "C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB3035131\1.0.3\Windows8.1-KB3035131-x64.msu" /quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB3035131.Install.evt" ] exited with '-2145124329'. |
|
2020-01-31 14:39:27,693 2656 [DEBUG] - Caught System.Management.Automation.RuntimeException with message = [Running ["C:\Windows\System32\wusa.exe" "C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB3035131\1.0.3\Windows8.1-KB3035131-x64.msu" /quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB3035131.Install.evt" ] was not successful. Exit code was '-2145124329'. See log for possible error messages.] |
|
2020-01-31 14:39:27,803 2656 [DEBUG] - Exception message was recognized as command execution failure with exit code. |
|
2020-01-31 14:39:28,584 2656 [INFO ] - Update KB3035131 does not apply to this system. Either it was superseded by another already installed update, or a prerequisite update is missing. |
|
2020-01-31 14:39:28,584 2656 [INFO ] - |
|
2020-01-31 14:39:28,661 2656 [DEBUG] - $exitCode was passed null |
|
2020-01-31 14:39:28,677 2656 [DEBUG] - chocolateyInstaller\Set-PowerShellExitCode ignored 0, setting the host exit code and environment variable manually |
|
2020-01-31 14:39:28,708 2656 [DEBUG] - ---------------------------------------------------------------------- |
|
2020-01-31 14:39:28,741 2656 [DEBUG] - 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\KB3035131\Tools\ChocolateyInstall.ps1' -installArguments '' -packageParameters '''] exited with '0'. |
|
2020-01-31 14:39:28,755 2656 [DEBUG] - Calling command ['"C:\Windows\System32\shutdown.exe" /a'] |
|
2020-01-31 14:39:28,802 2656 [DEBUG] - Command ['"C:\Windows\System32\shutdown.exe" /a'] exited with '1116' |
|
2020-01-31 14:39:28,802 2656 [DEBUG] - Capturing package files in 'C:\ProgramData\chocolatey\lib\KB3035131' |
|
2020-01-31 14:39:28,818 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\KB3035131\KB3035131.nupkg' |
|
with checksum '50D96E41802B1B3F6B557E9A197EF3F6' |
|
2020-01-31 14:39:28,818 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\KB3035131\KB3035131.nuspec' |
|
with checksum '05DBB685F7B6257BB8B90C178C6E63A1' |
|
2020-01-31 14:39:28,818 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\KB3035131\Tools\ChocolateyInstall.ps1' |
|
with checksum 'C96AB84A5AEBA2761E40A151EE4B0230' |
|
2020-01-31 14:39:28,833 2656 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\.chocolatey\KB3035131.1.0.3". |
|
2020-01-31 14:39:28,833 2656 [DEBUG] - There was no original file at 'C:\ProgramData\chocolatey\.chocolatey\KB3035131.1.0.3\.files' |
|
2020-01-31 14:39:28,849 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB3035131.1.0.3\.extra". |
|
2020-01-31 14:39:28,849 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB3035131.1.0.3\.version". |
|
2020-01-31 14:39:28,849 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB3035131.1.0.3\.sxs". |
|
2020-01-31 14:39:28,865 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB3035131.1.0.3\.pin". |
|
2020-01-31 14:39:28,865 2656 [DEBUG] - Sending message 'HandlePackageResultCompletedMessage' out if there are subscribers... |
|
2020-01-31 14:39:28,865 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\KB3035131\.chocolateyPending". |
|
2020-01-31 14:39:28,880 2656 [INFO ] - The install of kb3035131 was successful. |
|
2020-01-31 14:39:28,880 2656 [INFO ] - Software installed as 'msu', install location is likely default. |
|
2020-01-31 14:39:28,880 2656 [INFO ] - [NuGet] Installing 'KB3033929 1.0.5'. |
|
2020-01-31 14:39:28,896 2656 [DEBUG] - [NuGet] Added file 'ChocolateyInstall.ps1' to folder 'KB3033929\Tools'. |
|
2020-01-31 14:39:28,896 2656 [DEBUG] - [NuGet] Added file 'KB3033929.nupkg' to folder 'KB3033929'. |
|
2020-01-31 14:39:29,115 2656 [DEBUG] - [NuGet] Added file 'KB3033929.nuspec' to folder 'KB3033929'. |
|
2020-01-31 14:39:29,115 2656 [INFO ] - [NuGet] Successfully installed 'KB3033929 1.0.5'. |
|
2020-01-31 14:39:29,115 2656 [INFO ] - |
|
KB3033929 v1.0.5 (forced) [Approved] |
|
2020-01-31 14:39:29,130 2656 [INFO ] - kb3033929 package files install completed. Performing other installation steps. |
|
2020-01-31 14:39:29,130 2656 [DEBUG] - Contents of 'C:\ProgramData\chocolatey\lib\KB3033929\Tools\ChocolateyInstall.ps1': |
|
2020-01-31 14:39:29,146 2656 [DEBUG] - $msuData = @{ |
|
'6.1-client' = @{ |
|
Url = 'https://download.microsoft.com/download/3/7/4/37473F39-5728-4153-9A25-64C09DE9ED52/Windows6.1-KB3033929-x86.msu' |
|
Checksum = '246C300A6AE6DCA99453F6839745AC0015953528A7065BED1B015F91B80CF64D' |
|
Url64 = 'https://download.microsoft.com/download/C/8/7/C87AE67E-A228-48FB-8F02-B2A9A1238099/Windows6.1-KB3033929-x64.msu' |
|
Checksum64 = '5318587007EDB6C8B29310FF18DA479A162B486B9101A7DE735F94A70DBC3B31' |
|
} |
|
'6.1-server' = @{ |
|
Url64 = 'https://download.microsoft.com/download/A/4/E/A4E91F1E-83D8-4926-9CC5-3B3B4F371B80/Windows6.1-KB3033929-x64.msu' |
|
Checksum64 = '5318587007EDB6C8B29310FF18DA479A162B486B9101A7DE735F94A70DBC3B31' |
|
} |
|
} |
|
|
|
$servicePackRequirements = @{ |
|
'6.1' = @{ ServicePackNumber = 1; ChocolateyPackage = 'KB976932' } |
|
} |
|
|
|
chocolateyInstaller\Install-WindowsUpdate -Id 'KB3033929' -MsuData $msuData -ChecksumType 'sha256' -ServicePackRequirements $servicePackRequirements |
|
|
|
2020-01-31 14:39:29,146 2656 [DEBUG] - 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\KB3033929\Tools\ChocolateyInstall.ps1' -installArguments '' -packageParameters '''] |
|
2020-01-31 14:39:29,162 2656 [DEBUG] - Redirecting Microsoft.PowerShell.Security, requested by '' |
|
2020-01-31 14:39:29,177 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=5.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 14:39:29,177 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=4.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 14:39:29,177 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=3.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 14:39:29,193 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=1.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 14:39:29,412 2656 [DEBUG] - Host version is 4.0, PowerShell Version is '4.0' and CLR Version is '4.0.30319.33440'. |
|
2020-01-31 14:39:29,505 2656 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. |
|
2020-01-31 14:39:29,505 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. |
|
2020-01-31 14:39:29,505 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. |
|
2020-01-31 14:39:29,505 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. |
|
2020-01-31 14:39:29,521 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'. |
|
2020-01-31 14:39:29,521 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 14:39:29,521 2656 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. |
|
2020-01-31 14:39:29,521 2656 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. |
|
2020-01-31 14:39:29,521 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 14:39:29,536 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 14:39:29,536 2656 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. |
|
2020-01-31 14:39:29,536 2656 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. |
|
2020-01-31 14:39:29,536 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:39:29,552 2656 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. |
|
2020-01-31 14:39:29,552 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. |
|
2020-01-31 14:39:29,552 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. |
|
2020-01-31 14:39:29,552 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. |
|
2020-01-31 14:39:29,568 2656 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. |
|
2020-01-31 14:39:29,568 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 14:39:29,568 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:39:29,568 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 14:39:29,583 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 14:39:29,583 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 14:39:29,583 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. |
|
2020-01-31 14:39:29,583 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'. |
|
2020-01-31 14:39:29,599 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 14:39:29,599 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 14:39:29,599 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. |
|
2020-01-31 14:39:29,599 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 14:39:29,599 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 14:39:29,615 2656 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. |
|
2020-01-31 14:39:29,615 2656 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'. |
|
2020-01-31 14:39:29,630 2656 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. |
|
2020-01-31 14:39:29,630 2656 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 14:39:29,630 2656 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'. |
|
2020-01-31 14:39:29,646 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. |
|
2020-01-31 14:39:29,646 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:39:29,661 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 14:39:29,661 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 14:39:29,661 2656 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'. |
|
2020-01-31 14:39:29,677 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. |
|
2020-01-31 14:39:29,677 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. |
|
2020-01-31 14:39:29,677 2656 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. |
|
2020-01-31 14:39:29,677 2656 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 14:39:29,693 2656 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. |
|
2020-01-31 14:39:29,693 2656 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. |
|
2020-01-31 14:39:29,693 2656 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. |
|
2020-01-31 14:39:29,708 2656 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. |
|
2020-01-31 14:39:29,708 2656 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. |
|
2020-01-31 14:39:29,708 2656 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. |
|
2020-01-31 14:39:29,724 2656 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 14:39:29,724 2656 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. |
|
2020-01-31 14:39:29,724 2656 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. |
|
2020-01-31 14:39:29,740 2656 [DEBUG] - Loading community extensions |
|
2020-01-31 14:39:29,740 2656 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1' |
|
2020-01-31 14:39:29,755 2656 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1'. |
|
2020-01-31 14:39:29,958 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:39:29,974 2656 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. |
|
2020-01-31 14:39:29,974 2656 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:39:29,974 2656 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. |
|
2020-01-31 14:39:29,990 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:39:29,990 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 14:39:30,005 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. |
|
2020-01-31 14:39:30,005 2656 [INFO ] - VERBOSE: Exporting function 'Register-Application'. |
|
2020-01-31 14:39:30,021 2656 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. |
|
2020-01-31 14:39:30,021 2656 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. |
|
2020-01-31 14:39:30,036 2656 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:39:30,036 2656 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. |
|
2020-01-31 14:39:30,036 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:39:30,052 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'. |
|
2020-01-31 14:39:30,052 2656 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:39:30,052 2656 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. |
|
2020-01-31 14:39:30,052 2656 [INFO ] - VERBOSE: Importing function 'Register-Application'. |
|
2020-01-31 14:39:30,068 2656 [INFO ] - VERBOSE: Importing function 'Remove-Process'. |
|
2020-01-31 14:39:30,068 2656 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1' |
|
2020-01-31 14:39:30,083 2656 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1'. |
|
2020-01-31 14:39:30,099 2656 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. |
|
2020-01-31 14:39:30,099 2656 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. |
|
2020-01-31 14:39:30,115 2656 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. |
|
2020-01-31 14:39:30,115 2656 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. |
|
2020-01-31 14:39:30,115 2656 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. |
|
2020-01-31 14:39:30,130 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. |
|
2020-01-31 14:39:30,130 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. |
|
2020-01-31 14:39:30,130 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. |
|
2020-01-31 14:39:30,146 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'. |
|
2020-01-31 14:39:30,146 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 14:39:30,146 2656 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. |
|
2020-01-31 14:39:30,161 2656 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. |
|
2020-01-31 14:39:30,161 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 14:39:30,161 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 14:39:30,161 2656 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. |
|
2020-01-31 14:39:30,177 2656 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. |
|
2020-01-31 14:39:30,177 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:39:30,177 2656 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. |
|
2020-01-31 14:39:30,177 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. |
|
2020-01-31 14:39:30,193 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. |
|
2020-01-31 14:39:30,193 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. |
|
2020-01-31 14:39:30,193 2656 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. |
|
2020-01-31 14:39:30,208 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 14:39:30,208 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:39:30,208 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 14:39:30,208 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 14:39:30,224 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 14:39:30,224 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. |
|
2020-01-31 14:39:30,224 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'. |
|
2020-01-31 14:39:30,224 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 14:39:30,240 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 14:39:30,240 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. |
|
2020-01-31 14:39:30,240 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 14:39:30,255 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 14:39:30,255 2656 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. |
|
2020-01-31 14:39:30,255 2656 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'. |
|
2020-01-31 14:39:30,255 2656 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. |
|
2020-01-31 14:39:30,271 2656 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 14:39:30,271 2656 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'. |
|
2020-01-31 14:39:30,271 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. |
|
2020-01-31 14:39:30,271 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:39:30,286 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 14:39:30,286 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 14:39:30,286 2656 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'. |
|
2020-01-31 14:39:30,302 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. |
|
2020-01-31 14:39:30,302 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. |
|
2020-01-31 14:39:30,302 2656 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. |
|
2020-01-31 14:39:30,302 2656 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 14:39:30,318 2656 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. |
|
2020-01-31 14:39:30,318 2656 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:39:30,318 2656 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. |
|
2020-01-31 14:39:30,333 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:39:30,333 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. |
|
2020-01-31 14:39:30,333 2656 [INFO ] - VERBOSE: Exporting function 'Register-Application'. |
|
2020-01-31 14:39:30,349 2656 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. |
|
2020-01-31 14:39:30,349 2656 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. |
|
2020-01-31 14:39:30,349 2656 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. |
|
2020-01-31 14:39:30,365 2656 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. |
|
2020-01-31 14:39:30,365 2656 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. |
|
2020-01-31 14:39:30,365 2656 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. |
|
2020-01-31 14:39:30,380 2656 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. |
|
2020-01-31 14:39:30,380 2656 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. |
|
2020-01-31 14:39:30,380 2656 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. |
|
2020-01-31 14:39:30,380 2656 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 14:39:30,396 2656 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. |
|
2020-01-31 14:39:30,396 2656 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. |
|
2020-01-31 14:39:30,396 2656 [INFO ] - VERBOSE: Importing function 'Format-FileSize'. |
|
2020-01-31 14:39:30,411 2656 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. |
|
2020-01-31 14:39:30,411 2656 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:39:30,427 2656 [INFO ] - VERBOSE: Importing function 'Get-ChecksumValid'. |
|
2020-01-31 14:39:30,427 2656 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyUnzip'. |
|
2020-01-31 14:39:30,443 2656 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyWebFile'. |
|
2020-01-31 14:39:30,443 2656 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. |
|
2020-01-31 14:39:30,458 2656 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariable'. |
|
2020-01-31 14:39:30,458 2656 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 14:39:30,458 2656 [INFO ] - VERBOSE: Importing function 'Get-FtpFile'. |
|
2020-01-31 14:39:30,474 2656 [INFO ] - VERBOSE: Importing function 'Get-OSArchitectureWidth'. |
|
2020-01-31 14:39:30,474 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:39:30,474 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'. |
|
2020-01-31 14:39:30,490 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 14:39:30,490 2656 [INFO ] - VERBOSE: Importing function 'Get-ToolsLocation'. |
|
2020-01-31 14:39:30,490 2656 [INFO ] - VERBOSE: Importing function 'Get-UACEnabled'. |
|
2020-01-31 14:39:30,505 2656 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:39:30,505 2656 [INFO ] - VERBOSE: Importing function 'Get-VirusCheckValid'. |
|
2020-01-31 14:39:30,505 2656 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. |
|
2020-01-31 14:39:30,521 2656 [INFO ] - VERBOSE: Importing function 'Get-WebFile'. |
|
2020-01-31 14:39:30,521 2656 [INFO ] - VERBOSE: Importing function 'Get-WebFileName'. |
|
2020-01-31 14:39:30,521 2656 [INFO ] - VERBOSE: Importing function 'Get-WebHeaders'. |
|
2020-01-31 14:39:30,521 2656 [INFO ] - VERBOSE: Importing function 'Install-BinFile'. |
|
2020-01-31 14:39:30,537 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 14:39:30,537 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:39:30,537 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 14:39:30,552 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 14:39:30,552 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 14:39:30,552 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPackage'. |
|
2020-01-31 14:39:30,552 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPath'. |
|
2020-01-31 14:39:30,568 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 14:39:30,568 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 14:39:30,568 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyShortcut'. |
|
2020-01-31 14:39:30,583 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 14:39:30,583 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 14:39:30,583 2656 [INFO ] - VERBOSE: Importing function 'Install-Vsix'. |
|
2020-01-31 14:39:30,583 2656 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. |
|
2020-01-31 14:39:30,599 2656 [INFO ] - VERBOSE: Importing function 'Register-Application'. |
|
2020-01-31 14:39:30,599 2656 [INFO ] - VERBOSE: Importing function 'Remove-Process'. |
|
2020-01-31 14:39:30,599 2656 [INFO ] - VERBOSE: Importing function 'Set-EnvironmentVariable'. |
|
2020-01-31 14:39:30,615 2656 [INFO ] - VERBOSE: Importing function 'Set-PowerShellExitCode'. |
|
2020-01-31 14:39:30,615 2656 [INFO ] - VERBOSE: Importing function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 14:39:30,615 2656 [INFO ] - VERBOSE: Importing function 'Test-ProcessAdminRights'. |
|
2020-01-31 14:39:30,615 2656 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. |
|
2020-01-31 14:39:30,630 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-BinFile'. |
|
2020-01-31 14:39:30,630 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:39:30,630 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 14:39:30,646 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 14:39:30,646 2656 [INFO ] - VERBOSE: Importing function 'Update-SessionEnvironment'. |
|
2020-01-31 14:39:30,646 2656 [INFO ] - VERBOSE: Importing function 'Write-ChocolateyFailure'. |
|
2020-01-31 14:39:30,646 2656 [INFO ] - VERBOSE: Importing function 'Write-ChocolateySuccess'. |
|
2020-01-31 14:39:30,661 2656 [INFO ] - VERBOSE: Importing function 'Write-FileUpdateLog'. |
|
2020-01-31 14:39:30,661 2656 [INFO ] - VERBOSE: Importing function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 14:39:30,661 2656 [INFO ] - VERBOSE: Importing alias 'Add-BinFile'. |
|
2020-01-31 14:39:30,661 2656 [INFO ] - VERBOSE: Importing alias 'Generate-BinFile'. |
|
2020-01-31 14:39:30,677 2656 [INFO ] - VERBOSE: Importing alias 'Get-InstallRegistryKey'. |
|
2020-01-31 14:39:30,677 2656 [INFO ] - VERBOSE: Importing alias 'Get-OSBitness'. |
|
2020-01-31 14:39:30,677 2656 [INFO ] - VERBOSE: Importing alias 'Get-ProcessorBits'. |
|
2020-01-31 14:39:30,677 2656 [INFO ] - VERBOSE: Importing alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 14:39:30,693 2656 [INFO ] - VERBOSE: Importing alias 'refreshenv'. |
|
2020-01-31 14:39:30,693 2656 [INFO ] - VERBOSE: Importing alias 'Remove-BinFile'. |
|
2020-01-31 14:39:30,693 2656 [INFO ] - VERBOSE: Importing alias 'Start-ChocolateyProcess'. |
|
2020-01-31 14:39:30,708 2656 [DEBUG] - ---------------------------Script Execution--------------------------- |
|
2020-01-31 14:39:30,708 2656 [DEBUG] - Running 'ChocolateyScriptRunner' for KB3033929 v1.0.5 with packageScript 'C:\ProgramData\chocolatey\lib\KB3033929\Tools\ChocolateyInstall.ps1', packageFolder:'C:\ProgramData\chocolatey\lib\KB3033929', installArguments: '', packageParameters: '', |
|
2020-01-31 14:39:30,724 2656 [DEBUG] - Running 'C:\ProgramData\chocolatey\lib\KB3033929\Tools\ChocolateyInstall.ps1' |
|
2020-01-31 14:39:30,724 2656 [INFO ] - VERBOSE: Obtaining operating system information |
|
2020-01-31 14:39:30,802 2656 [INFO ] - VERBOSE: Operating system: Microsoft Windows Server 2012 R2 Datacenter, version 6.3.9600, product type 'server' |
|
2020-01-31 14:39:30,818 2656 [INFO ] - VERBOSE: Locating MSU rules for this operating system |
|
2020-01-31 14:39:30,818 2656 [INFO ] - VERBOSE: No MSU rules defined for this operating system |
|
2020-01-31 14:39:30,833 2656 [INFO ] - Skipping installation because update KB3033929 does not apply to this operating system (Microsoft Windows Server 2012 R2 Datacenter). |
|
2020-01-31 14:39:30,849 2656 [INFO ] - |
|
2020-01-31 14:39:30,849 2656 [DEBUG] - ---------------------------------------------------------------------- |
|
2020-01-31 14:39:30,865 2656 [DEBUG] - 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\KB3033929\Tools\ChocolateyInstall.ps1' -installArguments '' -packageParameters '''] exited with '0'. |
|
2020-01-31 14:39:30,865 2656 [DEBUG] - Calling command ['"C:\Windows\System32\shutdown.exe" /a'] |
|
2020-01-31 14:39:30,896 2656 [DEBUG] - Command ['"C:\Windows\System32\shutdown.exe" /a'] exited with '1116' |
|
2020-01-31 14:39:30,911 2656 [DEBUG] - Capturing package files in 'C:\ProgramData\chocolatey\lib\KB3033929' |
|
2020-01-31 14:39:30,911 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\KB3033929\KB3033929.nupkg' |
|
with checksum '47ECA7072750A7D12CDE972E91B504A0' |
|
2020-01-31 14:39:30,911 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\KB3033929\KB3033929.nuspec' |
|
with checksum '81864B601B88B6F86CBF42E1DDAC957F' |
|
2020-01-31 14:39:30,911 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\KB3033929\Tools\ChocolateyInstall.ps1' |
|
with checksum 'DCFEEBCAAE9D8E20C81B9AEE7094016B' |
|
2020-01-31 14:39:30,927 2656 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\.chocolatey\KB3033929.1.0.5". |
|
2020-01-31 14:39:30,927 2656 [DEBUG] - There was no original file at 'C:\ProgramData\chocolatey\.chocolatey\KB3033929.1.0.5\.files' |
|
2020-01-31 14:39:30,943 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB3033929.1.0.5\.extra". |
|
2020-01-31 14:39:30,943 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB3033929.1.0.5\.version". |
|
2020-01-31 14:39:30,943 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB3033929.1.0.5\.sxs". |
|
2020-01-31 14:39:30,943 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB3033929.1.0.5\.pin". |
|
2020-01-31 14:39:30,958 2656 [DEBUG] - Sending message 'HandlePackageResultCompletedMessage' out if there are subscribers... |
|
2020-01-31 14:39:30,958 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\KB3033929\.chocolateyPending". |
|
2020-01-31 14:39:30,958 2656 [INFO ] - The install of kb3033929 was successful. |
|
2020-01-31 14:39:30,974 2656 [INFO ] - Software install location not explicitly set, could be in package or |
|
default install location if installer. |
|
2020-01-31 14:39:30,974 2656 [INFO ] - [NuGet] Installing 'KB2919442 1.0.20160915'. |
|
2020-01-31 14:39:30,990 2656 [DEBUG] - [NuGet] Added file 'ChocolateyInstall.ps1' to folder 'KB2919442\tools'. |
|
2020-01-31 14:39:30,990 2656 [DEBUG] - [NuGet] Added file 'KB2919442.nupkg' to folder 'KB2919442'. |
|
2020-01-31 14:39:31,210 2656 [DEBUG] - [NuGet] Added file 'KB2919442.nuspec' to folder 'KB2919442'. |
|
2020-01-31 14:39:31,210 2656 [INFO ] - [NuGet] Successfully installed 'KB2919442 1.0.20160915'. |
|
2020-01-31 14:39:31,224 2656 [INFO ] - |
|
KB2919442 v1.0.20160915 (forced) [Approved] |
|
2020-01-31 14:39:31,224 2656 [INFO ] - kb2919442 package files install completed. Performing other installation steps. |
|
2020-01-31 14:39:31,240 2656 [DEBUG] - Contents of 'C:\ProgramData\chocolatey\lib\KB2919442\tools\ChocolateyInstall.ps1': |
|
2020-01-31 14:39:31,240 2656 [DEBUG] - $kb = "KB2919442" |
|
$packageName = "KB2919442" |
|
$silentArgs = "/quiet /norestart /log:`"$env:TEMP\$kb.Install.evt`"" |
|
|
|
$os = Get-WmiObject -Class Win32_OperatingSystem |
|
$version = [Version]$os.Version |
|
|
|
if ($version -eq $null -or $version -lt [Version]'6.3' -or $version -ge [Version]'6.4') { |
|
Write-Host "Skipping installation because this hotfix only applies to Windows 8.1 and Windows Server 2012 R2." |
|
return |
|
} |
|
|
|
if (Get-HotFix -id $kb -ea SilentlyContinue) |
|
{ |
|
Write-Host "Skipping installation because hotfix $kb is already installed." |
|
return |
|
} |
|
|
|
if ($os.ProductType -eq '1') { |
|
# Windows 8.1 |
|
$url = "https://download.microsoft.com/download/9/D/A/9DA6C939-9E65-4681-BBBE-A8F73A5C116F/Windows8.1-KB2919442-x86.msu" |
|
$url64 = "https://download.microsoft.com/download/C/F/8/CF821C31-38C7-4C5C-89BB-B283059269AF/Windows8.1-KB2919442-x64.msu" |
|
$checksum = '3368C3A329F402FD982B15B399368627B96973F008A5456B5286BDFC10C1169B' |
|
$checksum64 = 'C10787E669B484674584A990E069295E8B81B5366F98508010A3AE181B729482' |
|
} else { |
|
# Windows Server 2012 R2 |
|
$url64 = "https://download.microsoft.com/download/D/6/0/D60ED3E0-93A5-4505-8F6A-8D0A5DA16C8A/Windows8.1-KB2919442-x64.msu" |
|
$checksum64 = 'C10787E669B484674584A990E069295E8B81B5366F98508010A3AE181B729482' |
|
} |
|
|
|
Install-ChocolateyPackage $packageName 'msu' $silentArgs $url $url64 -checksum $checksum -checksum64 $checksum64 -checksumType 'sha256' -validExitCodes @(0, 3010, 0x80240017) |
|
|
|
2020-01-31 14:39:31,255 2656 [DEBUG] - 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\KB2919442\tools\ChocolateyInstall.ps1' -installArguments '' -packageParameters '''] |
|
2020-01-31 14:39:31,255 2656 [DEBUG] - Redirecting Microsoft.PowerShell.Security, requested by '' |
|
2020-01-31 14:39:31,255 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=5.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 14:39:31,271 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=4.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 14:39:31,271 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=3.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 14:39:31,271 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=1.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 14:39:31,411 2656 [DEBUG] - Host version is 4.0, PowerShell Version is '4.0' and CLR Version is '4.0.30319.33440'. |
|
2020-01-31 14:39:31,490 2656 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. |
|
2020-01-31 14:39:31,505 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. |
|
2020-01-31 14:39:31,505 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. |
|
2020-01-31 14:39:31,521 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. |
|
2020-01-31 14:39:31,521 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'. |
|
2020-01-31 14:39:31,521 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 14:39:31,536 2656 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. |
|
2020-01-31 14:39:31,536 2656 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. |
|
2020-01-31 14:39:31,536 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 14:39:31,552 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 14:39:31,552 2656 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. |
|
2020-01-31 14:39:31,552 2656 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. |
|
2020-01-31 14:39:31,568 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:39:31,568 2656 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. |
|
2020-01-31 14:39:31,568 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. |
|
2020-01-31 14:39:31,583 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. |
|
2020-01-31 14:39:31,583 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. |
|
2020-01-31 14:39:31,583 2656 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. |
|
2020-01-31 14:39:31,583 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 14:39:31,599 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:39:31,599 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 14:39:31,599 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 14:39:31,615 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 14:39:31,615 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. |
|
2020-01-31 14:39:31,615 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'. |
|
2020-01-31 14:39:31,630 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 14:39:31,630 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 14:39:31,630 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. |
|
2020-01-31 14:39:31,646 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 14:39:31,646 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 14:39:31,646 2656 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. |
|
2020-01-31 14:39:31,662 2656 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'. |
|
2020-01-31 14:39:31,662 2656 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. |
|
2020-01-31 14:39:31,662 2656 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 14:39:31,677 2656 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'. |
|
2020-01-31 14:39:31,677 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. |
|
2020-01-31 14:39:31,677 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:39:31,677 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 14:39:31,693 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 14:39:31,693 2656 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'. |
|
2020-01-31 14:39:31,693 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. |
|
2020-01-31 14:39:31,708 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. |
|
2020-01-31 14:39:31,708 2656 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. |
|
2020-01-31 14:39:31,724 2656 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 14:39:31,724 2656 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. |
|
2020-01-31 14:39:31,724 2656 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. |
|
2020-01-31 14:39:31,740 2656 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. |
|
2020-01-31 14:39:31,740 2656 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. |
|
2020-01-31 14:39:31,740 2656 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. |
|
2020-01-31 14:39:31,740 2656 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. |
|
2020-01-31 14:39:31,755 2656 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 14:39:31,755 2656 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. |
|
2020-01-31 14:39:31,755 2656 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. |
|
2020-01-31 14:39:31,772 2656 [DEBUG] - Loading community extensions |
|
2020-01-31 14:39:31,772 2656 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1' |
|
2020-01-31 14:39:31,772 2656 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1'. |
|
2020-01-31 14:39:31,990 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:39:31,990 2656 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. |
|
2020-01-31 14:39:32,005 2656 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:39:32,005 2656 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. |
|
2020-01-31 14:39:32,005 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:39:32,021 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 14:39:32,021 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. |
|
2020-01-31 14:39:32,021 2656 [INFO ] - VERBOSE: Exporting function 'Register-Application'. |
|
2020-01-31 14:39:32,036 2656 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. |
|
2020-01-31 14:39:32,036 2656 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. |
|
2020-01-31 14:39:32,036 2656 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:39:32,052 2656 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. |
|
2020-01-31 14:39:32,052 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:39:32,052 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'. |
|
2020-01-31 14:39:32,068 2656 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:39:32,068 2656 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. |
|
2020-01-31 14:39:32,068 2656 [INFO ] - VERBOSE: Importing function 'Register-Application'. |
|
2020-01-31 14:39:32,068 2656 [INFO ] - VERBOSE: Importing function 'Remove-Process'. |
|
2020-01-31 14:39:32,083 2656 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1' |
|
2020-01-31 14:39:32,083 2656 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1'. |
|
2020-01-31 14:39:32,115 2656 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. |
|
2020-01-31 14:39:32,115 2656 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. |
|
2020-01-31 14:39:32,115 2656 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. |
|
2020-01-31 14:39:32,130 2656 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. |
|
2020-01-31 14:39:32,130 2656 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. |
|
2020-01-31 14:39:32,130 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. |
|
2020-01-31 14:39:32,146 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. |
|
2020-01-31 14:39:32,146 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. |
|
2020-01-31 14:39:32,146 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'. |
|
2020-01-31 14:39:32,161 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 14:39:32,161 2656 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. |
|
2020-01-31 14:39:32,161 2656 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. |
|
2020-01-31 14:39:32,177 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 14:39:32,177 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 14:39:32,177 2656 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. |
|
2020-01-31 14:39:32,193 2656 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. |
|
2020-01-31 14:39:32,193 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:39:32,193 2656 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. |
|
2020-01-31 14:39:32,208 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. |
|
2020-01-31 14:39:32,208 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. |
|
2020-01-31 14:39:32,208 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. |
|
2020-01-31 14:39:32,208 2656 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. |
|
2020-01-31 14:39:32,224 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 14:39:32,224 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:39:32,224 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 14:39:32,240 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 14:39:32,240 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 14:39:32,240 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. |
|
2020-01-31 14:39:32,255 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'. |
|
2020-01-31 14:39:32,255 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 14:39:32,255 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 14:39:32,271 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. |
|
2020-01-31 14:39:32,271 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 14:39:32,271 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 14:39:32,286 2656 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. |
|
2020-01-31 14:39:32,286 2656 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'. |
|
2020-01-31 14:39:32,286 2656 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. |
|
2020-01-31 14:39:32,302 2656 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 14:39:32,302 2656 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'. |
|
2020-01-31 14:39:32,302 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. |
|
2020-01-31 14:39:32,302 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:39:32,318 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 14:39:32,318 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 14:39:32,318 2656 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'. |
|
2020-01-31 14:39:32,333 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. |
|
2020-01-31 14:39:32,333 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. |
|
2020-01-31 14:39:32,333 2656 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. |
|
2020-01-31 14:39:32,349 2656 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 14:39:32,349 2656 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. |
|
2020-01-31 14:39:32,349 2656 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:39:32,365 2656 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. |
|
2020-01-31 14:39:32,365 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:39:32,365 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. |
|
2020-01-31 14:39:32,380 2656 [INFO ] - VERBOSE: Exporting function 'Register-Application'. |
|
2020-01-31 14:39:32,380 2656 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. |
|
2020-01-31 14:39:32,380 2656 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. |
|
2020-01-31 14:39:32,380 2656 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. |
|
2020-01-31 14:39:32,396 2656 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. |
|
2020-01-31 14:39:32,396 2656 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. |
|
2020-01-31 14:39:32,396 2656 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. |
|
2020-01-31 14:39:32,411 2656 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. |
|
2020-01-31 14:39:32,411 2656 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. |
|
2020-01-31 14:39:32,411 2656 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. |
|
2020-01-31 14:39:32,427 2656 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 14:39:32,427 2656 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. |
|
2020-01-31 14:39:32,427 2656 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. |
|
2020-01-31 14:39:32,427 2656 [INFO ] - VERBOSE: Importing function 'Format-FileSize'. |
|
2020-01-31 14:39:32,443 2656 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. |
|
2020-01-31 14:39:32,443 2656 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:39:32,443 2656 [INFO ] - VERBOSE: Importing function 'Get-ChecksumValid'. |
|
2020-01-31 14:39:32,458 2656 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyUnzip'. |
|
2020-01-31 14:39:32,458 2656 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyWebFile'. |
|
2020-01-31 14:39:32,458 2656 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. |
|
2020-01-31 14:39:32,474 2656 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariable'. |
|
2020-01-31 14:39:32,474 2656 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 14:39:32,474 2656 [INFO ] - VERBOSE: Importing function 'Get-FtpFile'. |
|
2020-01-31 14:39:32,474 2656 [INFO ] - VERBOSE: Importing function 'Get-OSArchitectureWidth'. |
|
2020-01-31 14:39:32,490 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:39:32,490 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'. |
|
2020-01-31 14:39:32,490 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 14:39:32,505 2656 [INFO ] - VERBOSE: Importing function 'Get-ToolsLocation'. |
|
2020-01-31 14:39:32,505 2656 [INFO ] - VERBOSE: Importing function 'Get-UACEnabled'. |
|
2020-01-31 14:39:32,505 2656 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:39:32,521 2656 [INFO ] - VERBOSE: Importing function 'Get-VirusCheckValid'. |
|
2020-01-31 14:39:32,521 2656 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. |
|
2020-01-31 14:39:32,521 2656 [INFO ] - VERBOSE: Importing function 'Get-WebFile'. |
|
2020-01-31 14:39:32,521 2656 [INFO ] - VERBOSE: Importing function 'Get-WebFileName'. |
|
2020-01-31 14:39:32,536 2656 [INFO ] - VERBOSE: Importing function 'Get-WebHeaders'. |
|
2020-01-31 14:39:32,536 2656 [INFO ] - VERBOSE: Importing function 'Install-BinFile'. |
|
2020-01-31 14:39:32,536 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 14:39:32,552 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:39:32,552 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 14:39:32,552 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 14:39:32,552 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 14:39:32,568 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPackage'. |
|
2020-01-31 14:39:32,568 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPath'. |
|
2020-01-31 14:39:32,568 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 14:39:32,583 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 14:39:32,583 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyShortcut'. |
|
2020-01-31 14:39:32,583 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 14:39:32,583 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 14:39:32,599 2656 [INFO ] - VERBOSE: Importing function 'Install-Vsix'. |
|
2020-01-31 14:39:32,599 2656 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. |
|
2020-01-31 14:39:32,599 2656 [INFO ] - VERBOSE: Importing function 'Register-Application'. |
|
2020-01-31 14:39:32,599 2656 [INFO ] - VERBOSE: Importing function 'Remove-Process'. |
|
2020-01-31 14:39:32,615 2656 [INFO ] - VERBOSE: Importing function 'Set-EnvironmentVariable'. |
|
2020-01-31 14:39:32,615 2656 [INFO ] - VERBOSE: Importing function 'Set-PowerShellExitCode'. |
|
2020-01-31 14:39:32,615 2656 [INFO ] - VERBOSE: Importing function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 14:39:32,630 2656 [INFO ] - VERBOSE: Importing function 'Test-ProcessAdminRights'. |
|
2020-01-31 14:39:32,630 2656 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. |
|
2020-01-31 14:39:32,630 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-BinFile'. |
|
2020-01-31 14:39:32,630 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:39:32,646 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 14:39:32,646 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 14:39:32,646 2656 [INFO ] - VERBOSE: Importing function 'Update-SessionEnvironment'. |
|
2020-01-31 14:39:32,646 2656 [INFO ] - VERBOSE: Importing function 'Write-ChocolateyFailure'. |
|
2020-01-31 14:39:32,661 2656 [INFO ] - VERBOSE: Importing function 'Write-ChocolateySuccess'. |
|
2020-01-31 14:39:32,661 2656 [INFO ] - VERBOSE: Importing function 'Write-FileUpdateLog'. |
|
2020-01-31 14:39:32,661 2656 [INFO ] - VERBOSE: Importing function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 14:39:32,661 2656 [INFO ] - VERBOSE: Importing alias 'Add-BinFile'. |
|
2020-01-31 14:39:32,677 2656 [INFO ] - VERBOSE: Importing alias 'Generate-BinFile'. |
|
2020-01-31 14:39:32,677 2656 [INFO ] - VERBOSE: Importing alias 'Get-InstallRegistryKey'. |
|
2020-01-31 14:39:32,677 2656 [INFO ] - VERBOSE: Importing alias 'Get-OSBitness'. |
|
2020-01-31 14:39:32,693 2656 [INFO ] - VERBOSE: Importing alias 'Get-ProcessorBits'. |
|
2020-01-31 14:39:32,693 2656 [INFO ] - VERBOSE: Importing alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 14:39:32,693 2656 [INFO ] - VERBOSE: Importing alias 'refreshenv'. |
|
2020-01-31 14:39:32,693 2656 [INFO ] - VERBOSE: Importing alias 'Remove-BinFile'. |
|
2020-01-31 14:39:32,708 2656 [INFO ] - VERBOSE: Importing alias 'Start-ChocolateyProcess'. |
|
2020-01-31 14:39:32,708 2656 [DEBUG] - ---------------------------Script Execution--------------------------- |
|
2020-01-31 14:39:32,708 2656 [DEBUG] - Running 'ChocolateyScriptRunner' for KB2919442 v1.0.20160915 with packageScript 'C:\ProgramData\chocolatey\lib\KB2919442\tools\ChocolateyInstall.ps1', packageFolder:'C:\ProgramData\chocolatey\lib\KB2919442', installArguments: '', packageParameters: '', |
|
2020-01-31 14:39:32,724 2656 [DEBUG] - Running 'C:\ProgramData\chocolatey\lib\KB2919442\tools\ChocolateyInstall.ps1' |
|
2020-01-31 14:39:33,052 2656 [DEBUG] - Running Install-ChocolateyPackage -checksum '' -checksum64 'C10787E669B484674584A990E069295E8B81B5366F98508010A3AE181B729482' -checksumType 'sha256' -validExitCodes '0 3010 -2145124329' -packageName 'KB2919442' -fileType 'msu' -silentArgs '/quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919442.Install.evt"' -url '' -url64bit 'https://download.microsoft.com/download/D/6/0/D60ED3E0-93A5-4505-8F6A-8D0A5DA16C8A/Windows8.1-KB2919442-x64.msu' |
|
2020-01-31 14:39:33,099 2656 [DEBUG] - Running Get-ChocolateyWebFile -packageName 'KB2919442' -fileFullPath 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919442\1.0.20160915\KB2919442Install.msu' -url '' -url64bit 'https://download.microsoft.com/download/D/6/0/D60ED3E0-93A5-4505-8F6A-8D0A5DA16C8A/Windows8.1-KB2919442-x64.msu' -checksum '' -checksumType 'sha256' -checksum64 'C10787E669B484674584A990E069295E8B81B5366F98508010A3AE181B729482' -checksumType64 '' -options 'System.Collections.Hashtable' -getOriginalFileName 'True' |
|
2020-01-31 14:39:33,115 2656 [DEBUG] - Running Get-ProcessorBits -compare '64' |
|
2020-01-31 14:39:33,115 2656 [DEBUG] - CPU is 64 bit |
|
2020-01-31 14:39:33,115 2656 [DEBUG] - Setting url to 'https://download.microsoft.com/download/D/6/0/D60ED3E0-93A5-4505-8F6A-8D0A5DA16C8A/Windows8.1-KB2919442-x64.msu' and bitPackage to 64 |
|
2020-01-31 14:39:33,115 2656 [DEBUG] - Running Get-WebFileName -url 'https://download.microsoft.com/download/D/6/0/D60ED3E0-93A5-4505-8F6A-8D0A5DA16C8A/Windows8.1-KB2919442-x64.msu' -defaultName 'KB2919442Install.msu' |
|
2020-01-31 14:39:33,161 2656 [DEBUG] - Using response url to determine file name. 'https://download.microsoft.com/download/D/6/0/D60ED3E0-93A5-4505-8F6A-8D0A5DA16C8A/Windows8.1-KB2919442-x64.msu' |
|
2020-01-31 14:39:33,161 2656 [DEBUG] - File name determined from url is 'Windows8.1-KB2919442-x64.msu' |
|
2020-01-31 14:39:33,177 2656 [DEBUG] - Running Get-WebHeaders -url 'https://download.microsoft.com/download/D/6/0/D60ED3E0-93A5-4505-8F6A-8D0A5DA16C8A/Windows8.1-KB2919442-x64.msu' -ErrorAction 'Stop' |
|
2020-01-31 14:39:33,177 2656 [DEBUG] - Setting the UserAgent to 'chocolatey command line' |
|
2020-01-31 14:39:33,193 2656 [DEBUG] - Request Headers: |
|
2020-01-31 14:39:33,193 2656 [DEBUG] - 'Accept':'*/*' |
|
2020-01-31 14:39:33,193 2656 [DEBUG] - 'User-Agent':'chocolatey command line' |
|
2020-01-31 14:39:33,225 2656 [DEBUG] - Response Headers: |
|
2020-01-31 14:39:33,240 2656 [DEBUG] - 'x-ms-blob-content-md5':'lJvLSATFalFea0OsARKM9w==' |
|
2020-01-31 14:39:33,240 2656 [DEBUG] - 'Connection':'keep-alive' |
|
2020-01-31 14:39:33,255 2656 [DEBUG] - 'Accept-Ranges':'bytes' |
|
2020-01-31 14:39:33,255 2656 [DEBUG] - 'Content-Length':'10716210' |
|
2020-01-31 14:39:33,255 2656 [DEBUG] - 'Content-Type':'application/octet-stream' |
|
2020-01-31 14:39:33,255 2656 [DEBUG] - 'Date':'Fri, 31 Jan 2020 14:40:02 GMT' |
|
2020-01-31 14:39:33,271 2656 [DEBUG] - 'ETag':'"0x8D6338B84B9468A"' |
|
2020-01-31 14:39:33,271 2656 [DEBUG] - 'Last-Modified':'Tue, 16 Oct 2018 17:19:23 GMT' |
|
2020-01-31 14:39:33,271 2656 [DEBUG] - 'Server':'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0' |
|
2020-01-31 14:39:33,286 2656 [INFO ] - Downloading KB2919442 64 bit |
|
from 'https://download.microsoft.com/download/D/6/0/D60ED3E0-93A5-4505-8F6A-8D0A5DA16C8A/Windows8.1-KB2919442-x64.msu' |
|
2020-01-31 14:39:33,286 2656 [INFO ] - |
|
2020-01-31 14:39:33,302 2656 [DEBUG] - Running Get-WebFile -url 'https://download.microsoft.com/download/D/6/0/D60ED3E0-93A5-4505-8F6A-8D0A5DA16C8A/Windows8.1-KB2919442-x64.msu' -fileName 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919442\1.0.20160915\Windows8.1-KB2919442-x64.msu' -options 'System.Collections.Hashtable' |
|
2020-01-31 14:39:33,302 2656 [DEBUG] - Setting request timeout to 30000 |
|
2020-01-31 14:39:33,302 2656 [DEBUG] - Setting read/write timeout to 2700000 |
|
2020-01-31 14:39:33,318 2656 [DEBUG] - Setting the UserAgent to 'chocolatey command line' |
|
2020-01-31 14:39:33,380 2656 [DEBUG] - Downloading https://download.microsoft.com/download/D/6/0/D60ED3E0-93A5-4505-8F6A-8D0A5DA16C8A/Windows8.1-KB2919442-x64.msu to C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919442\1.0.20160915\Windows8.1-KB2919442-x64.msu |
|
2020-01-31 14:39:34,286 2656 [INFO ] - |
|
2020-01-31 14:39:34,302 2656 [INFO ] - Download of Windows8.1-KB2919442-x64.msu (10.22 MB) completed. |
|
2020-01-31 14:39:34,302 2656 [INFO ] - |
|
2020-01-31 14:39:37,318 2656 [DEBUG] - No runtime virus checking built into FOSS Chocolatey. Check out Pro/Business - https://chocolatey.org/compare |
|
2020-01-31 14:39:37,318 2656 [DEBUG] - Verifying package provided checksum of 'C10787E669B484674584A990E069295E8B81B5366F98508010A3AE181B729482' for 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919442\1.0.20160915\Windows8.1-KB2919442-x64.msu'. |
|
2020-01-31 14:39:37,318 2656 [DEBUG] - Running Get-ChecksumValid -file 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919442\1.0.20160915\Windows8.1-KB2919442-x64.msu' -checksum 'C10787E669B484674584A990E069295E8B81B5366F98508010A3AE181B729482' -checksumType 'sha256' -originalUrl 'https://download.microsoft.com/download/D/6/0/D60ED3E0-93A5-4505-8F6A-8D0A5DA16C8A/Windows8.1-KB2919442-x64.msu' |
|
2020-01-31 14:39:37,333 2656 [DEBUG] - checksum.exe found at 'C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' |
|
2020-01-31 14:39:37,333 2656 [DEBUG] - Executing command ['C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' -c="C10787E669B484674584A990E069295E8B81B5366F98508010A3AE181B729482" -t="sha256" -f="C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919442\1.0.20160915\Windows8.1-KB2919442-x64.msu"] |
|
2020-01-31 14:39:37,661 2656 [DEBUG] - Command ['C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' -c="C10787E669B484674584A990E069295E8B81B5366F98508010A3AE181B729482" -t="sha256" -f="C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919442\1.0.20160915\Windows8.1-KB2919442-x64.msu"] exited with '0'. |
|
2020-01-31 14:39:37,661 2656 [DEBUG] - Running Install-ChocolateyInstallPackage -packageName 'KB2919442' -fileType 'msu' -silentArgs '/quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919442.Install.evt"' -file 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919442\1.0.20160915\Windows8.1-KB2919442-x64.msu' -validExitCodes '0 3010 -2145124329' -useOnlyPackageSilentArguments 'False' |
|
2020-01-31 14:39:37,661 2656 [DEBUG] - Running Get-ProcessorBits -compare '32' |
|
2020-01-31 14:39:37,677 2656 [INFO ] - Installing KB2919442... |
|
2020-01-31 14:39:37,677 2656 [INFO ] - |
|
2020-01-31 14:39:37,693 2656 [DEBUG] - Ensuring 'C:\Users\Administrator\AppData\Local\Temp\chocolatey' exists |
|
2020-01-31 14:39:37,693 2656 [DEBUG] - Running Start-ChocolateyProcessAsAdmin -validExitCodes '0 3010 -2145124329' -workingDirectory 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919442\1.0.20160915' -statements '"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919442\1.0.20160915\Windows8.1-KB2919442-x64.msu" /quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919442.Install.evt" ' -exeToRun 'C:\Windows\System32\wusa.exe' |
|
2020-01-31 14:39:37,693 2656 [DEBUG] - Unable to use current location for Working Directory. Using Cache Location instead. |
|
2020-01-31 14:39:37,708 2656 [DEBUG] - Test-ProcessAdminRights: returning True |
|
2020-01-31 14:39:37,708 2656 [DEBUG] - Elevating permissions and running ["C:\Windows\System32\wusa.exe" "C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919442\1.0.20160915\Windows8.1-KB2919442-x64.msu" /quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919442.Install.evt" ]. This may take a while, depending on the statements. |
|
2020-01-31 14:40:46,708 2656 [DEBUG] - Command ["C:\Windows\System32\wusa.exe" "C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919442\1.0.20160915\Windows8.1-KB2919442-x64.msu" /quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919442.Install.evt" ] exited with '0'. |
|
2020-01-31 14:40:46,724 2656 [DEBUG] - Finishing 'Start-ChocolateyProcessAsAdmin' |
|
2020-01-31 14:40:46,756 2656 [INFO ] - KB2919442 has been installed. |
|
2020-01-31 14:40:46,756 2656 [INFO ] - |
|
2020-01-31 14:40:46,771 2656 [DEBUG] - ---------------------------------------------------------------------- |
|
2020-01-31 14:40:46,771 2656 [DEBUG] - 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\KB2919442\tools\ChocolateyInstall.ps1' -installArguments '' -packageParameters '''] exited with '0'. |
|
2020-01-31 14:40:46,787 2656 [DEBUG] - Calling command ['"C:\Windows\System32\shutdown.exe" /a'] |
|
2020-01-31 14:40:46,818 2656 [DEBUG] - Command ['"C:\Windows\System32\shutdown.exe" /a'] exited with '1116' |
|
2020-01-31 14:40:46,818 2656 [DEBUG] - Capturing package files in 'C:\ProgramData\chocolatey\lib\KB2919442' |
|
2020-01-31 14:40:46,833 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\KB2919442\KB2919442.nupkg' |
|
with checksum '32A7D9E3BE59767CD880591CA5759720' |
|
2020-01-31 14:40:46,833 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\KB2919442\KB2919442.nuspec' |
|
with checksum '4FBD1187705F3A144F3DD8670E4C3406' |
|
2020-01-31 14:40:46,833 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\KB2919442\tools\ChocolateyInstall.ps1' |
|
with checksum '154B6B62AD6DFE6A6339441FB8A0CFDE' |
|
2020-01-31 14:40:46,849 2656 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\.chocolatey\KB2919442.1.0.20160915". |
|
2020-01-31 14:40:46,849 2656 [DEBUG] - There was no original file at 'C:\ProgramData\chocolatey\.chocolatey\KB2919442.1.0.20160915\.files' |
|
2020-01-31 14:40:46,865 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB2919442.1.0.20160915\.extra". |
|
2020-01-31 14:40:46,865 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB2919442.1.0.20160915\.version". |
|
2020-01-31 14:40:46,865 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB2919442.1.0.20160915\.sxs". |
|
2020-01-31 14:40:46,865 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB2919442.1.0.20160915\.pin". |
|
2020-01-31 14:40:46,880 2656 [DEBUG] - Sending message 'HandlePackageResultCompletedMessage' out if there are subscribers... |
|
2020-01-31 14:40:46,880 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\KB2919442\.chocolateyPending". |
|
2020-01-31 14:40:46,880 2656 [INFO ] - The install of kb2919442 was successful. |
|
2020-01-31 14:40:46,896 2656 [INFO ] - Software installed as 'msu', install location is likely default. |
|
2020-01-31 14:40:46,896 2656 [INFO ] - [NuGet] Installing 'KB2919355 1.0.20160915'. |
|
2020-01-31 14:40:46,896 2656 [DEBUG] - [NuGet] Added file 'ChocolateyInstall.ps1' to folder 'KB2919355\tools'. |
|
2020-01-31 14:40:46,912 2656 [DEBUG] - [NuGet] Added file 'KB2919355.nupkg' to folder 'KB2919355'. |
|
2020-01-31 14:40:47,131 2656 [DEBUG] - [NuGet] Added file 'KB2919355.nuspec' to folder 'KB2919355'. |
|
2020-01-31 14:40:47,131 2656 [INFO ] - [NuGet] Successfully installed 'KB2919355 1.0.20160915'. |
|
2020-01-31 14:40:47,146 2656 [INFO ] - |
|
KB2919355 v1.0.20160915 (forced) [Approved] |
|
2020-01-31 14:40:47,146 2656 [INFO ] - kb2919355 package files install completed. Performing other installation steps. |
|
2020-01-31 14:40:47,161 2656 [DEBUG] - Contents of 'C:\ProgramData\chocolatey\lib\KB2919355\tools\ChocolateyInstall.ps1': |
|
2020-01-31 14:40:47,161 2656 [DEBUG] - $kb = "KB2919355" |
|
$packageName = "KB2919355" |
|
$silentArgs = "/quiet /norestart /log:`"$env:TEMP\$kb.Install.evt`"" |
|
|
|
$os = Get-WmiObject -Class Win32_OperatingSystem |
|
$version = [Version]$os.Version |
|
|
|
if ($version -eq $null -or $version -lt [Version]'6.3' -or $version -ge [Version]'6.4') { |
|
Write-Host "Skipping installation because this hotfix only applies to Windows 8.1 and Windows Server 2012 R2." |
|
return |
|
} |
|
|
|
if (Get-HotFix -id $kb -ea SilentlyContinue) |
|
{ |
|
Write-Host "Skipping installation because hotfix $kb is already installed." |
|
return |
|
} |
|
|
|
if ($os.ProductType -eq '1') { |
|
# Windows 8.1 |
|
$url = "https://download.microsoft.com/download/4/E/C/4EC66C83-1E15-43FD-B591-63FB7A1A5C04/Windows8.1-KB2919355-x86.msu" |
|
$url64 = "https://download.microsoft.com/download/D/B/1/DB1F29FC-316D-481E-B435-1654BA185DCF/Windows8.1-KB2919355-x64.msu" |
|
$checksum = 'F8BECA5B463A36E1FEF45AD0DCA6A0DE7606930380514AC1852DF5CA6E3F6C1D' |
|
$checksum64 = 'B0C9ADA530F5EE90BB962AFA9ED26218C582362315E13B1BA97E59767CB7825D' |
|
} else { |
|
# Windows Server 2012 R2 |
|
$url64 = "https://download.microsoft.com/download/2/5/6/256CCCFB-5341-4A8D-A277-8A81B21A1E35/Windows8.1-KB2919355-x64.msu" |
|
$checksum64 = 'B0C9ADA530F5EE90BB962AFA9ED26218C582362315E13B1BA97E59767CB7825D' |
|
} |
|
|
|
Install-ChocolateyPackage $packageName 'msu' $silentArgs $url $url64 -checksum $checksum -checksum64 $checksum64 -checksumType 'sha256' -validExitCodes @(0, 3010, 0x80240017) |
|
|
|
2020-01-31 14:40:47,161 2656 [DEBUG] - 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\KB2919355\tools\ChocolateyInstall.ps1' -installArguments '' -packageParameters '''] |
|
2020-01-31 14:40:47,177 2656 [DEBUG] - Redirecting Microsoft.PowerShell.Security, requested by '' |
|
2020-01-31 14:40:47,177 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=5.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 14:40:47,177 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=4.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 14:40:47,193 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=3.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 14:40:47,193 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=1.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 14:40:47,365 2656 [DEBUG] - Host version is 4.0, PowerShell Version is '4.0' and CLR Version is '4.0.30319.33440'. |
|
2020-01-31 14:40:47,490 2656 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. |
|
2020-01-31 14:40:47,490 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. |
|
2020-01-31 14:40:47,490 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. |
|
2020-01-31 14:40:47,505 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. |
|
2020-01-31 14:40:47,505 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'. |
|
2020-01-31 14:40:47,505 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 14:40:47,521 2656 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. |
|
2020-01-31 14:40:47,521 2656 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. |
|
2020-01-31 14:40:47,521 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 14:40:47,521 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 14:40:47,536 2656 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. |
|
2020-01-31 14:40:47,536 2656 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. |
|
2020-01-31 14:40:47,536 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:40:47,552 2656 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. |
|
2020-01-31 14:40:47,552 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. |
|
2020-01-31 14:40:47,552 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. |
|
2020-01-31 14:40:47,568 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. |
|
2020-01-31 14:40:47,615 2656 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. |
|
2020-01-31 14:40:47,615 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 14:40:47,615 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:40:47,630 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 14:40:47,630 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 14:40:47,630 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 14:40:47,646 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. |
|
2020-01-31 14:40:47,646 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'. |
|
2020-01-31 14:40:47,646 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 14:40:47,661 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 14:40:47,661 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. |
|
2020-01-31 14:40:47,661 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 14:40:47,677 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 14:40:47,677 2656 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. |
|
2020-01-31 14:40:47,677 2656 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'. |
|
2020-01-31 14:40:47,693 2656 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. |
|
2020-01-31 14:40:47,693 2656 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 14:40:47,693 2656 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'. |
|
2020-01-31 14:40:47,708 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. |
|
2020-01-31 14:40:47,708 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:40:47,708 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 14:40:47,708 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 14:40:47,724 2656 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'. |
|
2020-01-31 14:40:47,724 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. |
|
2020-01-31 14:40:47,724 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. |
|
2020-01-31 14:40:47,740 2656 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. |
|
2020-01-31 14:40:47,740 2656 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 14:40:47,740 2656 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. |
|
2020-01-31 14:40:47,755 2656 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. |
|
2020-01-31 14:40:47,755 2656 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. |
|
2020-01-31 14:40:47,755 2656 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. |
|
2020-01-31 14:40:47,755 2656 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. |
|
2020-01-31 14:40:47,771 2656 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. |
|
2020-01-31 14:40:47,771 2656 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 14:40:47,771 2656 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. |
|
2020-01-31 14:40:47,787 2656 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. |
|
2020-01-31 14:40:47,787 2656 [DEBUG] - Loading community extensions |
|
2020-01-31 14:40:47,802 2656 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1' |
|
2020-01-31 14:40:47,802 2656 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1'. |
|
2020-01-31 14:40:48,052 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:40:48,068 2656 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. |
|
2020-01-31 14:40:48,068 2656 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:40:48,083 2656 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. |
|
2020-01-31 14:40:48,083 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:40:48,099 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 14:40:48,099 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. |
|
2020-01-31 14:40:48,099 2656 [INFO ] - VERBOSE: Exporting function 'Register-Application'. |
|
2020-01-31 14:40:48,115 2656 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. |
|
2020-01-31 14:40:48,115 2656 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. |
|
2020-01-31 14:40:48,130 2656 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:40:48,130 2656 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. |
|
2020-01-31 14:40:48,130 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:40:48,130 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'. |
|
2020-01-31 14:40:48,146 2656 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:40:48,146 2656 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. |
|
2020-01-31 14:40:48,146 2656 [INFO ] - VERBOSE: Importing function 'Register-Application'. |
|
2020-01-31 14:40:48,146 2656 [INFO ] - VERBOSE: Importing function 'Remove-Process'. |
|
2020-01-31 14:40:48,161 2656 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1' |
|
2020-01-31 14:40:48,161 2656 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1'. |
|
2020-01-31 14:40:48,193 2656 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. |
|
2020-01-31 14:40:48,193 2656 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. |
|
2020-01-31 14:40:48,208 2656 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. |
|
2020-01-31 14:40:48,208 2656 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. |
|
2020-01-31 14:40:48,208 2656 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. |
|
2020-01-31 14:40:48,224 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. |
|
2020-01-31 14:40:48,224 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. |
|
2020-01-31 14:40:48,224 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. |
|
2020-01-31 14:40:48,240 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'. |
|
2020-01-31 14:40:48,240 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 14:40:48,240 2656 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. |
|
2020-01-31 14:40:48,255 2656 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. |
|
2020-01-31 14:40:48,255 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 14:40:48,255 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 14:40:48,255 2656 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. |
|
2020-01-31 14:40:48,271 2656 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. |
|
2020-01-31 14:40:48,271 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:40:48,271 2656 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. |
|
2020-01-31 14:40:48,286 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. |
|
2020-01-31 14:40:48,286 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. |
|
2020-01-31 14:40:48,286 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. |
|
2020-01-31 14:40:48,286 2656 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. |
|
2020-01-31 14:40:48,302 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 14:40:48,302 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:40:48,302 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 14:40:48,318 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 14:40:48,318 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 14:40:48,318 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. |
|
2020-01-31 14:40:48,333 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'. |
|
2020-01-31 14:40:48,333 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 14:40:48,333 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 14:40:48,333 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. |
|
2020-01-31 14:40:48,349 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 14:40:48,349 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 14:40:48,349 2656 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. |
|
2020-01-31 14:40:48,365 2656 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'. |
|
2020-01-31 14:40:48,365 2656 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. |
|
2020-01-31 14:40:48,365 2656 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 14:40:48,380 2656 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'. |
|
2020-01-31 14:40:48,380 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. |
|
2020-01-31 14:40:48,380 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:40:48,396 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 14:40:48,396 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 14:40:48,396 2656 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'. |
|
2020-01-31 14:40:48,396 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. |
|
2020-01-31 14:40:48,411 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. |
|
2020-01-31 14:40:48,411 2656 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. |
|
2020-01-31 14:40:48,411 2656 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 14:40:48,427 2656 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. |
|
2020-01-31 14:40:48,427 2656 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:40:48,427 2656 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. |
|
2020-01-31 14:40:48,443 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:40:48,443 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. |
|
2020-01-31 14:40:48,443 2656 [INFO ] - VERBOSE: Exporting function 'Register-Application'. |
|
2020-01-31 14:40:48,443 2656 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. |
|
2020-01-31 14:40:48,458 2656 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. |
|
2020-01-31 14:40:48,458 2656 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. |
|
2020-01-31 14:40:48,458 2656 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. |
|
2020-01-31 14:40:48,474 2656 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. |
|
2020-01-31 14:40:48,474 2656 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. |
|
2020-01-31 14:40:48,474 2656 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. |
|
2020-01-31 14:40:48,490 2656 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. |
|
2020-01-31 14:40:48,490 2656 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. |
|
2020-01-31 14:40:48,490 2656 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 14:40:48,490 2656 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. |
|
2020-01-31 14:40:48,505 2656 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. |
|
2020-01-31 14:40:48,505 2656 [INFO ] - VERBOSE: Importing function 'Format-FileSize'. |
|
2020-01-31 14:40:48,505 2656 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. |
|
2020-01-31 14:40:48,505 2656 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. |
|
2020-01-31 14:40:48,521 2656 [INFO ] - VERBOSE: Importing function 'Get-ChecksumValid'. |
|
2020-01-31 14:40:48,521 2656 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyUnzip'. |
|
2020-01-31 14:40:48,521 2656 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyWebFile'. |
|
2020-01-31 14:40:48,536 2656 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. |
|
2020-01-31 14:40:48,536 2656 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariable'. |
|
2020-01-31 14:40:48,536 2656 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 14:40:48,536 2656 [INFO ] - VERBOSE: Importing function 'Get-FtpFile'. |
|
2020-01-31 14:40:48,552 2656 [INFO ] - VERBOSE: Importing function 'Get-OSArchitectureWidth'. |
|
2020-01-31 14:40:48,552 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. |
|
2020-01-31 14:40:48,552 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'. |
|
2020-01-31 14:40:48,568 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 14:40:48,568 2656 [INFO ] - VERBOSE: Importing function 'Get-ToolsLocation'. |
|
2020-01-31 14:40:48,568 2656 [INFO ] - VERBOSE: Importing function 'Get-UACEnabled'. |
|
2020-01-31 14:40:48,583 2656 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'. |
|
2020-01-31 14:40:48,583 2656 [INFO ] - VERBOSE: Importing function 'Get-VirusCheckValid'. |
|
2020-01-31 14:40:48,583 2656 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. |
|
2020-01-31 14:40:48,583 2656 [INFO ] - VERBOSE: Importing function 'Get-WebFile'. |
|
2020-01-31 14:40:48,599 2656 [INFO ] - VERBOSE: Importing function 'Get-WebFileName'. |
|
2020-01-31 14:40:48,599 2656 [INFO ] - VERBOSE: Importing function 'Get-WebHeaders'. |
|
2020-01-31 14:40:48,599 2656 [INFO ] - VERBOSE: Importing function 'Install-BinFile'. |
|
2020-01-31 14:40:48,615 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 14:40:48,615 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:40:48,615 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 14:40:48,630 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 14:40:48,630 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 14:40:48,630 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPackage'. |
|
2020-01-31 14:40:48,646 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPath'. |
|
2020-01-31 14:40:48,646 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 14:40:48,646 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 14:40:48,646 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyShortcut'. |
|
2020-01-31 14:40:48,662 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 14:40:48,662 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 14:40:48,662 2656 [INFO ] - VERBOSE: Importing function 'Install-Vsix'. |
|
2020-01-31 14:40:48,677 2656 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. |
|
2020-01-31 14:40:48,677 2656 [INFO ] - VERBOSE: Importing function 'Register-Application'. |
|
2020-01-31 14:40:48,677 2656 [INFO ] - VERBOSE: Importing function 'Remove-Process'. |
|
2020-01-31 14:40:48,677 2656 [INFO ] - VERBOSE: Importing function 'Set-EnvironmentVariable'. |
|
2020-01-31 14:40:48,693 2656 [INFO ] - VERBOSE: Importing function 'Set-PowerShellExitCode'. |
|
2020-01-31 14:40:48,693 2656 [INFO ] - VERBOSE: Importing function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 14:40:48,693 2656 [INFO ] - VERBOSE: Importing function 'Test-ProcessAdminRights'. |
|
2020-01-31 14:40:48,693 2656 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. |
|
2020-01-31 14:40:48,708 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-BinFile'. |
|
2020-01-31 14:40:48,708 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 14:40:48,708 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 14:40:48,724 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 14:40:48,724 2656 [INFO ] - VERBOSE: Importing function 'Update-SessionEnvironment'. |
|
2020-01-31 14:40:48,724 2656 [INFO ] - VERBOSE: Importing function 'Write-ChocolateyFailure'. |
|
2020-01-31 14:40:48,724 2656 [INFO ] - VERBOSE: Importing function 'Write-ChocolateySuccess'. |
|
2020-01-31 14:40:48,740 2656 [INFO ] - VERBOSE: Importing function 'Write-FileUpdateLog'. |
|
2020-01-31 14:40:48,740 2656 [INFO ] - VERBOSE: Importing function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 14:40:48,740 2656 [INFO ] - VERBOSE: Importing alias 'Add-BinFile'. |
|
2020-01-31 14:40:48,755 2656 [INFO ] - VERBOSE: Importing alias 'Generate-BinFile'. |
|
2020-01-31 14:40:48,755 2656 [INFO ] - VERBOSE: Importing alias 'Get-InstallRegistryKey'. |
|
2020-01-31 14:40:48,755 2656 [INFO ] - VERBOSE: Importing alias 'Get-OSBitness'. |
|
2020-01-31 14:40:48,755 2656 [INFO ] - VERBOSE: Importing alias 'Get-ProcessorBits'. |
|
2020-01-31 14:40:48,771 2656 [INFO ] - VERBOSE: Importing alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 14:40:48,771 2656 [INFO ] - VERBOSE: Importing alias 'refreshenv'. |
|
2020-01-31 14:40:48,771 2656 [INFO ] - VERBOSE: Importing alias 'Remove-BinFile'. |
|
2020-01-31 14:40:48,786 2656 [INFO ] - VERBOSE: Importing alias 'Start-ChocolateyProcess'. |
|
2020-01-31 14:40:48,786 2656 [DEBUG] - ---------------------------Script Execution--------------------------- |
|
2020-01-31 14:40:48,802 2656 [DEBUG] - Running 'ChocolateyScriptRunner' for KB2919355 v1.0.20160915 with packageScript 'C:\ProgramData\chocolatey\lib\KB2919355\tools\ChocolateyInstall.ps1', packageFolder:'C:\ProgramData\chocolatey\lib\KB2919355', installArguments: '', packageParameters: '', |
|
2020-01-31 14:40:48,802 2656 [DEBUG] - Running 'C:\ProgramData\chocolatey\lib\KB2919355\tools\ChocolateyInstall.ps1' |
|
2020-01-31 14:40:49,787 2656 [DEBUG] - Running Install-ChocolateyPackage -checksum '' -checksum64 'B0C9ADA530F5EE90BB962AFA9ED26218C582362315E13B1BA97E59767CB7825D' -checksumType 'sha256' -validExitCodes '0 3010 -2145124329' -packageName 'KB2919355' -fileType 'msu' -silentArgs '/quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919355.Install.evt"' -url '' -url64bit 'https://download.microsoft.com/download/2/5/6/256CCCFB-5341-4A8D-A277-8A81B21A1E35/Windows8.1-KB2919355-x64.msu' |
|
2020-01-31 14:40:49,803 2656 [DEBUG] - Running Get-ChocolateyWebFile -packageName 'KB2919355' -fileFullPath 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919355\1.0.20160915\KB2919355Install.msu' -url '' -url64bit 'https://download.microsoft.com/download/2/5/6/256CCCFB-5341-4A8D-A277-8A81B21A1E35/Windows8.1-KB2919355-x64.msu' -checksum '' -checksumType 'sha256' -checksum64 'B0C9ADA530F5EE90BB962AFA9ED26218C582362315E13B1BA97E59767CB7825D' -checksumType64 '' -options 'System.Collections.Hashtable' -getOriginalFileName 'True' |
|
2020-01-31 14:40:49,803 2656 [DEBUG] - Running Get-ProcessorBits -compare '64' |
|
2020-01-31 14:40:49,803 2656 [DEBUG] - CPU is 64 bit |
|
2020-01-31 14:40:49,818 2656 [DEBUG] - Setting url to 'https://download.microsoft.com/download/2/5/6/256CCCFB-5341-4A8D-A277-8A81B21A1E35/Windows8.1-KB2919355-x64.msu' and bitPackage to 64 |
|
2020-01-31 14:40:49,818 2656 [DEBUG] - Running Get-WebFileName -url 'https://download.microsoft.com/download/2/5/6/256CCCFB-5341-4A8D-A277-8A81B21A1E35/Windows8.1-KB2919355-x64.msu' -defaultName 'KB2919355Install.msu' |
|
2020-01-31 14:40:49,849 2656 [DEBUG] - Using response url to determine file name. 'https://download.microsoft.com/download/2/5/6/256CCCFB-5341-4A8D-A277-8A81B21A1E35/Windows8.1-KB2919355-x64.msu' |
|
2020-01-31 14:40:49,849 2656 [DEBUG] - File name determined from url is 'Windows8.1-KB2919355-x64.msu' |
|
2020-01-31 14:40:49,865 2656 [DEBUG] - Running Get-WebHeaders -url 'https://download.microsoft.com/download/2/5/6/256CCCFB-5341-4A8D-A277-8A81B21A1E35/Windows8.1-KB2919355-x64.msu' -ErrorAction 'Stop' |
|
2020-01-31 14:40:49,865 2656 [DEBUG] - Setting the UserAgent to 'chocolatey command line' |
|
2020-01-31 14:40:49,880 2656 [DEBUG] - Request Headers: |
|
2020-01-31 14:40:49,880 2656 [DEBUG] - 'Accept':'*/*' |
|
2020-01-31 14:40:49,880 2656 [DEBUG] - 'User-Agent':'chocolatey command line' |
|
2020-01-31 14:40:49,912 2656 [DEBUG] - Response Headers: |
|
2020-01-31 14:40:49,912 2656 [DEBUG] - 'x-ms-blob-content-md5':'vgqd63dXfVzTGfOmEyZasQ==' |
|
2020-01-31 14:40:49,927 2656 [DEBUG] - 'Connection':'keep-alive' |
|
2020-01-31 14:40:49,927 2656 [DEBUG] - 'Accept-Ranges':'bytes' |
|
2020-01-31 14:40:49,927 2656 [DEBUG] - 'Content-Length':'724339463' |
|
2020-01-31 14:40:49,927 2656 [DEBUG] - 'Content-Type':'application/octet-stream' |
|
2020-01-31 14:40:49,943 2656 [DEBUG] - 'Date':'Fri, 31 Jan 2020 14:41:19 GMT' |
|
2020-01-31 14:40:49,943 2656 [DEBUG] - 'ETag':'"0x8D630DB371E7DB6"' |
|
2020-01-31 14:40:49,943 2656 [DEBUG] - 'Last-Modified':'Sat, 13 Oct 2018 07:12:20 GMT' |
|
2020-01-31 14:40:49,943 2656 [DEBUG] - 'Server':'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0' |
|
2020-01-31 14:40:49,958 2656 [INFO ] - Downloading KB2919355 64 bit |
|
from 'https://download.microsoft.com/download/2/5/6/256CCCFB-5341-4A8D-A277-8A81B21A1E35/Windows8.1-KB2919355-x64.msu' |
|
2020-01-31 14:40:49,958 2656 [INFO ] - |
|
2020-01-31 14:40:49,974 2656 [DEBUG] - Running Get-WebFile -url 'https://download.microsoft.com/download/2/5/6/256CCCFB-5341-4A8D-A277-8A81B21A1E35/Windows8.1-KB2919355-x64.msu' -fileName 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919355\1.0.20160915\Windows8.1-KB2919355-x64.msu' -options 'System.Collections.Hashtable' |
|
2020-01-31 14:40:49,974 2656 [DEBUG] - Setting request timeout to 30000 |
|
2020-01-31 14:40:49,974 2656 [DEBUG] - Setting read/write timeout to 2700000 |
|
2020-01-31 14:40:49,990 2656 [DEBUG] - Setting the UserAgent to 'chocolatey command line' |
|
2020-01-31 14:40:50,021 2656 [DEBUG] - Downloading https://download.microsoft.com/download/2/5/6/256CCCFB-5341-4A8D-A277-8A81B21A1E35/Windows8.1-KB2919355-x64.msu to C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919355\1.0.20160915\Windows8.1-KB2919355-x64.msu |
|
2020-01-31 14:42:00,271 2656 [INFO ] - |
|
2020-01-31 14:42:00,271 2656 [INFO ] - Download of Windows8.1-KB2919355-x64.msu (690.78 MB) completed. |
|
2020-01-31 14:42:00,286 2656 [INFO ] - |
|
2020-01-31 14:42:05,944 2656 [DEBUG] - No runtime virus checking built into FOSS Chocolatey. Check out Pro/Business - https://chocolatey.org/compare |
|
2020-01-31 14:42:05,944 2656 [DEBUG] - Verifying package provided checksum of 'B0C9ADA530F5EE90BB962AFA9ED26218C582362315E13B1BA97E59767CB7825D' for 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919355\1.0.20160915\Windows8.1-KB2919355-x64.msu'. |
|
2020-01-31 14:42:05,944 2656 [DEBUG] - Running Get-ChecksumValid -file 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919355\1.0.20160915\Windows8.1-KB2919355-x64.msu' -checksum 'B0C9ADA530F5EE90BB962AFA9ED26218C582362315E13B1BA97E59767CB7825D' -checksumType 'sha256' -originalUrl 'https://download.microsoft.com/download/2/5/6/256CCCFB-5341-4A8D-A277-8A81B21A1E35/Windows8.1-KB2919355-x64.msu' |
|
2020-01-31 14:42:05,958 2656 [DEBUG] - checksum.exe found at 'C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' |
|
2020-01-31 14:42:05,958 2656 [DEBUG] - Executing command ['C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' -c="B0C9ADA530F5EE90BB962AFA9ED26218C582362315E13B1BA97E59767CB7825D" -t="sha256" -f="C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919355\1.0.20160915\Windows8.1-KB2919355-x64.msu"] |
|
2020-01-31 14:42:20,896 2656 [DEBUG] - Command ['C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' -c="B0C9ADA530F5EE90BB962AFA9ED26218C582362315E13B1BA97E59767CB7825D" -t="sha256" -f="C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919355\1.0.20160915\Windows8.1-KB2919355-x64.msu"] exited with '0'. |
|
2020-01-31 14:42:20,911 2656 [DEBUG] - Running Install-ChocolateyInstallPackage -packageName 'KB2919355' -fileType 'msu' -silentArgs '/quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919355.Install.evt"' -file 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919355\1.0.20160915\Windows8.1-KB2919355-x64.msu' -validExitCodes '0 3010 -2145124329' -useOnlyPackageSilentArguments 'False' |
|
2020-01-31 14:42:20,911 2656 [DEBUG] - Running Get-ProcessorBits -compare '32' |
|
2020-01-31 14:42:20,927 2656 [INFO ] - Installing KB2919355... |
|
2020-01-31 14:42:20,927 2656 [INFO ] - |
|
2020-01-31 14:42:20,927 2656 [DEBUG] - Ensuring 'C:\Users\Administrator\AppData\Local\Temp\chocolatey' exists |
|
2020-01-31 14:42:20,943 2656 [DEBUG] - Running Start-ChocolateyProcessAsAdmin -validExitCodes '0 3010 -2145124329' -workingDirectory 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919355\1.0.20160915' -statements '"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919355\1.0.20160915\Windows8.1-KB2919355-x64.msu" /quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919355.Install.evt" ' -exeToRun 'C:\Windows\System32\wusa.exe' |
|
2020-01-31 14:42:20,943 2656 [DEBUG] - Unable to use current location for Working Directory. Using Cache Location instead. |
|
2020-01-31 14:42:20,958 2656 [DEBUG] - Test-ProcessAdminRights: returning True |
|
2020-01-31 14:42:20,958 2656 [DEBUG] - Elevating permissions and running ["C:\Windows\System32\wusa.exe" "C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919355\1.0.20160915\Windows8.1-KB2919355-x64.msu" /quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919355.Install.evt" ]. This may take a while, depending on the statements. |
|
2020-01-31 15:17:02,033 2656 [DEBUG] - Command ["C:\Windows\System32\wusa.exe" "C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919355\1.0.20160915\Windows8.1-KB2919355-x64.msu" /quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2919355.Install.evt" ] exited with '3010'. |
|
2020-01-31 15:17:02,033 2656 [DEBUG] - Finishing 'Start-ChocolateyProcessAsAdmin' |
|
2020-01-31 15:17:02,049 2656 [INFO ] - KB2919355 has been installed. |
|
2020-01-31 15:17:02,065 2656 [INFO ] - |
|
2020-01-31 15:17:02,065 2656 [DEBUG] - ---------------------------------------------------------------------- |
|
2020-01-31 15:17:02,190 2656 [DEBUG] - 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\KB2919355\tools\ChocolateyInstall.ps1' -installArguments '' -packageParameters '''] exited with '3010'. |
|
2020-01-31 15:17:02,190 2656 [DEBUG] - Calling command ['"C:\Windows\System32\shutdown.exe" /a'] |
|
2020-01-31 15:17:02,408 2656 [DEBUG] - Command ['"C:\Windows\System32\shutdown.exe" /a'] exited with '1116' |
|
2020-01-31 15:17:02,408 2656 [DEBUG] - Capturing package files in 'C:\ProgramData\chocolatey\lib\KB2919355' |
|
2020-01-31 15:17:02,440 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\KB2919355\KB2919355.nupkg' |
|
with checksum '6384E224A2407A0FD2BD9F0D6F4380A6' |
|
2020-01-31 15:17:02,455 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\KB2919355\KB2919355.nuspec' |
|
with checksum '6C94F968DC2D374A5811DFF90D9E4F4A' |
|
2020-01-31 15:17:02,455 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\KB2919355\tools\ChocolateyInstall.ps1' |
|
with checksum '7C8F335CAA880A57142BC255CF70FA01' |
|
2020-01-31 15:17:02,471 2656 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\.chocolatey\KB2919355.1.0.20160915". |
|
2020-01-31 15:17:02,486 2656 [DEBUG] - There was no original file at 'C:\ProgramData\chocolatey\.chocolatey\KB2919355.1.0.20160915\.files' |
|
2020-01-31 15:17:02,486 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB2919355.1.0.20160915\.extra". |
|
2020-01-31 15:17:02,502 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB2919355.1.0.20160915\.version". |
|
2020-01-31 15:17:02,502 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB2919355.1.0.20160915\.sxs". |
|
2020-01-31 15:17:02,502 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB2919355.1.0.20160915\.pin". |
|
2020-01-31 15:17:02,502 2656 [DEBUG] - Sending message 'HandlePackageResultCompletedMessage' out if there are subscribers... |
|
2020-01-31 15:17:02,518 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\KB2919355\.chocolateyPending". |
|
2020-01-31 15:17:02,518 2656 [INFO ] - The install of kb2919355 was successful. |
|
2020-01-31 15:17:02,518 2656 [INFO ] - Software installed as 'msu', install location is likely default. |
|
2020-01-31 15:17:02,627 2656 [INFO ] - [NuGet] Installing 'KB2999226 1.0.20181019'. |
|
2020-01-31 15:17:02,658 2656 [DEBUG] - [NuGet] Added file 'README.md' to folder 'KB2999226'. |
|
2020-01-31 15:17:02,658 2656 [DEBUG] - [NuGet] Added file 'chocolateyinstall.ps1' to folder 'KB2999226\tools'. |
|
2020-01-31 15:17:02,674 2656 [DEBUG] - [NuGet] Added file 'KB2999226.nupkg' to folder 'KB2999226'. |
|
2020-01-31 15:17:02,893 2656 [DEBUG] - [NuGet] Added file 'KB2999226.nuspec' to folder 'KB2999226'. |
|
2020-01-31 15:17:02,893 2656 [INFO ] - [NuGet] Successfully installed 'KB2999226 1.0.20181019'. |
|
2020-01-31 15:17:02,908 2656 [INFO ] - |
|
KB2999226 v1.0.20181019 (forced) [Approved] |
|
2020-01-31 15:17:02,908 2656 [INFO ] - kb2999226 package files install completed. Performing other installation steps. |
|
2020-01-31 15:17:02,924 2656 [DEBUG] - Contents of 'C:\ProgramData\chocolatey\lib\KB2999226\tools\chocolateyinstall.ps1': |
|
2020-01-31 15:17:02,924 2656 [DEBUG] - $msuData = @{ |
|
'6.0-client' = @{ |
|
Url = 'https://download.microsoft.com/download/D/8/3/D838D576-232C-4C17-A402-75913F27113B/Windows6.0-KB2999226-x86.msu' |
|
Url64 = 'https://download.microsoft.com/download/5/4/E/54E27BE2-CFB2-4FC9-AB03-C39302CA68A0/Windows6.0-KB2999226-x64.msu' |
|
Checksum = 'AE380F63BF4E8700ADA686406B04B01230A339B09EDF7819814A4C0BF4AB72E1' |
|
Checksum64 = '10069DE7315CA3F405E2579846AF5DAB3089A8496AE4C1AB61763480F43A05A8' |
|
} |
|
'6.0-server' = @{ |
|
Url = 'https://download.microsoft.com/download/B/5/7/B5757251-DAB0-4E23-AA46-ABC233FDB90E/Windows6.0-KB2999226-x86.msu' |
|
Url64 = 'https://download.microsoft.com/download/A/7/A/A7A70B17-ADF9-4FC3-A722-69FA89B79756/Windows6.0-KB2999226-x64.msu' |
|
Checksum = 'AE380F63BF4E8700ADA686406B04B01230A339B09EDF7819814A4C0BF4AB72E1' |
|
Checksum64 = '10069DE7315CA3F405E2579846AF5DAB3089A8496AE4C1AB61763480F43A05A8' |
|
} |
|
'6.1-client' = @{ |
|
Url = 'https://download.microsoft.com/download/4/F/E/4FE73868-5EDD-4B47-8B33-CE1BB7B2B16A/Windows6.1-KB2999226-x86.msu' |
|
Url64 = 'https://download.microsoft.com/download/1/1/5/11565A9A-EA09-4F0A-A57E-520D5D138140/Windows6.1-KB2999226-x64.msu' |
|
Checksum = '909E76C81EF0EB176144B253DDFFE7A8FDFACEBFAA15E97DEF003D2262FBF084' |
|
Checksum64 = '43234D2986CA9B0DE75D5183977964D161A8395C3396279DDFC9B20698E5BC34' |
|
} |
|
'6.1-server' = @{ |
|
Url64 = 'https://download.microsoft.com/download/F/1/3/F13BEC9A-8FC6-4489-9D6A-F84BDC9496FE/Windows6.1-KB2999226-x64.msu' |
|
Checksum64 = '43234D2986CA9B0DE75D5183977964D161A8395C3396279DDFC9B20698E5BC34' |
|
} |
|
'6.2-client' = @{ |
|
Url = 'https://download.microsoft.com/download/1/E/8/1E8AFE90-5217-464D-9292-7D0B95A56CE4/Windows8-RT-KB2999226-x86.msu' |
|
Url64 = 'https://download.microsoft.com/download/A/C/1/AC15393F-A6E6-469B-B222-C44B3BB6ECCC/Windows8-RT-KB2999226-x64.msu' |
|
Checksum = '0F36750FBB06FEE23131F68B4D0943841EED24730EC1D5D77DEDC41D359BE88D' |
|
Checksum64 = '50CAE25DA33FA950222D1A803E42567291EB7FEB087FA119B1C97FE9D41CD9F8' |
|
} |
|
'6.2-server' = @{ |
|
Url64 = 'https://download.microsoft.com/download/9/3/E/93E0745A-EAE9-4B5A-B50C-012F2D3B6659/Windows8-RT-KB2999226-x64.msu' |
|
Checksum64 = '50CAE25DA33FA950222D1A803E42567291EB7FEB087FA119B1C97FE9D41CD9F8' |
|
} |
|
'6.3-client' = @{ |
|
Url = 'https://download.microsoft.com/download/E/4/6/E4694323-8290-4A08-82DB-81F2EB9452C2/Windows8.1-KB2999226-x86.msu' |
|
Url64 = 'https://download.microsoft.com/download/9/6/F/96FD0525-3DDF-423D-8845-5F92F4A6883E/Windows8.1-KB2999226-x64.msu' |
|
Checksum = 'B83251219C5390536B02BEBAF5E43A6F13381CE1DB43E76483BCE07C4BCF877B' |
|
Checksum64 = '9F707096C7D279ED4BC2A40BA695EFAC69C20406E0CA97E2B3E08443C6381D15' |
|
} |
|
'6.3-server' = @{ |
|
Url64 = 'https://download.microsoft.com/download/D/1/3/D13E3150-3BB2-4B22-9D8A-47EE2D609FFF/Windows8.1-KB2999226-x64.msu' |
|
Checksum64 = '9F707096C7D279ED4BC2A40BA695EFAC69C20406E0CA97E2B3E08443C6381D15' |
|
} |
|
} |
|
|
|
$servicePackRequirements = @{ |
|
'6.0' = @{ ServicePackNumber = 1; ChocolateyPackage = $null } |
|
'6.1' = @{ ServicePackNumber = 1; ChocolateyPackage = 'KB976932' } |
|
} |
|
|
|
chocolateyInstaller\Install-WindowsUpdate -Id 'KB2999226' -MsuData $msuData -ChecksumType 'sha256' -ServicePackRequirements $servicePackRequirements |
|
|
|
2020-01-31 15:17:02,924 2656 [DEBUG] - 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\KB2999226\tools\chocolateyinstall.ps1' -installArguments '' -packageParameters '''] |
|
2020-01-31 15:17:02,940 2656 [DEBUG] - Redirecting Microsoft.PowerShell.Security, requested by '' |
|
2020-01-31 15:17:02,940 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=5.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 15:17:02,955 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=4.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 15:17:02,955 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=3.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 15:17:02,955 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=1.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 15:17:03,361 2656 [DEBUG] - Host version is 4.0, PowerShell Version is '4.0' and CLR Version is '4.0.30319.33440'. |
|
2020-01-31 15:17:04,346 2656 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. |
|
2020-01-31 15:17:04,346 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. |
|
2020-01-31 15:17:04,361 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. |
|
2020-01-31 15:17:04,361 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. |
|
2020-01-31 15:17:04,361 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'. |
|
2020-01-31 15:17:04,377 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 15:17:04,377 2656 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. |
|
2020-01-31 15:17:04,377 2656 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. |
|
2020-01-31 15:17:04,377 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 15:17:04,393 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 15:17:04,393 2656 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. |
|
2020-01-31 15:17:04,408 2656 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. |
|
2020-01-31 15:17:04,408 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 15:17:04,408 2656 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. |
|
2020-01-31 15:17:04,424 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. |
|
2020-01-31 15:17:04,424 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. |
|
2020-01-31 15:17:04,424 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. |
|
2020-01-31 15:17:04,440 2656 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. |
|
2020-01-31 15:17:04,440 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 15:17:04,440 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 15:17:04,455 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 15:17:04,455 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 15:17:04,455 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 15:17:04,471 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. |
|
2020-01-31 15:17:04,471 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'. |
|
2020-01-31 15:17:04,486 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 15:17:04,502 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 15:17:04,502 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. |
|
2020-01-31 15:17:04,518 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 15:17:04,518 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 15:17:04,518 2656 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. |
|
2020-01-31 15:17:04,533 2656 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'. |
|
2020-01-31 15:17:04,533 2656 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. |
|
2020-01-31 15:17:04,533 2656 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 15:17:04,533 2656 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'. |
|
2020-01-31 15:17:04,549 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. |
|
2020-01-31 15:17:04,549 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 15:17:04,549 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 15:17:04,549 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 15:17:04,565 2656 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'. |
|
2020-01-31 15:17:04,565 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. |
|
2020-01-31 15:17:04,565 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. |
|
2020-01-31 15:17:04,565 2656 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. |
|
2020-01-31 15:17:04,580 2656 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 15:17:04,580 2656 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. |
|
2020-01-31 15:17:04,580 2656 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. |
|
2020-01-31 15:17:04,596 2656 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. |
|
2020-01-31 15:17:04,596 2656 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. |
|
2020-01-31 15:17:04,596 2656 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. |
|
2020-01-31 15:17:04,596 2656 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. |
|
2020-01-31 15:17:04,596 2656 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 15:17:04,611 2656 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. |
|
2020-01-31 15:17:04,611 2656 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. |
|
2020-01-31 15:17:04,611 2656 [DEBUG] - Loading community extensions |
|
2020-01-31 15:17:04,627 2656 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1' |
|
2020-01-31 15:17:04,643 2656 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1'. |
|
2020-01-31 15:17:04,924 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 15:17:04,924 2656 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. |
|
2020-01-31 15:17:04,924 2656 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. |
|
2020-01-31 15:17:04,940 2656 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. |
|
2020-01-31 15:17:04,940 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. |
|
2020-01-31 15:17:04,940 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 15:17:04,940 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. |
|
2020-01-31 15:17:04,955 2656 [INFO ] - VERBOSE: Exporting function 'Register-Application'. |
|
2020-01-31 15:17:04,955 2656 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. |
|
2020-01-31 15:17:04,955 2656 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. |
|
2020-01-31 15:17:04,971 2656 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. |
|
2020-01-31 15:17:04,971 2656 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. |
|
2020-01-31 15:17:04,971 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. |
|
2020-01-31 15:17:04,986 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'. |
|
2020-01-31 15:17:04,986 2656 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'. |
|
2020-01-31 15:17:04,986 2656 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. |
|
2020-01-31 15:17:04,986 2656 [INFO ] - VERBOSE: Importing function 'Register-Application'. |
|
2020-01-31 15:17:05,002 2656 [INFO ] - VERBOSE: Importing function 'Remove-Process'. |
|
2020-01-31 15:17:05,002 2656 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1' |
|
2020-01-31 15:17:05,018 2656 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1'. |
|
2020-01-31 15:17:05,065 2656 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. |
|
2020-01-31 15:17:05,065 2656 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. |
|
2020-01-31 15:17:05,080 2656 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. |
|
2020-01-31 15:17:05,080 2656 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. |
|
2020-01-31 15:17:05,080 2656 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. |
|
2020-01-31 15:17:05,096 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. |
|
2020-01-31 15:17:05,096 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. |
|
2020-01-31 15:17:05,096 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. |
|
2020-01-31 15:17:05,096 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'. |
|
2020-01-31 15:17:05,111 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 15:17:05,111 2656 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. |
|
2020-01-31 15:17:05,111 2656 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. |
|
2020-01-31 15:17:05,127 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 15:17:05,127 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 15:17:05,127 2656 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. |
|
2020-01-31 15:17:05,127 2656 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. |
|
2020-01-31 15:17:05,143 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 15:17:05,143 2656 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. |
|
2020-01-31 15:17:05,143 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. |
|
2020-01-31 15:17:05,158 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. |
|
2020-01-31 15:17:05,158 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. |
|
2020-01-31 15:17:05,158 2656 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. |
|
2020-01-31 15:17:05,174 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 15:17:05,174 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 15:17:05,174 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 15:17:05,190 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 15:17:05,190 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 15:17:05,190 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. |
|
2020-01-31 15:17:05,190 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'. |
|
2020-01-31 15:17:05,205 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 15:17:05,205 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 15:17:05,205 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. |
|
2020-01-31 15:17:05,221 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 15:17:05,221 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 15:17:05,221 2656 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. |
|
2020-01-31 15:17:05,236 2656 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'. |
|
2020-01-31 15:17:05,236 2656 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. |
|
2020-01-31 15:17:05,236 2656 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 15:17:05,252 2656 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'. |
|
2020-01-31 15:17:05,252 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. |
|
2020-01-31 15:17:05,252 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 15:17:05,252 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 15:17:05,268 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 15:17:05,268 2656 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'. |
|
2020-01-31 15:17:05,268 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. |
|
2020-01-31 15:17:05,283 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. |
|
2020-01-31 15:17:05,283 2656 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. |
|
2020-01-31 15:17:05,283 2656 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 15:17:05,299 2656 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. |
|
2020-01-31 15:17:05,299 2656 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. |
|
2020-01-31 15:17:05,299 2656 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. |
|
2020-01-31 15:17:05,299 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. |
|
2020-01-31 15:17:05,315 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. |
|
2020-01-31 15:17:05,315 2656 [INFO ] - VERBOSE: Exporting function 'Register-Application'. |
|
2020-01-31 15:17:05,315 2656 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. |
|
2020-01-31 15:17:05,315 2656 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. |
|
2020-01-31 15:17:05,330 2656 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. |
|
2020-01-31 15:17:05,330 2656 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. |
|
2020-01-31 15:17:05,330 2656 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. |
|
2020-01-31 15:17:05,346 2656 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. |
|
2020-01-31 15:17:05,346 2656 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. |
|
2020-01-31 15:17:05,346 2656 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. |
|
2020-01-31 15:17:05,346 2656 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. |
|
2020-01-31 15:17:05,361 2656 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 15:17:05,361 2656 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. |
|
2020-01-31 15:17:05,361 2656 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. |
|
2020-01-31 15:17:05,377 2656 [INFO ] - VERBOSE: Importing function 'Format-FileSize'. |
|
2020-01-31 15:17:05,377 2656 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. |
|
2020-01-31 15:17:05,377 2656 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. |
|
2020-01-31 15:17:05,377 2656 [INFO ] - VERBOSE: Importing function 'Get-ChecksumValid'. |
|
2020-01-31 15:17:05,393 2656 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyUnzip'. |
|
2020-01-31 15:17:05,393 2656 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyWebFile'. |
|
2020-01-31 15:17:05,393 2656 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. |
|
2020-01-31 15:17:05,408 2656 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariable'. |
|
2020-01-31 15:17:05,408 2656 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 15:17:05,408 2656 [INFO ] - VERBOSE: Importing function 'Get-FtpFile'. |
|
2020-01-31 15:17:05,424 2656 [INFO ] - VERBOSE: Importing function 'Get-OSArchitectureWidth'. |
|
2020-01-31 15:17:05,424 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. |
|
2020-01-31 15:17:05,424 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'. |
|
2020-01-31 15:17:05,424 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 15:17:05,440 2656 [INFO ] - VERBOSE: Importing function 'Get-ToolsLocation'. |
|
2020-01-31 15:17:05,440 2656 [INFO ] - VERBOSE: Importing function 'Get-UACEnabled'. |
|
2020-01-31 15:17:05,440 2656 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'. |
|
2020-01-31 15:17:05,455 2656 [INFO ] - VERBOSE: Importing function 'Get-VirusCheckValid'. |
|
2020-01-31 15:17:05,455 2656 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. |
|
2020-01-31 15:17:05,455 2656 [INFO ] - VERBOSE: Importing function 'Get-WebFile'. |
|
2020-01-31 15:17:05,455 2656 [INFO ] - VERBOSE: Importing function 'Get-WebFileName'. |
|
2020-01-31 15:17:05,471 2656 [INFO ] - VERBOSE: Importing function 'Get-WebHeaders'. |
|
2020-01-31 15:17:05,471 2656 [INFO ] - VERBOSE: Importing function 'Install-BinFile'. |
|
2020-01-31 15:17:05,471 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 15:17:05,486 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 15:17:05,486 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 15:17:05,486 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 15:17:05,502 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 15:17:05,502 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPackage'. |
|
2020-01-31 15:17:05,502 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPath'. |
|
2020-01-31 15:17:05,502 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 15:17:05,518 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 15:17:05,518 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyShortcut'. |
|
2020-01-31 15:17:05,518 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 15:17:05,533 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 15:17:05,533 2656 [INFO ] - VERBOSE: Importing function 'Install-Vsix'. |
|
2020-01-31 15:17:05,533 2656 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. |
|
2020-01-31 15:17:05,533 2656 [INFO ] - VERBOSE: Importing function 'Register-Application'. |
|
2020-01-31 15:17:05,549 2656 [INFO ] - VERBOSE: Importing function 'Remove-Process'. |
|
2020-01-31 15:17:05,549 2656 [INFO ] - VERBOSE: Importing function 'Set-EnvironmentVariable'. |
|
2020-01-31 15:17:05,549 2656 [INFO ] - VERBOSE: Importing function 'Set-PowerShellExitCode'. |
|
2020-01-31 15:17:05,549 2656 [INFO ] - VERBOSE: Importing function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 15:17:05,565 2656 [INFO ] - VERBOSE: Importing function 'Test-ProcessAdminRights'. |
|
2020-01-31 15:17:05,565 2656 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. |
|
2020-01-31 15:17:05,565 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-BinFile'. |
|
2020-01-31 15:17:05,580 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 15:17:05,580 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 15:17:05,580 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 15:17:05,580 2656 [INFO ] - VERBOSE: Importing function 'Update-SessionEnvironment'. |
|
2020-01-31 15:17:05,596 2656 [INFO ] - VERBOSE: Importing function 'Write-ChocolateyFailure'. |
|
2020-01-31 15:17:05,596 2656 [INFO ] - VERBOSE: Importing function 'Write-ChocolateySuccess'. |
|
2020-01-31 15:17:05,596 2656 [INFO ] - VERBOSE: Importing function 'Write-FileUpdateLog'. |
|
2020-01-31 15:17:05,611 2656 [INFO ] - VERBOSE: Importing function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 15:17:05,611 2656 [INFO ] - VERBOSE: Importing alias 'Add-BinFile'. |
|
2020-01-31 15:17:05,611 2656 [INFO ] - VERBOSE: Importing alias 'Generate-BinFile'. |
|
2020-01-31 15:17:05,611 2656 [INFO ] - VERBOSE: Importing alias 'Get-InstallRegistryKey'. |
|
2020-01-31 15:17:05,627 2656 [INFO ] - VERBOSE: Importing alias 'Get-OSBitness'. |
|
2020-01-31 15:17:05,627 2656 [INFO ] - VERBOSE: Importing alias 'Get-ProcessorBits'. |
|
2020-01-31 15:17:05,627 2656 [INFO ] - VERBOSE: Importing alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 15:17:05,643 2656 [INFO ] - VERBOSE: Importing alias 'refreshenv'. |
|
2020-01-31 15:17:05,643 2656 [INFO ] - VERBOSE: Importing alias 'Remove-BinFile'. |
|
2020-01-31 15:17:05,643 2656 [INFO ] - VERBOSE: Importing alias 'Start-ChocolateyProcess'. |
|
2020-01-31 15:17:05,705 2656 [DEBUG] - ---------------------------Script Execution--------------------------- |
|
2020-01-31 15:17:05,705 2656 [DEBUG] - Running 'ChocolateyScriptRunner' for KB2999226 v1.0.20181019 with packageScript 'C:\ProgramData\chocolatey\lib\KB2999226\tools\chocolateyinstall.ps1', packageFolder:'C:\ProgramData\chocolatey\lib\KB2999226', installArguments: '', packageParameters: '', |
|
2020-01-31 15:17:05,721 2656 [DEBUG] - Running 'C:\ProgramData\chocolatey\lib\KB2999226\tools\chocolateyinstall.ps1' |
|
2020-01-31 15:17:05,737 2656 [INFO ] - VERBOSE: Obtaining operating system information |
|
2020-01-31 15:17:07,096 2656 [INFO ] - VERBOSE: Operating system: Microsoft Windows Server 2012 R2 Datacenter, version 6.3.9600, product type 'server' |
|
2020-01-31 15:17:07,096 2656 [INFO ] - VERBOSE: Locating MSU rules for this operating system |
|
2020-01-31 15:17:07,112 2656 [INFO ] - VERBOSE: Located MSU rules using selector: 6.3-server |
|
2020-01-31 15:17:07,112 2656 [INFO ] - VERBOSE: Checking if update KB2999226 is already installed |
|
2020-01-31 15:17:07,127 2656 [INFO ] - VERBOSE: Looking for Win32_QuickFixEngineering with HotFixID = KB2999226 |
|
2020-01-31 15:17:07,580 2656 [INFO ] - VERBOSE: QFE KB2999226 found: False |
|
2020-01-31 15:17:07,596 2656 [INFO ] - VERBOSE: Locating Service Pack rules for this operating system |
|
2020-01-31 15:17:07,596 2656 [INFO ] - VERBOSE: No Service Pack rules defined for this operating system |
|
2020-01-31 15:17:07,596 2656 [INFO ] - VERBOSE: No Service Pack requirements are defined for this update on this operating system. |
|
2020-01-31 15:17:07,627 2656 [DEBUG] - Running Install-ChocolateyPackage -validExitCodes '0' -url64bit 'https://download.microsoft.com/download/D/1/3/D13E3150-3BB2-4B22-9D8A-47EE2D609FFF/Windows8.1-KB2999226-x64.msu' -fileType 'msu' -checksum64 '9F707096C7D279ED4BC2A40BA695EFAC69C20406E0CA97E2B3E08443C6381D15' -packageName 'KB2999226' -checksumType 'sha256' -silentArgs '/quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2999226.Install.evt"' -checksumType64 'sha256' |
|
2020-01-31 15:17:07,643 2656 [DEBUG] - Running Get-ChocolateyWebFile -packageName 'KB2999226' -fileFullPath 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2999226\1.0.20181019\KB2999226Install.msu' -url '' -url64bit 'https://download.microsoft.com/download/D/1/3/D13E3150-3BB2-4B22-9D8A-47EE2D609FFF/Windows8.1-KB2999226-x64.msu' -checksum '' -checksumType 'sha256' -checksum64 '9F707096C7D279ED4BC2A40BA695EFAC69C20406E0CA97E2B3E08443C6381D15' -checksumType64 'sha256' -options 'System.Collections.Hashtable' -getOriginalFileName 'True' |
|
2020-01-31 15:17:07,659 2656 [DEBUG] - Running Get-ProcessorBits -compare '64' |
|
2020-01-31 15:17:07,752 2656 [DEBUG] - CPU is 64 bit |
|
2020-01-31 15:17:07,752 2656 [DEBUG] - Setting url to 'https://download.microsoft.com/download/D/1/3/D13E3150-3BB2-4B22-9D8A-47EE2D609FFF/Windows8.1-KB2999226-x64.msu' and bitPackage to 64 |
|
2020-01-31 15:17:07,768 2656 [DEBUG] - Running Get-WebFileName -url 'https://download.microsoft.com/download/D/1/3/D13E3150-3BB2-4B22-9D8A-47EE2D609FFF/Windows8.1-KB2999226-x64.msu' -defaultName 'KB2999226Install.msu' |
|
2020-01-31 15:17:07,877 2656 [DEBUG] - Using response url to determine file name. 'https://download.microsoft.com/download/D/1/3/D13E3150-3BB2-4B22-9D8A-47EE2D609FFF/Windows8.1-KB2999226-x64.msu' |
|
2020-01-31 15:17:07,877 2656 [DEBUG] - File name determined from url is 'Windows8.1-KB2999226-x64.msu' |
|
2020-01-31 15:17:07,893 2656 [DEBUG] - Running Get-WebHeaders -url 'https://download.microsoft.com/download/D/1/3/D13E3150-3BB2-4B22-9D8A-47EE2D609FFF/Windows8.1-KB2999226-x64.msu' -ErrorAction 'Stop' |
|
2020-01-31 15:17:07,893 2656 [DEBUG] - Setting the UserAgent to 'chocolatey command line' |
|
2020-01-31 15:17:07,893 2656 [DEBUG] - Request Headers: |
|
2020-01-31 15:17:07,908 2656 [DEBUG] - 'Accept':'*/*' |
|
2020-01-31 15:17:07,908 2656 [DEBUG] - 'User-Agent':'chocolatey command line' |
|
2020-01-31 15:17:07,924 2656 [DEBUG] - Response Headers: |
|
2020-01-31 15:17:07,940 2656 [DEBUG] - 'Content-MD5':'0HKIePnGeZBGtDruzk86yg==' |
|
2020-01-31 15:17:07,940 2656 [DEBUG] - 'Connection':'keep-alive' |
|
2020-01-31 15:17:07,940 2656 [DEBUG] - 'Accept-Ranges':'bytes' |
|
2020-01-31 15:17:07,955 2656 [DEBUG] - 'Content-Length':'1005170' |
|
2020-01-31 15:17:07,955 2656 [DEBUG] - 'Content-Type':'application/octet-stream' |
|
2020-01-31 15:17:07,955 2656 [DEBUG] - 'Date':'Fri, 31 Jan 2020 15:17:36 GMT' |
|
2020-01-31 15:17:07,955 2656 [DEBUG] - 'ETag':'"0x8D633887F7AE617"' |
|
2020-01-31 15:17:07,971 2656 [DEBUG] - 'Last-Modified':'Tue, 16 Oct 2018 16:57:46 GMT' |
|
2020-01-31 15:17:07,971 2656 [DEBUG] - 'Server':'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0' |
|
2020-01-31 15:17:07,971 2656 [INFO ] - Downloading KB2999226 64 bit |
|
from 'https://download.microsoft.com/download/D/1/3/D13E3150-3BB2-4B22-9D8A-47EE2D609FFF/Windows8.1-KB2999226-x64.msu' |
|
2020-01-31 15:17:07,986 2656 [INFO ] - |
|
2020-01-31 15:17:07,986 2656 [DEBUG] - Running Get-WebFile -url 'https://download.microsoft.com/download/D/1/3/D13E3150-3BB2-4B22-9D8A-47EE2D609FFF/Windows8.1-KB2999226-x64.msu' -fileName 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2999226\1.0.20181019\Windows8.1-KB2999226-x64.msu' -options 'System.Collections.Hashtable' |
|
2020-01-31 15:17:08,003 2656 [DEBUG] - Setting request timeout to 30000 |
|
2020-01-31 15:17:08,003 2656 [DEBUG] - Setting read/write timeout to 2700000 |
|
2020-01-31 15:17:08,018 2656 [DEBUG] - Setting the UserAgent to 'chocolatey command line' |
|
2020-01-31 15:17:08,065 2656 [DEBUG] - Downloading https://download.microsoft.com/download/D/1/3/D13E3150-3BB2-4B22-9D8A-47EE2D609FFF/Windows8.1-KB2999226-x64.msu to C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2999226\1.0.20181019\Windows8.1-KB2999226-x64.msu |
|
2020-01-31 15:17:08,159 2656 [INFO ] - |
|
2020-01-31 15:17:08,159 2656 [INFO ] - Download of Windows8.1-KB2999226-x64.msu (981.61 KB) completed. |
|
2020-01-31 15:17:08,174 2656 [INFO ] - |
|
2020-01-31 15:17:11,191 2656 [DEBUG] - No runtime virus checking built into FOSS Chocolatey. Check out Pro/Business - https://chocolatey.org/compare |
|
2020-01-31 15:17:11,191 2656 [DEBUG] - Verifying package provided checksum of '9F707096C7D279ED4BC2A40BA695EFAC69C20406E0CA97E2B3E08443C6381D15' for 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2999226\1.0.20181019\Windows8.1-KB2999226-x64.msu'. |
|
2020-01-31 15:17:11,205 2656 [DEBUG] - Running Get-ChecksumValid -file 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2999226\1.0.20181019\Windows8.1-KB2999226-x64.msu' -checksum '9F707096C7D279ED4BC2A40BA695EFAC69C20406E0CA97E2B3E08443C6381D15' -checksumType 'sha256' -originalUrl 'https://download.microsoft.com/download/D/1/3/D13E3150-3BB2-4B22-9D8A-47EE2D609FFF/Windows8.1-KB2999226-x64.msu' |
|
2020-01-31 15:17:11,222 2656 [DEBUG] - checksum.exe found at 'C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' |
|
2020-01-31 15:17:11,222 2656 [DEBUG] - Executing command ['C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' -c="9F707096C7D279ED4BC2A40BA695EFAC69C20406E0CA97E2B3E08443C6381D15" -t="sha256" -f="C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2999226\1.0.20181019\Windows8.1-KB2999226-x64.msu"] |
|
2020-01-31 15:17:12,112 2656 [DEBUG] - Command ['C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' -c="9F707096C7D279ED4BC2A40BA695EFAC69C20406E0CA97E2B3E08443C6381D15" -t="sha256" -f="C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2999226\1.0.20181019\Windows8.1-KB2999226-x64.msu"] exited with '0'. |
|
2020-01-31 15:17:12,112 2656 [DEBUG] - Running Install-ChocolateyInstallPackage -packageName 'KB2999226' -fileType 'msu' -silentArgs '/quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2999226.Install.evt"' -file 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2999226\1.0.20181019\Windows8.1-KB2999226-x64.msu' -validExitCodes '0' -useOnlyPackageSilentArguments 'False' |
|
2020-01-31 15:17:12,127 2656 [DEBUG] - Running Get-ProcessorBits -compare '32' |
|
2020-01-31 15:17:12,127 2656 [INFO ] - Installing KB2999226... |
|
2020-01-31 15:17:12,127 2656 [INFO ] - |
|
2020-01-31 15:17:12,143 2656 [DEBUG] - Ensuring 'C:\Users\Administrator\AppData\Local\Temp\chocolatey' exists |
|
2020-01-31 15:17:12,159 2656 [DEBUG] - Running Start-ChocolateyProcessAsAdmin -validExitCodes '0' -workingDirectory 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2999226\1.0.20181019' -statements '"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2999226\1.0.20181019\Windows8.1-KB2999226-x64.msu" /quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2999226.Install.evt" ' -exeToRun 'C:\Windows\System32\wusa.exe' |
|
2020-01-31 15:17:12,159 2656 [DEBUG] - Unable to use current location for Working Directory. Using Cache Location instead. |
|
2020-01-31 15:17:12,174 2656 [DEBUG] - Test-ProcessAdminRights: returning True |
|
2020-01-31 15:17:12,174 2656 [DEBUG] - Elevating permissions and running ["C:\Windows\System32\wusa.exe" "C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2999226\1.0.20181019\Windows8.1-KB2999226-x64.msu" /quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2999226.Install.evt" ]. This may take a while, depending on the statements. |
|
2020-01-31 15:18:56,830 2656 [DEBUG] - Command ["C:\Windows\System32\wusa.exe" "C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2999226\1.0.20181019\Windows8.1-KB2999226-x64.msu" /quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2999226.Install.evt" ] exited with '3010'. |
|
2020-01-31 15:18:56,846 2656 [DEBUG] - Caught System.Management.Automation.RuntimeException with message = [Running ["C:\Windows\System32\wusa.exe" "C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2999226\1.0.20181019\Windows8.1-KB2999226-x64.msu" /quiet /norestart /log:"C:\Users\Administrator\AppData\Local\Temp\chocolatey\KB2999226.Install.evt" ] was not successful. Exit code was '3010'. See log for possible error messages.] |
|
2020-01-31 15:18:56,861 2656 [DEBUG] - Exception message was recognized as command execution failure with exit code. |
|
2020-01-31 15:18:56,877 2656 [WARN ] - WARNING: Update KB2999226 has been installed, but a reboot is required to finalize the installation. Until the computer is rebooted, dependent packages may fail to install or function properly. |
|
2020-01-31 15:18:56,893 2656 [DEBUG] - ---------------------------------------------------------------------- |
|
2020-01-31 15:18:56,893 2656 [DEBUG] - 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\KB2999226\tools\chocolateyinstall.ps1' -installArguments '' -packageParameters '''] exited with '3010'. |
|
2020-01-31 15:18:56,908 2656 [DEBUG] - Calling command ['"C:\Windows\System32\shutdown.exe" /a'] |
|
2020-01-31 15:18:56,940 2656 [DEBUG] - Command ['"C:\Windows\System32\shutdown.exe" /a'] exited with '1116' |
|
2020-01-31 15:18:56,940 2656 [DEBUG] - Capturing package files in 'C:\ProgramData\chocolatey\lib\KB2999226' |
|
2020-01-31 15:18:56,955 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\KB2999226\KB2999226.nupkg' |
|
with checksum '00FEDCC92100C0472BFC7001E3111764' |
|
2020-01-31 15:18:56,955 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\KB2999226\KB2999226.nuspec' |
|
with checksum '3B26D2573FD5896D91076740B666E12C' |
|
2020-01-31 15:18:56,955 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\KB2999226\README.md' |
|
with checksum '89AA036EDA6211A4524DC9ADCB1B34CB' |
|
2020-01-31 15:18:56,971 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\KB2999226\tools\chocolateyinstall.ps1' |
|
with checksum 'DE3EBDADD4B400BFDCACEF22A64D7E4F' |
|
2020-01-31 15:18:56,971 2656 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\.chocolatey\KB2999226.1.0.20181019". |
|
2020-01-31 15:18:56,971 2656 [DEBUG] - There was no original file at 'C:\ProgramData\chocolatey\.chocolatey\KB2999226.1.0.20181019\.files' |
|
2020-01-31 15:18:56,986 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB2999226.1.0.20181019\.extra". |
|
2020-01-31 15:18:56,986 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB2999226.1.0.20181019\.version". |
|
2020-01-31 15:18:56,986 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB2999226.1.0.20181019\.sxs". |
|
2020-01-31 15:18:57,002 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\KB2999226.1.0.20181019\.pin". |
|
2020-01-31 15:18:57,002 2656 [DEBUG] - Sending message 'HandlePackageResultCompletedMessage' out if there are subscribers... |
|
2020-01-31 15:18:57,002 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\KB2999226\.chocolateyPending". |
|
2020-01-31 15:18:57,002 2656 [INFO ] - The install of kb2999226 was successful. |
|
2020-01-31 15:18:57,018 2656 [INFO ] - Software installed as 'msu', install location is likely default. |
|
2020-01-31 15:18:57,018 2656 [INFO ] - [NuGet] Installing 'vcredist140 14.24.28127.4'. |
|
2020-01-31 15:18:57,252 2656 [DEBUG] - [NuGet] Added file 'chocolateyInstall.ps1' to folder 'vcredist140\tools'. |
|
2020-01-31 15:18:57,393 2656 [DEBUG] - [NuGet] Added file 'chocolateyUninstall.ps1' to folder 'vcredist140\tools'. |
|
2020-01-31 15:18:57,408 2656 [DEBUG] - [NuGet] Added file 'data.ps1' to folder 'vcredist140\tools'. |
|
2020-01-31 15:18:57,518 2656 [DEBUG] - [NuGet] Added file 'vcredist140.nupkg' to folder 'vcredist140'. |
|
2020-01-31 15:18:57,736 2656 [DEBUG] - [NuGet] Added file 'vcredist140.nuspec' to folder 'vcredist140'. |
|
2020-01-31 15:18:57,736 2656 [INFO ] - [NuGet] Successfully installed 'vcredist140 14.24.28127.4'. |
|
2020-01-31 15:18:57,752 2656 [INFO ] - |
|
vcredist140 v14.24.28127.4 (forced) [Approved] |
|
2020-01-31 15:18:57,752 2656 [INFO ] - vcredist140 package files install completed. Performing other installation steps. |
|
2020-01-31 15:18:57,768 2656 [DEBUG] - Contents of 'C:\ProgramData\chocolatey\lib\vcredist140\tools\chocolateyInstall.ps1': |
|
2020-01-31 15:18:57,768 2656 [DEBUG] - Set-StrictMode -Version 2 |
|
$ErrorActionPreference = 'Stop' |
|
|
|
. (Join-Path -Path (Split-Path -Path $MyInvocation.MyCommand.Definition -Parent) -ChildPath 'data.ps1') |
|
$packageName = $otherData.PackageName |
|
$installerType = 'exe' |
|
$silentArgs = '/quiet /norestart' |
|
$validExitCodes = @(0, 1638, 3010) |
|
$force = $Env:chocolateyPackageParameters -like '*Force*' |
|
|
|
Write-Verbose 'Checking Service Pack requirements' |
|
$os = Get-WmiObject -Class Win32_OperatingSystem |
|
$version = [Version]$os.Version |
|
if ($version -ge [Version]'6.1' -and $version -lt [Version]'6.2' -and $os.ServicePackMajorVersion -lt 1) |
|
{ |
|
# On Windows 7 / Server 2008 R2, Service Pack 1 is required. |
|
throw 'This package requires Service Pack 1 to be installed first. The "KB976932" package may be used to install it.' |
|
} |
|
elseif ($version -ge [Version]'6.0' -and $version -lt [Version]'6.1' -and $os.ServicePackMajorVersion -lt 2) |
|
{ |
|
# On Windows Vista / Server 2008, Service Pack 2 is required. |
|
throw 'This package requires Service Pack 2 to be installed first.' |
|
} |
|
elseif ($version -ge [Version]'5.2' -and $version -lt [Version]'6.0' -and $os.ServicePackMajorVersion -lt 2) |
|
{ |
|
# On Windows Server 2003 / XP x64, Service Pack 2 is required. |
|
throw 'This package requires Service Pack 2 to be installed first.' |
|
} |
|
elseif ($version -ge [Version]'5.1' -and $version -lt [Version]'5.2' -and $os.ServicePackMajorVersion -lt 3) |
|
{ |
|
# On Windows XP, Service Pack 3 is required. |
|
throw 'This package requires Service Pack 3 to be installed first.' |
|
} |
|
|
|
$runtimes = @{ |
|
'x64' = @{ RegistryPresent = $false; RegistryVersion = $null; DllVersion = $null; InstallData = $installData64; Applicable = (Get-OSArchitectureWidth) -eq 64 } |
|
'x86' = @{ RegistryPresent = $false; RegistryVersion = $null; DllVersion = $null; InstallData = $installData32; Applicable = $true } |
|
} |
|
|
|
switch ([string](Get-OSArchitectureWidth)) |
|
{ |
|
'32' { $registryRoots = @{ x86 = 'HKLM:\SOFTWARE'; x64 = $null } } |
|
'64' { $registryRoots = @{ x86 = 'HKLM:\SOFTWARE\WOW6432Node'; x64 = 'HKLM:\SOFTWARE' } } |
|
default { throw "Unsupported bitness: $_" } |
|
} |
|
|
|
Write-Verbose 'Analyzing servicing information in the registry' |
|
foreach ($archAndRegRoot in $registryRoots.GetEnumerator()) |
|
{ |
|
$arch = $archAndRegRoot.Key |
|
$regRoot = $archAndRegRoot.Value |
|
# https://docs.microsoft.com/en-us/cpp/ide/redistributing-visual-cpp-files |
|
$regData = Get-ItemProperty -Path "$regRoot\Microsoft\DevDiv\vc\Servicing\$($otherData.FamilyRegistryKey)\RuntimeMinimum" -Name 'Version' -ErrorAction SilentlyContinue |
|
if ($regData -ne $null) |
|
{ |
|
$versionString = $regData.Version |
|
try |
|
{ |
|
$parsedVersion = [version]$versionString |
|
Write-Verbose "Version of installed runtime for architecture $arch in the registry: $versionString" |
|
$normalizedVersion = [version]($parsedVersion.ToString(3)) # future-proofing in case Microsoft starts putting more than 3 parts here |
|
$runtimes[$arch].RegistryVersion = $normalizedVersion |
|
} |
|
catch |
|
{ |
|
Write-Warning "The servicing information in the registry is in an unknown format. Please report this to package maintainers. Data from the registry: Version = [$versionString]" |
|
} |
|
} |
|
} |
|
|
|
$packageRuntimeVersion = $otherData.ThreePartVersion |
|
Write-Verbose "Version number of runtime installed by this package: $packageRuntimeVersion" |
|
foreach ($archAndRuntime in $runtimes.GetEnumerator()) |
|
{ |
|
$arch = $archAndRuntime.Key |
|
$runtime = $archAndRuntime.Value |
|
|
|
$shouldInstall = $runtime.RegistryVersion -eq $null -or $runtime.RegistryVersion -lt $packageRuntimeVersion |
|
Write-Verbose "Runtime for architecture $arch applicable: $($runtime.Applicable); version in registry: [$($runtime.RegistryVersion)]; should install: $shouldInstall" |
|
if ($runtime.Applicable) |
|
{ |
|
if (-not $shouldInstall) |
|
{ |
|
if ($force) |
|
{ |
|
Write-Warning "Forcing installation of runtime for architecture $arch version $packageRuntimeVersion even though this or later version appears present, because 'Force' was specified in package parameters." |
|
} |
|
else |
|
{ |
|
if ($runtime.RegistryVersion -gt $packageRuntimeVersion) |
|
{ |
|
Write-Warning "Skipping installation of runtime for architecture $arch version $packageRuntimeVersion because a newer version ($($runtime.RegistryVersion)) is already installed." |
|
} |
|
else |
|
{ |
|
Write-Host "Runtime for architecture $arch version $packageRuntimeVersion is already installed." |
|
} |
|
|
|
continue |
|
} |
|
} |
|
|
|
Write-Verbose "Installing runtime for architecture $arch" |
|
$installData = $runtime.InstallData |
|
Set-StrictMode -Off |
|
Install-ChocolateyPackage -PackageName "${packageName}-$arch" ` |
|
-FileType $installerType ` |
|
-SilentArgs $silentArgs ` |
|
-ValidExitCodes $validExitCodes ` |
|
@installData |
|
Set-StrictMode -Version 2 |
|
} |
|
} |
|
|
|
2020-01-31 15:18:57,768 2656 [DEBUG] - 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\vcredist140\tools\chocolateyInstall.ps1' -installArguments '' -packageParameters '''] |
|
2020-01-31 15:18:57,783 2656 [DEBUG] - Redirecting Microsoft.PowerShell.Security, requested by '' |
|
2020-01-31 15:18:57,783 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=5.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 15:18:57,799 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=4.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 15:18:57,799 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=3.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 15:18:57,799 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=1.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 15:18:58,128 2656 [DEBUG] - Host version is 4.0, PowerShell Version is '4.0' and CLR Version is '4.0.30319.33440'. |
|
2020-01-31 15:18:58,236 2656 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. |
|
2020-01-31 15:18:58,236 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. |
|
2020-01-31 15:18:58,252 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. |
|
2020-01-31 15:18:58,252 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. |
|
2020-01-31 15:18:58,252 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'. |
|
2020-01-31 15:18:58,268 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 15:18:58,268 2656 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. |
|
2020-01-31 15:18:58,268 2656 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. |
|
2020-01-31 15:18:58,268 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 15:18:58,283 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 15:18:58,283 2656 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. |
|
2020-01-31 15:18:58,299 2656 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. |
|
2020-01-31 15:18:58,299 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 15:18:58,299 2656 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. |
|
2020-01-31 15:18:58,299 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. |
|
2020-01-31 15:18:58,315 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. |
|
2020-01-31 15:18:58,315 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. |
|
2020-01-31 15:18:58,315 2656 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. |
|
2020-01-31 15:18:58,330 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 15:18:58,330 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 15:18:58,330 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 15:18:58,346 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 15:18:58,346 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 15:18:58,346 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. |
|
2020-01-31 15:18:58,361 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'. |
|
2020-01-31 15:18:58,361 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 15:18:58,361 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 15:18:58,361 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. |
|
2020-01-31 15:18:58,377 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 15:18:58,377 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 15:18:58,377 2656 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. |
|
2020-01-31 15:18:58,393 2656 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'. |
|
2020-01-31 15:18:58,393 2656 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. |
|
2020-01-31 15:18:58,393 2656 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 15:18:58,393 2656 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'. |
|
2020-01-31 15:18:58,408 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. |
|
2020-01-31 15:18:58,408 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 15:18:58,408 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 15:18:58,424 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 15:18:58,424 2656 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'. |
|
2020-01-31 15:18:58,424 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. |
|
2020-01-31 15:18:58,424 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. |
|
2020-01-31 15:18:58,440 2656 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. |
|
2020-01-31 15:18:58,440 2656 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 15:18:58,440 2656 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. |
|
2020-01-31 15:18:58,440 2656 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. |
|
2020-01-31 15:18:58,455 2656 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. |
|
2020-01-31 15:18:58,455 2656 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. |
|
2020-01-31 15:18:58,455 2656 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. |
|
2020-01-31 15:18:58,471 2656 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. |
|
2020-01-31 15:18:58,471 2656 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 15:18:58,471 2656 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. |
|
2020-01-31 15:18:58,471 2656 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. |
|
2020-01-31 15:18:58,502 2656 [DEBUG] - Loading community extensions |
|
2020-01-31 15:18:58,502 2656 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1' |
|
2020-01-31 15:18:58,502 2656 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1'. |
|
2020-01-31 15:18:58,705 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 15:18:58,721 2656 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. |
|
2020-01-31 15:18:58,721 2656 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. |
|
2020-01-31 15:18:58,736 2656 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. |
|
2020-01-31 15:18:58,736 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. |
|
2020-01-31 15:18:58,752 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 15:18:58,752 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. |
|
2020-01-31 15:18:58,752 2656 [INFO ] - VERBOSE: Exporting function 'Register-Application'. |
|
2020-01-31 15:18:58,768 2656 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. |
|
2020-01-31 15:18:58,768 2656 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. |
|
2020-01-31 15:18:58,783 2656 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. |
|
2020-01-31 15:18:58,783 2656 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. |
|
2020-01-31 15:18:58,799 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. |
|
2020-01-31 15:18:58,799 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'. |
|
2020-01-31 15:18:58,799 2656 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'. |
|
2020-01-31 15:18:58,815 2656 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. |
|
2020-01-31 15:18:58,815 2656 [INFO ] - VERBOSE: Importing function 'Register-Application'. |
|
2020-01-31 15:18:58,830 2656 [INFO ] - VERBOSE: Importing function 'Remove-Process'. |
|
2020-01-31 15:18:58,830 2656 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1' |
|
2020-01-31 15:18:58,830 2656 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1'. |
|
2020-01-31 15:18:58,861 2656 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. |
|
2020-01-31 15:18:58,861 2656 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. |
|
2020-01-31 15:18:58,878 2656 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. |
|
2020-01-31 15:18:58,878 2656 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. |
|
2020-01-31 15:18:58,878 2656 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. |
|
2020-01-31 15:18:58,893 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. |
|
2020-01-31 15:18:58,893 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. |
|
2020-01-31 15:18:58,893 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. |
|
2020-01-31 15:18:58,908 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'. |
|
2020-01-31 15:18:58,908 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 15:18:58,908 2656 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. |
|
2020-01-31 15:18:58,908 2656 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. |
|
2020-01-31 15:18:58,924 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 15:18:58,924 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 15:18:58,924 2656 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. |
|
2020-01-31 15:18:58,940 2656 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. |
|
2020-01-31 15:18:58,940 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 15:18:58,940 2656 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. |
|
2020-01-31 15:18:58,940 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. |
|
2020-01-31 15:18:58,955 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. |
|
2020-01-31 15:18:58,955 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. |
|
2020-01-31 15:18:58,955 2656 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. |
|
2020-01-31 15:18:58,971 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 15:18:58,971 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 15:18:58,971 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 15:18:58,971 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 15:18:58,986 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 15:18:58,986 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. |
|
2020-01-31 15:18:58,986 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'. |
|
2020-01-31 15:18:59,002 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 15:18:59,002 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 15:18:59,002 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. |
|
2020-01-31 15:18:59,002 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 15:18:59,018 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 15:18:59,018 2656 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. |
|
2020-01-31 15:18:59,018 2656 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'. |
|
2020-01-31 15:18:59,033 2656 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. |
|
2020-01-31 15:18:59,033 2656 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 15:18:59,049 2656 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'. |
|
2020-01-31 15:18:59,049 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. |
|
2020-01-31 15:18:59,049 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 15:18:59,049 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 15:18:59,065 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 15:18:59,065 2656 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'. |
|
2020-01-31 15:18:59,065 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. |
|
2020-01-31 15:18:59,080 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. |
|
2020-01-31 15:18:59,080 2656 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. |
|
2020-01-31 15:18:59,080 2656 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 15:18:59,080 2656 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. |
|
2020-01-31 15:18:59,096 2656 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. |
|
2020-01-31 15:18:59,096 2656 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. |
|
2020-01-31 15:18:59,096 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. |
|
2020-01-31 15:18:59,111 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. |
|
2020-01-31 15:18:59,111 2656 [INFO ] - VERBOSE: Exporting function 'Register-Application'. |
|
2020-01-31 15:18:59,111 2656 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. |
|
2020-01-31 15:18:59,111 2656 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. |
|
2020-01-31 15:18:59,127 2656 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. |
|
2020-01-31 15:18:59,127 2656 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. |
|
2020-01-31 15:18:59,127 2656 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. |
|
2020-01-31 15:18:59,143 2656 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. |
|
2020-01-31 15:18:59,143 2656 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. |
|
2020-01-31 15:18:59,143 2656 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. |
|
2020-01-31 15:18:59,158 2656 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. |
|
2020-01-31 15:18:59,158 2656 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 15:18:59,158 2656 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. |
|
2020-01-31 15:18:59,158 2656 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. |
|
2020-01-31 15:18:59,174 2656 [INFO ] - VERBOSE: Importing function 'Format-FileSize'. |
|
2020-01-31 15:18:59,174 2656 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. |
|
2020-01-31 15:18:59,174 2656 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. |
|
2020-01-31 15:18:59,190 2656 [INFO ] - VERBOSE: Importing function 'Get-ChecksumValid'. |
|
2020-01-31 15:18:59,190 2656 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyUnzip'. |
|
2020-01-31 15:18:59,190 2656 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyWebFile'. |
|
2020-01-31 15:18:59,205 2656 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. |
|
2020-01-31 15:18:59,205 2656 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariable'. |
|
2020-01-31 15:18:59,205 2656 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 15:18:59,205 2656 [INFO ] - VERBOSE: Importing function 'Get-FtpFile'. |
|
2020-01-31 15:18:59,221 2656 [INFO ] - VERBOSE: Importing function 'Get-OSArchitectureWidth'. |
|
2020-01-31 15:18:59,221 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. |
|
2020-01-31 15:18:59,221 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'. |
|
2020-01-31 15:18:59,237 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 15:18:59,237 2656 [INFO ] - VERBOSE: Importing function 'Get-ToolsLocation'. |
|
2020-01-31 15:18:59,237 2656 [INFO ] - VERBOSE: Importing function 'Get-UACEnabled'. |
|
2020-01-31 15:18:59,252 2656 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'. |
|
2020-01-31 15:18:59,252 2656 [INFO ] - VERBOSE: Importing function 'Get-VirusCheckValid'. |
|
2020-01-31 15:18:59,252 2656 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. |
|
2020-01-31 15:18:59,252 2656 [INFO ] - VERBOSE: Importing function 'Get-WebFile'. |
|
2020-01-31 15:18:59,268 2656 [INFO ] - VERBOSE: Importing function 'Get-WebFileName'. |
|
2020-01-31 15:18:59,268 2656 [INFO ] - VERBOSE: Importing function 'Get-WebHeaders'. |
|
2020-01-31 15:18:59,268 2656 [INFO ] - VERBOSE: Importing function 'Install-BinFile'. |
|
2020-01-31 15:18:59,283 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 15:18:59,283 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 15:18:59,283 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 15:18:59,299 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 15:18:59,299 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 15:18:59,299 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPackage'. |
|
2020-01-31 15:18:59,299 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPath'. |
|
2020-01-31 15:18:59,315 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 15:18:59,315 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 15:18:59,315 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyShortcut'. |
|
2020-01-31 15:18:59,315 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 15:18:59,330 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 15:18:59,330 2656 [INFO ] - VERBOSE: Importing function 'Install-Vsix'. |
|
2020-01-31 15:18:59,330 2656 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. |
|
2020-01-31 15:18:59,346 2656 [INFO ] - VERBOSE: Importing function 'Register-Application'. |
|
2020-01-31 15:18:59,346 2656 [INFO ] - VERBOSE: Importing function 'Remove-Process'. |
|
2020-01-31 15:18:59,346 2656 [INFO ] - VERBOSE: Importing function 'Set-EnvironmentVariable'. |
|
2020-01-31 15:18:59,346 2656 [INFO ] - VERBOSE: Importing function 'Set-PowerShellExitCode'. |
|
2020-01-31 15:18:59,361 2656 [INFO ] - VERBOSE: Importing function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 15:18:59,361 2656 [INFO ] - VERBOSE: Importing function 'Test-ProcessAdminRights'. |
|
2020-01-31 15:18:59,361 2656 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. |
|
2020-01-31 15:18:59,377 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-BinFile'. |
|
2020-01-31 15:18:59,377 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 15:18:59,377 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 15:18:59,393 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 15:18:59,393 2656 [INFO ] - VERBOSE: Importing function 'Update-SessionEnvironment'. |
|
2020-01-31 15:18:59,393 2656 [INFO ] - VERBOSE: Importing function 'Write-ChocolateyFailure'. |
|
2020-01-31 15:18:59,408 2656 [INFO ] - VERBOSE: Importing function 'Write-ChocolateySuccess'. |
|
2020-01-31 15:18:59,408 2656 [INFO ] - VERBOSE: Importing function 'Write-FileUpdateLog'. |
|
2020-01-31 15:18:59,408 2656 [INFO ] - VERBOSE: Importing function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 15:18:59,424 2656 [INFO ] - VERBOSE: Importing alias 'Add-BinFile'. |
|
2020-01-31 15:18:59,424 2656 [INFO ] - VERBOSE: Importing alias 'Generate-BinFile'. |
|
2020-01-31 15:18:59,424 2656 [INFO ] - VERBOSE: Importing alias 'Get-InstallRegistryKey'. |
|
2020-01-31 15:18:59,440 2656 [INFO ] - VERBOSE: Importing alias 'Get-OSBitness'. |
|
2020-01-31 15:18:59,440 2656 [INFO ] - VERBOSE: Importing alias 'Get-ProcessorBits'. |
|
2020-01-31 15:18:59,440 2656 [INFO ] - VERBOSE: Importing alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 15:18:59,440 2656 [INFO ] - VERBOSE: Importing alias 'refreshenv'. |
|
2020-01-31 15:18:59,455 2656 [INFO ] - VERBOSE: Importing alias 'Remove-BinFile'. |
|
2020-01-31 15:18:59,455 2656 [INFO ] - VERBOSE: Importing alias 'Start-ChocolateyProcess'. |
|
2020-01-31 15:18:59,455 2656 [DEBUG] - ---------------------------Script Execution--------------------------- |
|
2020-01-31 15:18:59,471 2656 [DEBUG] - Running 'ChocolateyScriptRunner' for vcredist140 v14.24.28127.4 with packageScript 'C:\ProgramData\chocolatey\lib\vcredist140\tools\chocolateyInstall.ps1', packageFolder:'C:\ProgramData\chocolatey\lib\vcredist140', installArguments: '', packageParameters: '', |
|
2020-01-31 15:18:59,471 2656 [DEBUG] - Running 'C:\ProgramData\chocolatey\lib\vcredist140\tools\chocolateyInstall.ps1' |
|
2020-01-31 15:18:59,502 2656 [INFO ] - VERBOSE: Checking Service Pack requirements |
|
2020-01-31 15:18:59,628 2656 [DEBUG] - Running Get-OSArchitectureWidth |
|
2020-01-31 15:18:59,643 2656 [DEBUG] - Running Get-OSArchitectureWidth |
|
2020-01-31 15:18:59,658 2656 [INFO ] - VERBOSE: Analyzing servicing information in the registry |
|
2020-01-31 15:18:59,971 2656 [INFO ] - VERBOSE: Version number of runtime installed by this package: 14.24.28127 |
|
2020-01-31 15:19:00,003 2656 [INFO ] - VERBOSE: Runtime for architecture x86 applicable: True; version in registry: []; should install: True |
|
2020-01-31 15:19:00,003 2656 [INFO ] - VERBOSE: Installing runtime for architecture x86 |
|
2020-01-31 15:19:00,033 2656 [DEBUG] - Running Install-ChocolateyPackage -packageName 'vcredist140-x86' -fileType 'exe' -silentArgs '/quiet /norestart' -validExitCodes '0 1638 3010' -checksumType 'sha256' -url 'https://download.visualstudio.microsoft.com/download/pr/9307e627-aaac-42cb-a32a-a39e166ee8cb/E59AE3E886BD4571A811FE31A47959AE5C40D87C583F786816C60440252CD7EC/VC_redist.x86.exe' -checksum 'e59ae3e886bd4571a811fe31a47959ae5c40d87c583f786816c60440252cd7ec' |
|
2020-01-31 15:19:00,049 2656 [DEBUG] - Running Get-ChocolateyWebFile -packageName 'vcredist140-x86' -fileFullPath 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\vcredist140-x86Install.exe' -url 'https://download.visualstudio.microsoft.com/download/pr/9307e627-aaac-42cb-a32a-a39e166ee8cb/E59AE3E886BD4571A811FE31A47959AE5C40D87C583F786816C60440252CD7EC/VC_redist.x86.exe' -url64bit '' -checksum 'e59ae3e886bd4571a811fe31a47959ae5c40d87c583f786816c60440252cd7ec' -checksumType 'sha256' -checksum64 '' -checksumType64 '' -options 'System.Collections.Hashtable' -getOriginalFileName 'True' |
|
2020-01-31 15:19:00,049 2656 [DEBUG] - Running Get-ProcessorBits -compare '64' |
|
2020-01-31 15:19:00,049 2656 [DEBUG] - CPU is 64 bit |
|
2020-01-31 15:19:00,065 2656 [DEBUG] - Running Get-WebFileName -url 'https://download.visualstudio.microsoft.com/download/pr/9307e627-aaac-42cb-a32a-a39e166ee8cb/E59AE3E886BD4571A811FE31A47959AE5C40D87C583F786816C60440252CD7EC/VC_redist.x86.exe' -defaultName 'vcredist140-x86Install.exe' |
|
2020-01-31 15:19:00,143 2656 [DEBUG] - Using header 'Content-Disposition' to determine file name. |
|
2020-01-31 15:19:00,174 2656 [DEBUG] - File name determined from url is 'VC_redist.x86.exe' |
|
2020-01-31 15:19:00,174 2656 [DEBUG] - Running Get-WebHeaders -url 'https://download.visualstudio.microsoft.com/download/pr/9307e627-aaac-42cb-a32a-a39e166ee8cb/E59AE3E886BD4571A811FE31A47959AE5C40D87C583F786816C60440252CD7EC/VC_redist.x86.exe' -ErrorAction 'Stop' |
|
2020-01-31 15:19:00,190 2656 [DEBUG] - Setting the UserAgent to 'chocolatey command line' |
|
2020-01-31 15:19:00,190 2656 [DEBUG] - Request Headers: |
|
2020-01-31 15:19:00,205 2656 [DEBUG] - 'Accept':'*/*' |
|
2020-01-31 15:19:00,205 2656 [DEBUG] - 'User-Agent':'chocolatey command line' |
|
2020-01-31 15:19:00,252 2656 [DEBUG] - Response Headers: |
|
2020-01-31 15:19:00,268 2656 [DEBUG] - 'Access-Control-Allow-Origin':'https://www.visualstudio.com' |
|
2020-01-31 15:19:00,268 2656 [DEBUG] - 'Age':'73795' |
|
2020-01-31 15:19:00,283 2656 [DEBUG] - 'Content-Disposition':'attachment; filename=VC_redist.x86.exe' |
|
2020-01-31 15:19:00,283 2656 [DEBUG] - 'X-Cache':'HIT' |
|
2020-01-31 15:19:00,283 2656 [DEBUG] - 'Accept-Ranges':'bytes' |
|
2020-01-31 15:19:00,283 2656 [DEBUG] - 'Content-Length':'14364440' |
|
2020-01-31 15:19:00,300 2656 [DEBUG] - 'Cache-Control':'max-age=86400' |
|
2020-01-31 15:19:00,300 2656 [DEBUG] - 'Content-Type':'application/octet-stream' |
|
2020-01-31 15:19:00,300 2656 [DEBUG] - 'Date':'Fri, 31 Jan 2020 15:19:29 GMT' |
|
2020-01-31 15:19:00,300 2656 [DEBUG] - 'Expires':'Sat, 01 Feb 2020 15:19:29 GMT' |
|
2020-01-31 15:19:00,300 2656 [DEBUG] - 'ETag':'"bc9af37b477ad51:0"' |
|
2020-01-31 15:19:00,315 2656 [DEBUG] - 'Last-Modified':'Fri, 04 Oct 2019 00:05:51 GMT' |
|
2020-01-31 15:19:00,315 2656 [DEBUG] - 'Server':'ECAcc (seb/5F99)' |
|
2020-01-31 15:19:00,315 2656 [DEBUG] - 'X-Powered-By':'ASP.NET' |
|
2020-01-31 15:19:00,315 2656 [INFO ] - Downloading vcredist140-x86 |
|
from 'https://download.visualstudio.microsoft.com/download/pr/9307e627-aaac-42cb-a32a-a39e166ee8cb/E59AE3E886BD4571A811FE31A47959AE5C40D87C583F786816C60440252CD7EC/VC_redist.x86.exe' |
|
2020-01-31 15:19:00,330 2656 [INFO ] - |
|
2020-01-31 15:19:00,330 2656 [DEBUG] - Running Get-WebFile -url 'https://download.visualstudio.microsoft.com/download/pr/9307e627-aaac-42cb-a32a-a39e166ee8cb/E59AE3E886BD4571A811FE31A47959AE5C40D87C583F786816C60440252CD7EC/VC_redist.x86.exe' -fileName 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\VC_redist.x86.exe' -options 'System.Collections.Hashtable' |
|
2020-01-31 15:19:00,330 2656 [DEBUG] - Setting request timeout to 30000 |
|
2020-01-31 15:19:00,346 2656 [DEBUG] - Setting read/write timeout to 2700000 |
|
2020-01-31 15:19:00,346 2656 [DEBUG] - Setting the UserAgent to 'chocolatey command line' |
|
2020-01-31 15:19:00,424 2656 [DEBUG] - Downloading https://download.visualstudio.microsoft.com/download/pr/9307e627-aaac-42cb-a32a-a39e166ee8cb/E59AE3E886BD4571A811FE31A47959AE5C40D87C583F786816C60440252CD7EC/VC_redist.x86.exe to C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\VC_redist.x86.exe |
|
2020-01-31 15:19:01,643 2656 [INFO ] - |
|
2020-01-31 15:19:01,643 2656 [INFO ] - Download of VC_redist.x86.exe (13.7 MB) completed. |
|
2020-01-31 15:19:01,658 2656 [INFO ] - |
|
2020-01-31 15:19:04,674 2656 [DEBUG] - No runtime virus checking built into FOSS Chocolatey. Check out Pro/Business - https://chocolatey.org/compare |
|
2020-01-31 15:19:04,674 2656 [DEBUG] - Verifying package provided checksum of 'e59ae3e886bd4571a811fe31a47959ae5c40d87c583f786816c60440252cd7ec' for 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\VC_redist.x86.exe'. |
|
2020-01-31 15:19:04,674 2656 [DEBUG] - Running Get-ChecksumValid -file 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\VC_redist.x86.exe' -checksum 'e59ae3e886bd4571a811fe31a47959ae5c40d87c583f786816c60440252cd7ec' -checksumType 'sha256' -originalUrl 'https://download.visualstudio.microsoft.com/download/pr/9307e627-aaac-42cb-a32a-a39e166ee8cb/E59AE3E886BD4571A811FE31A47959AE5C40D87C583F786816C60440252CD7EC/VC_redist.x86.exe' |
|
2020-01-31 15:19:04,690 2656 [DEBUG] - checksum.exe found at 'C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' |
|
2020-01-31 15:19:04,690 2656 [DEBUG] - Executing command ['C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' -c="e59ae3e886bd4571a811fe31a47959ae5c40d87c583f786816c60440252cd7ec" -t="sha256" -f="C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\VC_redist.x86.exe"] |
|
2020-01-31 15:19:05,143 2656 [DEBUG] - Command ['C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' -c="e59ae3e886bd4571a811fe31a47959ae5c40d87c583f786816c60440252cd7ec" -t="sha256" -f="C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\VC_redist.x86.exe"] exited with '0'. |
|
2020-01-31 15:19:05,143 2656 [DEBUG] - Running Install-ChocolateyInstallPackage -packageName 'vcredist140-x86' -fileType 'exe' -silentArgs '/quiet /norestart' -file 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\VC_redist.x86.exe' -validExitCodes '0 1638 3010' -useOnlyPackageSilentArguments 'False' |
|
2020-01-31 15:19:05,143 2656 [DEBUG] - Running Get-ProcessorBits -compare '32' |
|
2020-01-31 15:19:05,158 2656 [INFO ] - Installing vcredist140-x86... |
|
2020-01-31 15:19:05,158 2656 [INFO ] - |
|
2020-01-31 15:19:05,174 2656 [DEBUG] - Running Start-ChocolateyProcessAsAdmin -validExitCodes '0 1638 3010' -workingDirectory 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4' -statements '/quiet /norestart ' -exeToRun 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\VC_redist.x86.exe' |
|
2020-01-31 15:19:05,174 2656 [DEBUG] - Unable to use current location for Working Directory. Using Cache Location instead. |
|
2020-01-31 15:19:05,174 2656 [DEBUG] - Test-ProcessAdminRights: returning True |
|
2020-01-31 15:19:05,190 2656 [DEBUG] - Elevating permissions and running ["C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\VC_redist.x86.exe" /quiet /norestart ]. This may take a while, depending on the statements. |
|
2020-01-31 15:19:23,190 2656 [DEBUG] - Command ["C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\VC_redist.x86.exe" /quiet /norestart ] exited with '0'. |
|
2020-01-31 15:19:23,205 2656 [DEBUG] - Finishing 'Start-ChocolateyProcessAsAdmin' |
|
2020-01-31 15:19:23,205 2656 [INFO ] - vcredist140-x86 has been installed. |
|
2020-01-31 15:19:23,221 2656 [INFO ] - |
|
2020-01-31 15:19:23,221 2656 [INFO ] - VERBOSE: Runtime for architecture x64 applicable: True; version in registry: []; should install: True |
|
2020-01-31 15:19:23,236 2656 [INFO ] - VERBOSE: Installing runtime for architecture x64 |
|
2020-01-31 15:19:23,236 2656 [DEBUG] - Running Install-ChocolateyPackage -packageName 'vcredist140-x64' -fileType 'exe' -silentArgs '/quiet /norestart' -validExitCodes '0 1638 3010' -url64bit 'https://download.visualstudio.microsoft.com/download/pr/3b070396-b7fb-4eee-aa8b-102a23c3e4f4/40EA2955391C9EAE3E35619C4C24B5AAF3D17AEAA6D09424EE9672AA9372AEED/VC_redist.x64.exe' -checksumType64 'sha256' -checksum64 '40ea2955391c9eae3e35619c4c24b5aaf3d17aeaa6d09424ee9672aa9372aeed' |
|
2020-01-31 15:19:23,252 2656 [DEBUG] - Running Get-ChocolateyWebFile -packageName 'vcredist140-x64' -fileFullPath 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\vcredist140-x64Install.exe' -url '' -url64bit 'https://download.visualstudio.microsoft.com/download/pr/3b070396-b7fb-4eee-aa8b-102a23c3e4f4/40EA2955391C9EAE3E35619C4C24B5AAF3D17AEAA6D09424EE9672AA9372AEED/VC_redist.x64.exe' -checksum '' -checksumType '' -checksum64 '40ea2955391c9eae3e35619c4c24b5aaf3d17aeaa6d09424ee9672aa9372aeed' -checksumType64 'sha256' -options 'System.Collections.Hashtable' -getOriginalFileName 'True' |
|
2020-01-31 15:19:23,252 2656 [DEBUG] - Running Get-ProcessorBits -compare '64' |
|
2020-01-31 15:19:23,268 2656 [DEBUG] - CPU is 64 bit |
|
2020-01-31 15:19:23,268 2656 [DEBUG] - Setting url to 'https://download.visualstudio.microsoft.com/download/pr/3b070396-b7fb-4eee-aa8b-102a23c3e4f4/40EA2955391C9EAE3E35619C4C24B5AAF3D17AEAA6D09424EE9672AA9372AEED/VC_redist.x64.exe' and bitPackage to 64 |
|
2020-01-31 15:19:23,283 2656 [DEBUG] - Running Get-WebFileName -url 'https://download.visualstudio.microsoft.com/download/pr/3b070396-b7fb-4eee-aa8b-102a23c3e4f4/40EA2955391C9EAE3E35619C4C24B5AAF3D17AEAA6D09424EE9672AA9372AEED/VC_redist.x64.exe' -defaultName 'vcredist140-x64Install.exe' |
|
2020-01-31 15:19:23,299 2656 [DEBUG] - Using header 'Content-Disposition' to determine file name. |
|
2020-01-31 15:19:23,299 2656 [DEBUG] - File name determined from url is 'VC_redist.x64.exe' |
|
2020-01-31 15:19:23,315 2656 [DEBUG] - Running Get-WebHeaders -url 'https://download.visualstudio.microsoft.com/download/pr/3b070396-b7fb-4eee-aa8b-102a23c3e4f4/40EA2955391C9EAE3E35619C4C24B5AAF3D17AEAA6D09424EE9672AA9372AEED/VC_redist.x64.exe' -ErrorAction 'Stop' |
|
2020-01-31 15:19:23,330 2656 [DEBUG] - Setting the UserAgent to 'chocolatey command line' |
|
2020-01-31 15:19:23,330 2656 [DEBUG] - Request Headers: |
|
2020-01-31 15:19:23,330 2656 [DEBUG] - 'Accept':'*/*' |
|
2020-01-31 15:19:23,330 2656 [DEBUG] - 'User-Agent':'chocolatey command line' |
|
2020-01-31 15:19:23,377 2656 [DEBUG] - Response Headers: |
|
2020-01-31 15:19:23,393 2656 [DEBUG] - 'Access-Control-Allow-Origin':'https://www.visualstudio.com' |
|
2020-01-31 15:19:23,393 2656 [DEBUG] - 'Age':'43006' |
|
2020-01-31 15:19:23,393 2656 [DEBUG] - 'Content-Disposition':'attachment; filename=VC_redist.x64.exe' |
|
2020-01-31 15:19:23,393 2656 [DEBUG] - 'X-Cache':'HIT' |
|
2020-01-31 15:19:23,408 2656 [DEBUG] - 'Accept-Ranges':'bytes' |
|
2020-01-31 15:19:23,408 2656 [DEBUG] - 'Content-Length':'15060496' |
|
2020-01-31 15:19:23,408 2656 [DEBUG] - 'Cache-Control':'max-age=86400' |
|
2020-01-31 15:19:23,424 2656 [DEBUG] - 'Content-Type':'application/octet-stream' |
|
2020-01-31 15:19:23,424 2656 [DEBUG] - 'Date':'Fri, 31 Jan 2020 15:19:52 GMT' |
|
2020-01-31 15:19:23,424 2656 [DEBUG] - 'Expires':'Sat, 01 Feb 2020 15:19:52 GMT' |
|
2020-01-31 15:19:23,424 2656 [DEBUG] - 'ETag':'"c4931574477ad51:0"' |
|
2020-01-31 15:19:23,440 2656 [DEBUG] - 'Last-Modified':'Fri, 04 Oct 2019 00:05:38 GMT' |
|
2020-01-31 15:19:23,440 2656 [DEBUG] - 'Server':'ECAcc (seb/5F7D)' |
|
2020-01-31 15:19:23,455 2656 [DEBUG] - 'X-Powered-By':'ASP.NET' |
|
2020-01-31 15:19:23,455 2656 [INFO ] - Downloading vcredist140-x64 64 bit |
|
from 'https://download.visualstudio.microsoft.com/download/pr/3b070396-b7fb-4eee-aa8b-102a23c3e4f4/40EA2955391C9EAE3E35619C4C24B5AAF3D17AEAA6D09424EE9672AA9372AEED/VC_redist.x64.exe' |
|
2020-01-31 15:19:23,455 2656 [INFO ] - |
|
2020-01-31 15:19:23,471 2656 [DEBUG] - Running Get-WebFile -url 'https://download.visualstudio.microsoft.com/download/pr/3b070396-b7fb-4eee-aa8b-102a23c3e4f4/40EA2955391C9EAE3E35619C4C24B5AAF3D17AEAA6D09424EE9672AA9372AEED/VC_redist.x64.exe' -fileName 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\VC_redist.x64.exe' -options 'System.Collections.Hashtable' |
|
2020-01-31 15:19:23,471 2656 [DEBUG] - Setting request timeout to 30000 |
|
2020-01-31 15:19:23,487 2656 [DEBUG] - Setting read/write timeout to 2700000 |
|
2020-01-31 15:19:23,487 2656 [DEBUG] - Setting the UserAgent to 'chocolatey command line' |
|
2020-01-31 15:19:24,924 2656 [INFO ] - |
|
2020-01-31 15:19:24,924 2656 [INFO ] - Download of VC_redist.x64.exe (14.36 MB) completed. |
|
2020-01-31 15:19:24,924 2656 [INFO ] - |
|
2020-01-31 15:19:28,096 2656 [DEBUG] - No runtime virus checking built into FOSS Chocolatey. Check out Pro/Business - https://chocolatey.org/compare |
|
2020-01-31 15:19:28,096 2656 [DEBUG] - Verifying package provided checksum of '40ea2955391c9eae3e35619c4c24b5aaf3d17aeaa6d09424ee9672aa9372aeed' for 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\VC_redist.x64.exe'. |
|
2020-01-31 15:19:28,096 2656 [DEBUG] - Running Get-ChecksumValid -file 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\VC_redist.x64.exe' -checksum '40ea2955391c9eae3e35619c4c24b5aaf3d17aeaa6d09424ee9672aa9372aeed' -checksumType 'sha256' -originalUrl 'https://download.visualstudio.microsoft.com/download/pr/3b070396-b7fb-4eee-aa8b-102a23c3e4f4/40EA2955391C9EAE3E35619C4C24B5AAF3D17AEAA6D09424EE9672AA9372AEED/VC_redist.x64.exe' |
|
2020-01-31 15:19:28,112 2656 [DEBUG] - checksum.exe found at 'C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' |
|
2020-01-31 15:19:28,112 2656 [DEBUG] - Executing command ['C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' -c="40ea2955391c9eae3e35619c4c24b5aaf3d17aeaa6d09424ee9672aa9372aeed" -t="sha256" -f="C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\VC_redist.x64.exe"] |
|
2020-01-31 15:19:28,549 2656 [DEBUG] - Command ['C:\ProgramData\chocolatey\helpers\..\tools\checksum.exe' -c="40ea2955391c9eae3e35619c4c24b5aaf3d17aeaa6d09424ee9672aa9372aeed" -t="sha256" -f="C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\VC_redist.x64.exe"] exited with '0'. |
|
2020-01-31 15:19:28,565 2656 [DEBUG] - Running Install-ChocolateyInstallPackage -packageName 'vcredist140-x64' -fileType 'exe' -silentArgs '/quiet /norestart' -file 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\VC_redist.x64.exe' -validExitCodes '0 1638 3010' -useOnlyPackageSilentArguments 'False' |
|
2020-01-31 15:19:28,565 2656 [DEBUG] - Running Get-ProcessorBits -compare '32' |
|
2020-01-31 15:19:28,580 2656 [INFO ] - Installing vcredist140-x64... |
|
2020-01-31 15:19:28,580 2656 [INFO ] - |
|
2020-01-31 15:19:28,596 2656 [DEBUG] - Running Start-ChocolateyProcessAsAdmin -validExitCodes '0 1638 3010' -workingDirectory 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4' -statements '/quiet /norestart ' -exeToRun 'C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\VC_redist.x64.exe' |
|
2020-01-31 15:19:28,612 2656 [DEBUG] - Unable to use current location for Working Directory. Using Cache Location instead. |
|
2020-01-31 15:19:28,612 2656 [DEBUG] - Test-ProcessAdminRights: returning True |
|
2020-01-31 15:19:28,612 2656 [DEBUG] - Elevating permissions and running ["C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\VC_redist.x64.exe" /quiet /norestart ]. This may take a while, depending on the statements. |
|
2020-01-31 15:19:34,236 2656 [DEBUG] - Command ["C:\Users\Administrator\AppData\Local\Temp\chocolatey\vcredist140\14.24.28127.4\VC_redist.x64.exe" /quiet /norestart ] exited with '0'. |
|
2020-01-31 15:19:34,252 2656 [DEBUG] - Finishing 'Start-ChocolateyProcessAsAdmin' |
|
2020-01-31 15:19:34,252 2656 [INFO ] - vcredist140-x64 has been installed. |
|
2020-01-31 15:19:34,252 2656 [INFO ] - |
|
2020-01-31 15:19:34,268 2656 [DEBUG] - ---------------------------------------------------------------------- |
|
2020-01-31 15:19:34,268 2656 [DEBUG] - 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\vcredist140\tools\chocolateyInstall.ps1' -installArguments '' -packageParameters '''] exited with '0'. |
|
2020-01-31 15:19:34,268 2656 [DEBUG] - Calling command ['"C:\Windows\System32\shutdown.exe" /a'] |
|
2020-01-31 15:19:34,315 2656 [DEBUG] - Command ['"C:\Windows\System32\shutdown.exe" /a'] exited with '1116' |
|
2020-01-31 15:19:34,315 2656 [INFO ] - vcredist140 may be able to be automatically uninstalled. |
|
2020-01-31 15:19:34,330 2656 [DEBUG] - Capturing package files in 'C:\ProgramData\chocolatey\lib\vcredist140' |
|
2020-01-31 15:19:34,330 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\vcredist140\vcredist140.nupkg' |
|
with checksum '0B33C0D53DEC339E08A3E824DF8FE3AE' |
|
2020-01-31 15:19:34,330 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\vcredist140\vcredist140.nuspec' |
|
with checksum 'DD3841E259E4650D5FB7F5B6E0128C1D' |
|
2020-01-31 15:19:34,346 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\vcredist140\tools\chocolateyInstall.ps1' |
|
with checksum 'A09076EA0C66633E37D23221F963DE6B' |
|
2020-01-31 15:19:34,346 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\vcredist140\tools\chocolateyUninstall.ps1' |
|
with checksum '0FFC57B43B4BD80ABCFD3A38D2AE4680' |
|
2020-01-31 15:19:34,346 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\vcredist140\tools\data.ps1' |
|
with checksum 'B554C6F6D2DA1162CB2FA7F006A30FD7' |
|
2020-01-31 15:19:34,361 2656 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\.chocolatey\vcredist140.14.24.28127.4". |
|
2020-01-31 15:19:34,580 2656 [DEBUG] - There was no original file at 'C:\ProgramData\chocolatey\.chocolatey\vcredist140.14.24.28127.4\.registry' |
|
2020-01-31 15:19:34,611 2656 [DEBUG] - There was no original file at 'C:\ProgramData\chocolatey\.chocolatey\vcredist140.14.24.28127.4\.files' |
|
2020-01-31 15:19:34,611 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\vcredist140.14.24.28127.4\.extra". |
|
2020-01-31 15:19:34,627 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\vcredist140.14.24.28127.4\.version". |
|
2020-01-31 15:19:34,627 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\vcredist140.14.24.28127.4\.sxs". |
|
2020-01-31 15:19:34,627 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\vcredist140.14.24.28127.4\.pin". |
|
2020-01-31 15:19:34,627 2656 [DEBUG] - Sending message 'HandlePackageResultCompletedMessage' out if there are subscribers... |
|
2020-01-31 15:19:34,643 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\vcredist140\.chocolateyPending". |
|
2020-01-31 15:19:34,643 2656 [INFO ] - The install of vcredist140 was successful. |
|
2020-01-31 15:19:34,643 2656 [INFO ] - Software installed as 'exe', install location is likely default. |
|
2020-01-31 15:19:34,643 2656 [INFO ] - [NuGet] Installing 'vcredist2015 14.0.24215.20170201'. |
|
2020-01-31 15:19:34,955 2656 [DEBUG] - [NuGet] Added file 'vcredist2015.nupkg' to folder 'vcredist2015'. |
|
2020-01-31 15:19:35,174 2656 [DEBUG] - [NuGet] Added file 'vcredist2015.nuspec' to folder 'vcredist2015'. |
|
2020-01-31 15:19:35,174 2656 [INFO ] - [NuGet] Successfully installed 'vcredist2015 14.0.24215.20170201'. |
|
2020-01-31 15:19:35,174 2656 [INFO ] - |
|
vcredist2015 v14.0.24215.20170201 (forced) [Approved] |
|
2020-01-31 15:19:35,190 2656 [INFO ] - vcredist2015 package files install completed. Performing other installation steps. |
|
2020-01-31 15:19:35,205 2656 [DEBUG] - Capturing package files in 'C:\ProgramData\chocolatey\lib\vcredist2015' |
|
2020-01-31 15:19:35,205 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\vcredist2015\vcredist2015.nupkg' |
|
with checksum '56321731BC0AEFCA3EE5E547A7A25D5E' |
|
2020-01-31 15:19:35,205 2656 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\vcredist2015\vcredist2015.nuspec' |
|
with checksum '99004B9EA9A710C5BE6A9F7C9D544B4D' |
|
2020-01-31 15:19:35,221 2656 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\.chocolatey\vcredist2015.14.0.24215.20170201". |
|
2020-01-31 15:19:35,221 2656 [DEBUG] - There was no original file at 'C:\ProgramData\chocolatey\.chocolatey\vcredist2015.14.0.24215.20170201\.files' |
|
2020-01-31 15:19:35,236 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\vcredist2015.14.0.24215.20170201\.extra". |
|
2020-01-31 15:19:35,236 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\vcredist2015.14.0.24215.20170201\.version". |
|
2020-01-31 15:19:35,236 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\vcredist2015.14.0.24215.20170201\.sxs". |
|
2020-01-31 15:19:35,252 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\vcredist2015.14.0.24215.20170201\.pin". |
|
2020-01-31 15:19:35,252 2656 [DEBUG] - Sending message 'HandlePackageResultCompletedMessage' out if there are subscribers... |
|
2020-01-31 15:19:35,268 2656 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\vcredist2015\.chocolateyPending". |
|
2020-01-31 15:19:35,268 2656 [INFO ] - The install of vcredist2015 was successful. |
|
2020-01-31 15:19:35,268 2656 [INFO ] - Software install location not explicitly set, could be in package or |
|
default install location if installer. |
|
2020-01-31 15:19:35,283 2656 [INFO ] - [NuGet] Installing 'vim-tux.install 8.2.0184'. |
|
2020-01-31 15:19:35,361 2656 [DEBUG] - [NuGet] Added file 'LICENSE.txt' to folder 'vim-tux.install\legal'. |
|
2020-01-31 15:19:35,378 2656 [DEBUG] - [NuGet] Added file 'VERIFICATION.txt' to folder 'vim-tux.install\legal'. |
|
2020-01-31 15:19:35,440 2656 [DEBUG] - [NuGet] Added file 'chocolateyinstall.ps1' to folder 'vim-tux.install\tools'. |
|
2020-01-31 15:19:35,440 2656 [DEBUG] - [NuGet] Added file 'chocolateyuninstall.ps1' to folder 'vim-tux.install\tools'. |
|
2020-01-31 15:19:36,877 2656 [DEBUG] - [NuGet] Added file 'complete-x64_x64.exe' to folder 'vim-tux.install\tools'. |
|
2020-01-31 15:19:38,331 2656 [DEBUG] - [NuGet] Added file 'complete-x86_x32.exe' to folder 'vim-tux.install\tools'. |
|
2020-01-31 15:19:38,346 2656 [DEBUG] - [NuGet] Added file 'patch.exe.manifest' to folder 'vim-tux.install\tools'. |
|
2020-01-31 15:19:42,612 2656 [DEBUG] - [NuGet] Added file 'vim-tux.install.nupkg' to folder 'vim-tux.install'. |
|
2020-01-31 15:19:42,830 2656 [DEBUG] - [NuGet] Added file 'vim-tux.install.nuspec' to folder 'vim-tux.install'. |
|
2020-01-31 15:19:42,846 2656 [INFO ] - [NuGet] Successfully installed 'vim-tux.install 8.2.0184'. |
|
2020-01-31 15:19:42,877 2656 [INFO ] - |
|
vim-tux.install v8.2.0184 (forced) |
|
2020-01-31 15:19:42,877 2656 [INFO ] - vim-tux.install package files install completed. Performing other installation steps. |
|
2020-01-31 15:19:42,893 2656 [DEBUG] - Setting installer args for vim-tux.install |
|
2020-01-31 15:19:42,893 2656 [DEBUG] - Setting package parameters for vim-tux.install |
|
2020-01-31 15:19:42,893 2656 [DEBUG] - Contents of 'C:\ProgramData\chocolatey\lib\vim-tux.install\tools\chocolateyinstall.ps1': |
|
2020-01-31 15:19:42,908 2656 [DEBUG] - $ErrorActionPreference = 'Stop' |
|
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" |
|
$destDir = Join-Path $ENV:ProgramFiles 'Vim\vim82' |
|
if ($Env:ChocolateyPackageParameters -match '/InstallDir:\s*(.+)') { |
|
$destDir = $Matches[1] |
|
$destDir = $destDir -replace '^[''"]|[''"]$' # Strip quotations. Necessary? |
|
$destDir = $destDir -replace '[\/]$' # Remove any slashes from end of line |
|
if (-not ($destDir.EndsWith('vim82'))) { $destDir = Join-Path $destDir 'vim82' } # installer will not run if it is not within folder vim82 |
|
} |
|
|
|
$pp = Get-PackageParameters |
|
|
|
# Optionally restart explorer before install |
|
if ($pp['RestartExplorer'] -eq 'true') { |
|
Write-Debug "Restarting Explorer" |
|
Get-Process explorer | Stop-Process -Force |
|
} |
|
|
|
# Create batch files in C:\Windows by default |
|
$createBatFiles = '-create-batfiles vim gvim evim view gview vimdiff gvimdiff' |
|
if ($pp['NoCreateBatFiles'] -eq 'true') { |
|
Write-Debug 'Not installing batch files' |
|
$createBatFiles = $null |
|
} |
|
|
|
# Do not install context menu entry by default |
|
$installPopUp = $null |
|
if ($pp['InstallPopUp'] -eq 'true') { |
|
Write-Debug 'Installing context menu entry' |
|
$installPopUp = '-install-popup' |
|
} |
|
|
|
$baseArgs = "-install-openwith -add-start-menu" |
|
$installArgs = $installPopUp, $createBatFiles, $baseArgs -ne $null -join ' ' |
|
|
|
$packageArgs = @{ |
|
packageName = 'vim-tux.install' |
|
filetype = 'exe' |
|
file = gi $toolsDir\*_x32.exe |
|
file64 = gi $toolsDir\*_x64.exe |
|
silentArgs = "-o`"$destDir`" -y" |
|
softwareName = 'vim*' |
|
} |
|
|
|
Install-ChocolateyPackage @packageArgs |
|
Move-Item "$toolsDir\patch.exe.manifest" $destDir -Force -ea 0 # Supplied manifest fixes useless UAC request |
|
(Get-Item $destdir\patch.exe).LastWriteTime = (Get-Date) # exe must be newer than manifest |
|
# Run vim's installer |
|
Start-ChocolateyProcessAsAdmin "$installArgs" "$destDir\install.exe" -validExitCodes '0' |
|
Remove-Item -Force -ea 0 "$toolsDir\*_x32.exe","$toolsDir\*_x64.exe" |
|
Write-Host 'Build provided by TuxProject.de - consider donating to help support their server costs.' |
|
|
|
2020-01-31 15:19:42,908 2656 [DEBUG] - 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\vim-tux.install\tools\chocolateyinstall.ps1' -installArguments '' -packageParameters '''] |
|
2020-01-31 15:19:42,908 2656 [DEBUG] - Redirecting Microsoft.PowerShell.Security, requested by '' |
|
2020-01-31 15:19:42,924 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=5.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 15:19:42,924 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=4.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 15:19:42,924 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=3.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 15:19:42,940 2656 [DEBUG] - Attempting to load assembly Microsoft.PowerShell.Security failed: |
|
Could not load file or assembly 'Microsoft.PowerShell.Security, Version=1.0.0.0' or one of its dependencies. The system cannot find the file specified. |
|
2020-01-31 15:19:43,112 2656 [DEBUG] - Host version is 4.0, PowerShell Version is '4.0' and CLR Version is '4.0.30319.33440'. |
|
2020-01-31 15:19:43,237 2656 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. |
|
2020-01-31 15:19:43,237 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. |
|
2020-01-31 15:19:43,237 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. |
|
2020-01-31 15:19:43,252 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. |
|
2020-01-31 15:19:43,252 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'. |
|
2020-01-31 15:19:43,252 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 15:19:43,268 2656 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. |
|
2020-01-31 15:19:43,268 2656 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. |
|
2020-01-31 15:19:43,268 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 15:19:43,268 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 15:19:43,283 2656 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. |
|
2020-01-31 15:19:43,283 2656 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. |
|
2020-01-31 15:19:43,283 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 15:19:43,299 2656 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. |
|
2020-01-31 15:19:43,299 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. |
|
2020-01-31 15:19:43,299 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. |
|
2020-01-31 15:19:43,315 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. |
|
2020-01-31 15:19:43,315 2656 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. |
|
2020-01-31 15:19:43,315 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 15:19:43,330 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 15:19:43,330 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 15:19:43,330 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 15:19:43,346 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 15:19:43,346 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. |
|
2020-01-31 15:19:43,346 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'. |
|
2020-01-31 15:19:43,361 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 15:19:43,361 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 15:19:43,361 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. |
|
2020-01-31 15:19:43,361 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 15:19:43,377 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 15:19:43,377 2656 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. |
|
2020-01-31 15:19:43,377 2656 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'. |
|
2020-01-31 15:19:43,393 2656 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. |
|
2020-01-31 15:19:43,393 2656 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 15:19:43,393 2656 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'. |
|
2020-01-31 15:19:43,408 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. |
|
2020-01-31 15:19:43,408 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 15:19:43,408 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 15:19:43,408 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 15:19:43,424 2656 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'. |
|
2020-01-31 15:19:43,424 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. |
|
2020-01-31 15:19:43,424 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. |
|
2020-01-31 15:19:43,440 2656 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. |
|
2020-01-31 15:19:43,440 2656 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 15:19:43,440 2656 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. |
|
2020-01-31 15:19:43,455 2656 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. |
|
2020-01-31 15:19:43,455 2656 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. |
|
2020-01-31 15:19:43,455 2656 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. |
|
2020-01-31 15:19:43,455 2656 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. |
|
2020-01-31 15:19:43,471 2656 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. |
|
2020-01-31 15:19:43,471 2656 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 15:19:43,471 2656 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. |
|
2020-01-31 15:19:43,486 2656 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. |
|
2020-01-31 15:19:43,486 2656 [DEBUG] - Loading community extensions |
|
2020-01-31 15:19:43,502 2656 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1' |
|
2020-01-31 15:19:43,502 2656 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1'. |
|
2020-01-31 15:19:43,815 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 15:19:43,830 2656 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. |
|
2020-01-31 15:19:43,830 2656 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. |
|
2020-01-31 15:19:43,830 2656 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. |
|
2020-01-31 15:19:43,846 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. |
|
2020-01-31 15:19:43,846 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 15:19:43,846 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. |
|
2020-01-31 15:19:43,861 2656 [INFO ] - VERBOSE: Exporting function 'Register-Application'. |
|
2020-01-31 15:19:43,861 2656 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. |
|
2020-01-31 15:19:43,861 2656 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. |
|
2020-01-31 15:19:43,877 2656 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. |
|
2020-01-31 15:19:43,877 2656 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. |
|
2020-01-31 15:19:43,877 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. |
|
2020-01-31 15:19:43,893 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'. |
|
2020-01-31 15:19:43,893 2656 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'. |
|
2020-01-31 15:19:43,893 2656 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. |
|
2020-01-31 15:19:43,893 2656 [INFO ] - VERBOSE: Importing function 'Register-Application'. |
|
2020-01-31 15:19:43,908 2656 [INFO ] - VERBOSE: Importing function 'Remove-Process'. |
|
2020-01-31 15:19:43,908 2656 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1' |
|
2020-01-31 15:19:43,908 2656 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1'. |
|
2020-01-31 15:19:43,940 2656 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. |
|
2020-01-31 15:19:43,940 2656 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. |
|
2020-01-31 15:19:43,955 2656 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. |
|
2020-01-31 15:19:43,955 2656 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. |
|
2020-01-31 15:19:43,971 2656 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. |
|
2020-01-31 15:19:43,971 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. |
|
2020-01-31 15:19:43,971 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. |
|
2020-01-31 15:19:43,986 2656 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. |
|
2020-01-31 15:19:43,986 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'. |
|
2020-01-31 15:19:44,002 2656 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 15:19:44,002 2656 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. |
|
2020-01-31 15:19:44,018 2656 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. |
|
2020-01-31 15:19:44,018 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. |
|
2020-01-31 15:19:44,018 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 15:19:44,033 2656 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. |
|
2020-01-31 15:19:44,033 2656 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. |
|
2020-01-31 15:19:44,033 2656 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. |
|
2020-01-31 15:19:44,049 2656 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. |
|
2020-01-31 15:19:44,049 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. |
|
2020-01-31 15:19:44,065 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. |
|
2020-01-31 15:19:44,065 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. |
|
2020-01-31 15:19:44,080 2656 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. |
|
2020-01-31 15:19:44,080 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 15:19:44,080 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 15:19:44,096 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 15:19:44,096 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 15:19:44,112 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 15:19:44,112 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. |
|
2020-01-31 15:19:44,128 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'. |
|
2020-01-31 15:19:44,128 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 15:19:44,128 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 15:19:44,143 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. |
|
2020-01-31 15:19:44,143 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 15:19:44,158 2656 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 15:19:44,158 2656 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. |
|
2020-01-31 15:19:44,158 2656 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'. |
|
2020-01-31 15:19:44,158 2656 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. |
|
2020-01-31 15:19:44,174 2656 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 15:19:44,174 2656 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'. |
|
2020-01-31 15:19:44,174 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. |
|
2020-01-31 15:19:44,190 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 15:19:44,190 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 15:19:44,190 2656 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 15:19:44,205 2656 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'. |
|
2020-01-31 15:19:44,205 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. |
|
2020-01-31 15:19:44,205 2656 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. |
|
2020-01-31 15:19:44,221 2656 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. |
|
2020-01-31 15:19:44,221 2656 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. |
|
2020-01-31 15:19:44,221 2656 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. |
|
2020-01-31 15:19:44,236 2656 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. |
|
2020-01-31 15:19:44,236 2656 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. |
|
2020-01-31 15:19:44,236 2656 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. |
|
2020-01-31 15:19:44,236 2656 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. |
|
2020-01-31 15:19:44,252 2656 [INFO ] - VERBOSE: Exporting function 'Register-Application'. |
|
2020-01-31 15:19:44,252 2656 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. |
|
2020-01-31 15:19:44,252 2656 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. |
|
2020-01-31 15:19:44,268 2656 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. |
|
2020-01-31 15:19:44,268 2656 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. |
|
2020-01-31 15:19:44,268 2656 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. |
|
2020-01-31 15:19:44,283 2656 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. |
|
2020-01-31 15:19:44,283 2656 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. |
|
2020-01-31 15:19:44,283 2656 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. |
|
2020-01-31 15:19:44,299 2656 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. |
|
2020-01-31 15:19:44,299 2656 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. |
|
2020-01-31 15:19:44,299 2656 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. |
|
2020-01-31 15:19:44,315 2656 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. |
|
2020-01-31 15:19:44,315 2656 [INFO ] - VERBOSE: Importing function 'Format-FileSize'. |
|
2020-01-31 15:19:44,315 2656 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. |
|
2020-01-31 15:19:44,330 2656 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. |
|
2020-01-31 15:19:44,330 2656 [INFO ] - VERBOSE: Importing function 'Get-ChecksumValid'. |
|
2020-01-31 15:19:44,330 2656 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyUnzip'. |
|
2020-01-31 15:19:44,346 2656 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyWebFile'. |
|
2020-01-31 15:19:44,346 2656 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. |
|
2020-01-31 15:19:44,346 2656 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariable'. |
|
2020-01-31 15:19:44,361 2656 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariableNames'. |
|
2020-01-31 15:19:44,361 2656 [INFO ] - VERBOSE: Importing function 'Get-FtpFile'. |
|
2020-01-31 15:19:44,361 2656 [INFO ] - VERBOSE: Importing function 'Get-OSArchitectureWidth'. |
|
2020-01-31 15:19:44,377 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. |
|
2020-01-31 15:19:44,377 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'. |
|
2020-01-31 15:19:44,377 2656 [INFO ] - VERBOSE: Importing function 'Get-PackageParametersBuiltIn'. |
|
2020-01-31 15:19:44,393 2656 [INFO ] - VERBOSE: Importing function 'Get-ToolsLocation'. |
|
2020-01-31 15:19:44,393 2656 [INFO ] - VERBOSE: Importing function 'Get-UACEnabled'. |
|
2020-01-31 15:19:44,393 2656 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'. |
|
2020-01-31 15:19:44,408 2656 [INFO ] - VERBOSE: Importing function 'Get-VirusCheckValid'. |
|
2020-01-31 15:19:44,408 2656 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. |
|
2020-01-31 15:19:44,408 2656 [INFO ] - VERBOSE: Importing function 'Get-WebFile'. |
|
2020-01-31 15:19:44,424 2656 [INFO ] - VERBOSE: Importing function 'Get-WebFileName'. |
|
2020-01-31 15:19:44,424 2656 [INFO ] - VERBOSE: Importing function 'Get-WebHeaders'. |
|
2020-01-31 15:19:44,424 2656 [INFO ] - VERBOSE: Importing function 'Install-BinFile'. |
|
2020-01-31 15:19:44,440 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyDesktopLink'. |
|
2020-01-31 15:19:44,440 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyEnvironmentVariable'. |
|
2020-01-31 15:19:44,440 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyExplorerMenuItem'. |
|
2020-01-31 15:19:44,455 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyFileAssociation'. |
|
2020-01-31 15:19:44,455 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyInstallPackage'. |
|
2020-01-31 15:19:44,455 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPackage'. |
|
2020-01-31 15:19:44,471 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPath'. |
|
2020-01-31 15:19:44,471 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPinnedTaskBarItem'. |
|
2020-01-31 15:19:44,471 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPowershellCommand'. |
|
2020-01-31 15:19:44,471 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyShortcut'. |
|
2020-01-31 15:19:44,486 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyVsixPackage'. |
|
2020-01-31 15:19:44,486 2656 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyZipPackage'. |
|
2020-01-31 15:19:44,502 2656 [INFO ] - VERBOSE: Importing function 'Install-Vsix'. |
|
2020-01-31 15:19:44,502 2656 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. |
|
2020-01-31 15:19:44,502 2656 [INFO ] - VERBOSE: Importing function 'Register-Application'. |
|
2020-01-31 15:19:44,518 2656 [INFO ] - VERBOSE: Importing function 'Remove-Process'. |
|
2020-01-31 15:19:44,518 2656 [INFO ] - VERBOSE: Importing function 'Set-EnvironmentVariable'. |
|
2020-01-31 15:19:44,518 2656 [INFO ] - VERBOSE: Importing function 'Set-PowerShellExitCode'. |
|
2020-01-31 15:19:44,533 2656 [INFO ] - VERBOSE: Importing function 'Start-ChocolateyProcessAsAdmin'. |
|
2020-01-31 15:19:44,533 2656 [INFO ] - VERBOSE: Importing function 'Test-ProcessAdminRights'. |
|
2020-01-31 15:19:44,533 2656 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. |
|
2020-01-31 15:19:44,549 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-BinFile'. |
|
2020-01-31 15:19:44,549 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyEnvironmentVariable'. |
|
2020-01-31 15:19:44,549 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyPackage'. |
|
2020-01-31 15:19:44,565 2656 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyZipPackage'. |
|
2020-01-31 15:19:44,565 2656 [INFO ] - VERBOSE: Importing function 'Update-SessionEnvironment'. |
|
2020-01-31 15:19:44,565 2656 [INFO ] - VERBOSE: Importing function 'Write-ChocolateyFailure'. |
|
2020-01-31 15:19:44,580 2656 [INFO ] - VER |