From 2a624ff1daa841601aebca86c0196039da6978b3 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 16 Sep 2015 14:21:04 +0200 Subject: [PATCH] Fix windows uninstall does not remove start menu shortcuts YAZ-860 --- win/yaz.nsi | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/win/yaz.nsi b/win/yaz.nsi index a01dcdd..eaf68d8 100644 --- a/win/yaz.nsi +++ b/win/yaz.nsi @@ -33,6 +33,8 @@ InstallDir "$PROGRAMFILES\YAZ" !endif +RequestExecutionLevel admin + SetCompressor bzip2 Name "YAZ" @@ -196,12 +198,11 @@ SectionEnd UninstallText "This will uninstall YAZ ${VERSION} from your system" Section Uninstall -; add delete commands to delete whatever files/registry keys/etc you installed here. + ExecWait '"$INSTDIR\bin\yaz-ztest" -remove' + RMDir /r $SMPROGRAMS\YAZ Delete "$INSTDIR\uninst.exe" DeleteRegKey HKLM "SOFTWARE\Index Data\YAZ" DeleteRegKey HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\YAZ" - ExecWait '"$INSTDIR\bin\yaz-ztest" -remove' - RMDir /r $SMPROGRAMS\YAZ RMDir /r $INSTDIR ${un.EnvVarUpdate} $0 "PATH" "R" "HKLM" "$INSTDIR\bin" IfFileExists $INSTDIR 0 Removed -- 1.7.10.4