15 lines
646 B
PowerShell
15 lines
646 B
PowerShell
|
$packageName = 'chitubox'
|
||
|
$installerType = 'exe'
|
||
|
$silentArgs = '/S'
|
||
|
$url64 = '\\ucs\software\CHITUBOX64Install_1.6.1.exe'
|
||
|
$checksum64 = 'd399dcc7f44f3a34a878a93e1ca6f9c4fefe845a46a743c49e1353efda5cc16b'
|
||
|
$checksumType64 = 'sha256'
|
||
|
$validExitCodes = @(0,1223)
|
||
|
Install-ChocolateyPackage -PackageName $packageName `
|
||
|
-FileType $installerType `
|
||
|
-SilentArgs $silentArgs `
|
||
|
-Url64bit $url64 `
|
||
|
-ValidExitCodes $validExitCodes `
|
||
|
-Checksum64 $checksum64 `
|
||
|
-ChecksumType64 $checksumType64
|