Adam Goldsmith
91c8a4d61b
All checks were successful
/ Build-Chocolatey-Packages (push) Successful in 1m35s
12 lines
374 B
PowerShell
12 lines
374 B
PowerShell
$packageArgs = @{
|
|
packageName = $env:ChocolateyPackageName
|
|
FileType = 'exe'
|
|
SilentArgs = '/S'
|
|
File64 = '\\ucs\software\VCarveProTrialEdition_Setup.exe'
|
|
Checksum64 = '68c3196ff64df42929a5b237d939cc0f45fad7c5c9c1d28c77b8a89a622298cb'
|
|
ChecksumType64 = 'sha256'
|
|
ValidExitCodes = @(0, 1223)
|
|
}
|
|
|
|
Install-ChocolateyInstallPackage @packageArgs
|