In the application to install
' Test eventual mark, settings in the registry. if GetSetting("MyInstallerApp","Startup","BeenHere",0) = 1 then MsgBox "This installer was ran once already... first run the un-installer." End ' or some other code to properly exit the installer EndIf Call SaveSetting ("MyInstallerApp","Startup", "BeenHere", 1) 'leave a mark for future
In an uninstaller application (or the βuninstallβ installer option)
' Allow future Installer to run again Call DeleteSetting("MyInstallerApp", "Startup")
jpinto3912
source share