12 lines
376 B
PowerShell
12 lines
376 B
PowerShell
$packageArgs = @{
|
|
packageName = $env:ChocolateyPackageName
|
|
FileType = 'exe'
|
|
SilentArgs = '/S'
|
|
Url64 = '\\ucs\software\VCarveProTrialEdition_SetupV10.5.0.8.exe'
|
|
Checksum64 = 'a143a2eeed327e6f062e4261cd2c44c1932238bc4bc95619a684ccbc32222ab8'
|
|
ChecksumType64 = 'sha256'
|
|
ValidExitCodes = @(0, 1223)
|
|
}
|
|
|
|
Install-ChocolateyPackage @packageArgs
|