chocolatey-packages/shopbot/tools/chocolateyInstall.ps1

23 lines
767 B
PowerShell
Raw Normal View History

$basePackageArgs = @{
PackageName = 'shopbot'
FileType = 'exe'
SilentArgs = '/verysilent /suppressmsgboxes /norestart /sp-'
Url64 = '\\ucs\software\Setup_Shopbot3_8_50.exe'
Checksum64 = '40ceb163b1cb6395bd4704db1da5359b20ee769ddb413609e4608d780db44c33'
ChecksumType64 = 'sha256'
ValidExitCodes = @(0, 1223)
}
$driverPackageArgs = @{
PackageName = 'shopbot-driver'
FileType = 'exe'
File64 = 'C:\Program Files (x86)\ShopBot\ShopBot 3\Drivers\ShopBotControllerV201\Sb_Controller_Drivers.exe'
Checksum64 = 'a244f6fb77ac40d1ee5c6988a3b74bcf55345de871684684ab7f4f54e2a20f7b'
ChecksumType64 = 'sha256'
}
Install-ChocolateyPackage @basePackageArgs
Install-ChocolateyInstallPackage @driverPackageArgs