15 lines
650 B
PowerShell
15 lines
650 B
PowerShell
|
$packageName = 'vcarve-pro-trial'
|
||
|
$installerType = 'exe'
|
||
|
$silentArgs = '/S'
|
||
|
$url64 = '\\ucs\software\VCarveProTrialEditionV10016_Setup.exe'
|
||
|
$checksum64 = 'bcd6ea9887577c310299a06d2e2f391fd0f1a8e764c53c40a764bb92f1215b3e'
|
||
|
$checksumType64 = 'sha256'
|
||
|
$validExitCodes = @(0,1223)
|
||
|
Install-ChocolateyPackage -PackageName $packageName `
|
||
|
-FileType $installerType `
|
||
|
-SilentArgs $silentArgs `
|
||
|
-Url64bit $url64 `
|
||
|
-ValidExitCodes $validExitCodes `
|
||
|
-Checksum64 $checksum64 `
|
||
|
-ChecksumType64 $checksumType64
|