chocolatey-packages/vcarve-pro-makerspace-12.0/tools/chocolateyInstall.ps1
Adam Goldsmith 3a7dcee588
All checks were successful
/ Build-Chocolatey-Packages (push) Successful in 1m58s
Add vcarve pro makerspace edition v12
2024-04-28 11:14:29 -04:00

12 lines
385 B
PowerShell

$packageArgs = @{
packageName = $env:ChocolateyPackageName
FileType = 'exe'
SilentArgs = '/S'
File64 = '\\ucs\software\VCarveProMakerspaceEditionV12004_Setup.exe'
Checksum64 = 'f590a7a77cb592ef2c0d47a1162179e066c288c3e93e5be81a0a4f5c0ef7f25f'
ChecksumType64 = 'sha256'
ValidExitCodes = @(0, 1223)
}
Install-ChocolateyInstallPackage @packageArgs