Joplin (note/to-do application, evernote alternative)
This commit is contained in:
33
packages/joplin/tools/chocolateyinstall.ps1
Executable file
33
packages/joplin/tools/chocolateyinstall.ps1
Executable file
@ -0,0 +1,33 @@
|
||||
# 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
|
||||
}
|
7
packages/joplin/tools/chocolateyuninstall.ps1
Executable file
7
packages/joplin/tools/chocolateyuninstall.ps1
Executable file
@ -0,0 +1,7 @@
|
||||
#Joplin uninstaller
|
||||
|
||||
if (Test-Path "$env:ProgramFiles\Joplin\Uninstall Joplin.exe") {
|
||||
& "$env:ProgramFiles\Joplin\Uninstall Joplin.exe" /S
|
||||
} else {
|
||||
Write-Host 'could not detect Joplin'
|
||||
}
|
Reference in New Issue
Block a user