winUninstall #268

Merged
sarah merged 3 commits from winUninstall into trunk 2021-12-18 21:25:46 +00:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit 4946b6c51a - Show all commits

View File

@ -94,10 +94,12 @@ Section
;Store installation folder
WriteRegStr HKCU "Software\Cwtch" "installLocation" $INSTDIR
WriteUninstaller "$INSTDIR\uninstall.exe"
SectionEnd
Section "Uninstall"
RMDir "$INSTDIR" /r /REBOOTOK
RMDir /r /REBOOTOK "$INSTDIR"
DeleteRegKey /ifempty HKCU "Software\Cwtch\installLocation"
SectionEnd