Call WriteUninstaller with full paths

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7028 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2018-10-26 20:59:47 +00:00
parent 7f9d3253a6
commit db9fc2cfc0
3 changed files with 3 additions and 3 deletions

View file

@ -55,7 +55,7 @@ Section "Example2 (required)"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2" "UninstallString" '"$INSTDIR\uninstall.exe"'
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2" "NoModify" 1
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2" "NoRepair" 1
WriteUninstaller "uninstall.exe"
WriteUninstaller "$INSTDIR\uninstall.exe"
SectionEnd