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

12 lines
385 B
PowerShell
Raw Normal View History

2024-04-28 11:14:29 -04:00
$packageArgs = @{
packageName = $env:ChocolateyPackageName
FileType = 'exe'
SilentArgs = '/S'
2024-10-16 15:03:10 -04:00
File64 = '\\ucs\software\VCarveProMakerspaceEditionV12010_Setup.exe'
Checksum64 = '666a27e4473eb1b1148daf1b65b893a82aeb61f182b00a0786629ed1604e8d2e'
2024-04-28 11:14:29 -04:00
ChecksumType64 = 'sha256'
ValidExitCodes = @(0, 1223)
}
Install-ChocolateyInstallPackage @packageArgs