Fix 64-bit installer's uninstallation problem.

After uninstalling 64-bit Notepad++ via uninstaller, the entry remains in
the "uninstall programs" section of panel of configuration. This commit fixes the bug.
This commit is contained in:
Don Ho 2016-10-01 23:14:40 +02:00
parent df91244234
commit 181b487521

View File

@ -101,6 +101,11 @@ Section un.UserManual
SectionEnd
Section Uninstall
!ifdef ARCH64
SetRegView 64
!else
SetRegView 32
!endif
;Remove from registry...
DeleteRegKey HKLM "${UNINSTALL_REG_KEY}"
DeleteRegKey HKLM "SOFTWARE\${APPNAME}"