Adam Goldsmith
da4340e76c
All checks were successful
/ Build-Chocolatey-Packages (push) Successful in 1m8s
12 lines
380 B
PowerShell
12 lines
380 B
PowerShell
$packageArgs = @{
|
|
packageName = $env:ChocolateyPackageName
|
|
FileType = 'exe'
|
|
SilentArgs = '/S'
|
|
File64 = '\\ucs\software\VCarveProTrialEditionV12007_Setup.exe'
|
|
Checksum64 = '2cb9f3d08699c425daa41d7441fc01272179885b16b4634d71195011a9d6bc0c'
|
|
ChecksumType64 = 'sha256'
|
|
ValidExitCodes = @(0, 1223)
|
|
}
|
|
|
|
Install-ChocolateyInstallPackage @packageArgs
|