inst-resources/bitnamiutils.nsh
author Dan
Tue, 08 Dec 2009 02:25:33 -0500
changeset 6 6016fd9e848f
parent 0 67e1cc6cd929
permissions -rw-r--r--
A couple minor fixes: more flexible version numbering; added a CreateDirectory before uninstaller generation (whoops)

Function BNSetWAMPInstalledFlag
  ClearErrors
  ReadRegStr $wampstack_installed HKLM "Software\BitNami\BitNami WAMPStack" "Location"
  IfErrors 0 +2
    StrCpy $wampstack_installed 0

  ClearErrors
FunctionEnd

Function BNSetWAPPInstalledFlag
  ClearErrors
  ReadRegStr $wappstack_installed HKLM "Software\BitNami\BitNami WAPPStack" "Location"
  IfErrors 0 +2
    StrCpy $wappstack_installed 0

  ClearErrors
FunctionEnd