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