inst-resources/bitnamiutils.nsh
author Neal Gompa <neal@enanocms.org>
Fri, 18 Dec 2009 20:36:15 -0600
changeset 9 100ba25b6dba
parent 0 67e1cc6cd929
permissions -rw-r--r--
Adding uninstall commands for shortcuts, we don't want unnecessary stuff floating around after the uninstallation...

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