chocolatey/packages/joplin/tools/chocolateyinstall.ps1

33 lines
1.4 KiB
PowerShell
Executable File

# Joplin Notes and To-Do
# 2018 foo.li systeme + software
$packageName = 'joplin'
$packageSearch = 'Joplin*'
$installerType = 'exe'
$silentArgs = '/ALLUSERS=1 /S'
$version = '0.10.60'
$url = 'https://github.com/laurent22/joplin/releases/download/v' + $version + '/Joplin-Setup-' + $version + '.exe'
$url64 = $url
$checksum = 'A963E498EAEE0FF80E45D0BEA668E806F4177DEE'
$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 $(
'Joplin ' + $version + ' or greater is already installed. ' +
'No need to download and install again. Otherwise uninstall first.'
)
} else {
Install-ChocolateyPackage $packageName $installerType $silentArgs $url $url64 `
-checksum $checksum -checksumType $checksumType `
-checksum64 $checksum64 -checksumType64 $checksumType64
}
} catch {
throw $_.Exception
}