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

12 lines
374 B
PowerShell
Raw Permalink Normal View History

2024-07-15 19:01:59 -04:00
$packageArgs = @{
packageName = $env:ChocolateyPackageName
FileType = 'exe'
SilentArgs = '/S'
2024-10-16 15:05:44 -04:00
File64 = '\\ucs\software\VCarveProTrialEdition_Setup.exe'
Checksum64 = '68c3196ff64df42929a5b237d939cc0f45fad7c5c9c1d28c77b8a89a622298cb'
2024-07-15 19:01:59 -04:00
ChecksumType64 = 'sha256'
ValidExitCodes = @(0, 1223)
}
Install-ChocolateyInstallPackage @packageArgs