37 lines
1.4 KiB
PowerShell
Executable File
37 lines
1.4 KiB
PowerShell
Executable File
# Kopano ADS (mmc extension)
|
|
# 2017 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.78'
|
|
$intversion = '1.1-78'
|
|
$url = 'https://download.kopano.io/community/adextension:/KopanoADS-' + $intversion + '-noarch.msi'
|
|
$url64 = $url
|
|
$checksum = '12A3A42CD3FD27607A101FA44682790462811377'
|
|
$checksumType = 'sha1'
|
|
$checksum64 = $checksum
|
|
$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
|
|
}
|