chocolatey-packages/vcarve-pro-trial-11.0/tools/chocolateyInstall.ps1

14 lines
446 B
PowerShell

$toolsDir = Split-Path -Parent $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = $env:ChocolateyPackageName
FileType = 'exe'
SilentArgs = '/S'
File64 = Join-Path $toolsDir 'VCarveProTrialEdition_Setup.exe'
Checksum64 = '1088a6b21d6df5edecc7ac2a67b3866be5faf3c600c561404ebfe448a16bbc31'
ChecksumType64 = 'sha256'
ValidExitCodes = @(0, 1223)
}
Install-ChocolateyInstallPackage @packageArgs