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