Update install-utilities.ps1

Don't check checksums for GoogleChrome choco package
This commit is contained in:
Chris Long
2021-01-20 14:23:44 -08:00
committed by GitHub
parent ab9dd9487c
commit 6c5cd3e137

View File

@@ -15,6 +15,9 @@ If ($(hostname) -eq "win10") {
& "C:\Program Files\Classic Shell\ClassicStartMenu.exe" "-xml" "c:\vagrant\resources\windows\MenuSettings.xml"
regedit /s c:\vagrant\resources\windows\MenuStyle_Default_Win7.reg
}
choco install -y --limit-output --no-progress NotepadPlusPlus GoogleChrome WinRar
choco install -y --limit-output --no-progress NotepadPlusPlus WinRar
# The checksums for the GoogleChrome package are frequently out of date and cause the script to fail
choco install -y --limit-output --no-progress GoogleChrome
Write-Host "$('[{0:HH:mm}]' -f (Get-Date)) Utilties installation complete!"