Joplin (note/to-do application, evernote alternative)

This commit is contained in:
2018-02-08 14:48:36 +01:00
parent 4e03874171
commit bcdd5e2114
4 changed files with 60 additions and 0 deletions

View 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'
}