2022-07-20 15:08:00 -04:00
|
|
|
$toolsDir = Split-Path -Parent $MyInvocation.MyCommand.Definition
|
|
|
|
|
2021-08-04 19:07:30 -04:00
|
|
|
$packageArgs = @{
|
|
|
|
packageName = $env:ChocolateyPackageName
|
|
|
|
FileType = 'exe'
|
|
|
|
SilentArgs = '/S'
|
2022-07-20 15:08:00 -04:00
|
|
|
File64 = Join-Path $toolsDir 'VCarveProMakerspaceEditionV11008_Setup.exe'
|
|
|
|
Checksum64 = '8f7476e8f68f00d07335ffef4369f3dce827ceb236ace1f8211137fb9542ba99'
|
2021-08-04 19:07:30 -04:00
|
|
|
ChecksumType64 = 'sha256'
|
|
|
|
ValidExitCodes = @(0, 1223)
|
|
|
|
}
|
|
|
|
|
2022-07-20 15:08:00 -04:00
|
|
|
Install-ChocolateyInstallPackage @packageArgs
|