15 lines
542 B
PowerShell
Executable File
15 lines
542 B
PowerShell
Executable File
# Joplin Notes and To-Do
|
|
# 2018 foo.li systeme + software
|
|
|
|
$packageName = 'joplin'
|
|
$packageSearch = 'Joplin*'
|
|
$installerType = 'exe'
|
|
$silentArgs = '/ALLUSERS=1 /S'
|
|
$version = '1.0.107'
|
|
$url = 'https://github.com/laurent22/joplin/releases/download/v' + $version + '/Joplin-Setup-' + $version + '.exe'
|
|
$checksum = '9E98114C335FEC4C8DFAD29228BC4E0E308DA212'
|
|
$checksumType = 'sha1'
|
|
|
|
Install-ChocolateyPackage $packageName $installerType $silentArgs $url `
|
|
-checksum $checksum -checksumType $checksumType
|