15 lines
660 B
PowerShell
15 lines
660 B
PowerShell
$packageName = 'vcarve-pro-makerspace'
|
|
$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
|