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