chocolatey/packages/kopano-ads-nightly/tools/chocolateyinstall.ps1

37 lines
1.6 KiB
PowerShell
Executable File

# Kopano ADS (mmc extension)
# 2017,2018 foo.li systeme + software
# https://www.gnu.org/licenses/gpl.txt
$packageName = 'kopano-ads-nightly'
$packageSearch = 'Kopano ADS'
$installerType = 'msi'
$silentArgs = '/qb'
$version = '1.1.88'
$intversion = '1.1-88'
$url = 'https://download.kopano.io/community/adextension:/KopanoADS-' + $intversion + '-32bit.msi'
$url64 = 'https://download.kopano.io/community/adextension:/KopanoADS-' + $intversion + '-64bit.msi'
$checksum = '6BE75CB1CC8D1C154C35BF9CF27574FB001659EF'
$checksumType = 'sha1'
$checksum64 = '57CE90DCCEB314F76535083C9CF8D268EC4451EA'
$checksumType64 = $checksumType
try {
$app = Get-ItemProperty -Path @('HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*') `
-ErrorAction:SilentlyContinue | Where-Object { $_.DisplayName -like $packageSearch }
if ($app -and ([version]$app.DisplayVersion -ge [version]$version)) {
Write-Output $(
'Kopano ADS ' + $version + ' or greater is already installed. ' +
'No need to download and install again. Otherwise uninstall first.'
)
} else {
if (Get-Process 'mmc' -ea SilentlyContinue) { Stop-Process -processname 'mmc' -Force -ea SilentlyContinue }
Install-ChocolateyPackage $packageName $installerType $silentArgs $url $url64 `
-checksum $checksum -checksumType $checksumType `
-checksum64 $checksum64 -checksumType64 $checksumType64
}
} catch {
throw $_.Exception
}