Adam Goldsmith
bd33612803
these can be installed in parallel, and are therefore essentially separate programs
15 lines
655 B
PowerShell
15 lines
655 B
PowerShell
$packageName = 'vcarve-pro-trial-10.5'
|
|
$installerType = 'exe'
|
|
$silentArgs = '/S'
|
|
$url64 = '\\ucs\software\VCarveProTrialEditionV10505_Setup.exe'
|
|
$checksum64 = '28491b876f541c4c0f3dc9056139820ec43ba4e703f0cf2bd575d059a946a84f'
|
|
$checksumType64 = 'sha256'
|
|
$validExitCodes = @(0,1223)
|
|
Install-ChocolateyPackage -PackageName $packageName `
|
|
-FileType $installerType `
|
|
-SilentArgs $silentArgs `
|
|
-Url64bit $url64 `
|
|
-ValidExitCodes $validExitCodes `
|
|
-Checksum64 $checksum64 `
|
|
-ChecksumType64 $checksumType64
|