2024-12-12 16:03:24 -05:00
|
|
|
|
$ErrorActionPreference = 'Stop';
|
2020-03-09 10:22:27 -04:00
|
|
|
|
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
|
2024-12-12 16:03:24 -05:00
|
|
|
|
|
2020-03-09 10:22:27 -04:00
|
|
|
|
|
|
|
|
|
$packageArgs = @{
|
|
|
|
|
packageName = $env:ChocolateyPackageName
|
|
|
|
|
unzipLocation = $toolsDir
|
2020-03-10 11:49:09 -04:00
|
|
|
|
fileType = 'EXE'
|
2024-12-12 16:03:24 -05:00
|
|
|
|
File = '\\ucs\software\CricutDesignSpace-Install-v8.60.67.exe'
|
2020-03-09 10:22:27 -04:00
|
|
|
|
|
2020-03-10 11:49:09 -04:00
|
|
|
|
softwareName = 'cricutdesignspace*'
|
2020-03-09 10:22:27 -04:00
|
|
|
|
|
2024-12-12 16:03:24 -05:00
|
|
|
|
checksum = '78b04935a1be4cef0e9f690a75b53c86c5783d8491760a5dada709544cf25d0c'
|
2020-03-10 11:49:09 -04:00
|
|
|
|
checksumType = 'sha256'
|
|
|
|
|
|
|
|
|
|
silentArgs = '/S'
|
|
|
|
|
validExitCodes= @(0)
|
2020-03-09 10:22:27 -04:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-10 11:49:09 -04:00
|
|
|
|
Install-ChocolateyPackage @packageArgs
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-03-09 10:22:27 -04:00
|
|
|
|
|
2020-03-10 11:49:09 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|