2020-10-29 15:57:15 -04:00
|
|
|
$packageName = 'vcarve-pro-trial-10.5'
|
2020-02-26 20:43:11 -05:00
|
|
|
$installerType = 'exe'
|
|
|
|
$silentArgs = '/S'
|
2020-09-13 18:28:32 -04:00
|
|
|
$url64 = '\\ucs\software\VCarveProTrialEditionV10505_Setup.exe'
|
|
|
|
$checksum64 = '28491b876f541c4c0f3dc9056139820ec43ba4e703f0cf2bd575d059a946a84f'
|
2020-02-26 20:43:11 -05:00
|
|
|
$checksumType64 = 'sha256'
|
|
|
|
$validExitCodes = @(0,1223)
|
|
|
|
Install-ChocolateyPackage -PackageName $packageName `
|
|
|
|
-FileType $installerType `
|
|
|
|
-SilentArgs $silentArgs `
|
|
|
|
-Url64bit $url64 `
|
|
|
|
-ValidExitCodes $validExitCodes `
|
|
|
|
-Checksum64 $checksum64 `
|
|
|
|
-ChecksumType64 $checksumType64
|