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