You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
454 B
PowerShell

$ErrorActionPreference = 'Stop';
$url = 'https://github.com/bitwarden/clients/releases/download/desktop-v__version__/Bitwarden-Installer-__version__.exe'
$checksum = '__checksum__'
$packageArgs = @{
packageName = 'bitwarden'
fileType = 'EXE'
softwareName = 'Bitwarden'
url = $url
checksum = $checksum
checksumType = 'sha256'
silentArgs = '/S'
validExitCodes= @(0)
}
Install-ChocolateyPackage @packageArgs