Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

setup.exe


7 replies to this topic

sachin123

sachin123
  • Members
  • 26 posts

Posted 24 July 2003 - 05:43

hi,

I have the following question.

I want to know how install shield setup understand that
the application is already installed to show maintainence dialog.

I want to know how does install shield know, the entries
made in registry has to be deleted when uninstall option is selected.

since I have a requirement where I need to show the maintainence
dialog when it is already installed by comparing with a registry entry
which I have created while installation.let me how this can be achieved

luke_s

luke_s
  • Full Members
  • 532 posts

Posted 24 July 2003 - 12:50

Install shield does not pop up these dialogs, Windows Installer actually detects that the current package is already installed and runs the cached version.

You should be able to add this functionality to your project by using the 'Installed' property.

sachin123

sachin123
  • Members
  • 26 posts

Posted 24 July 2003 - 17:02

coule you please explain me in detail.
i am new to install shield.


luke_s

luke_s
  • Full Members
  • 532 posts

Posted 25 July 2003 - 07:17

Certain Dialogs will be shown according to differnt properties.

You will need to look at the UserInterface sequence table, and also read the help provided from Microsoft.

luke_s

luke_s
  • Full Members
  • 532 posts

Posted 25 July 2003 - 07:17

Certain Dialogs will be shown according to differnt properties.

You will need to look at the UserInterface sequence table, and also read the help provided from Install Shield.

sachin123

sachin123
  • Members
  • 26 posts

Posted 26 July 2003 - 17:03

i am not able to find UserInterface sequence table at all.
let me know in detail.
i am new to installshield.

Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 27 July 2003 - 08:34

Okay, let's start with this question: Which InstallShield product and version are you using?

sachin123

sachin123
  • Members
  • 26 posts

Posted 28 July 2003 - 01:37

I am using Install shied Developer 8.0.

I have a case where in I have created shortcuts and have written custom registry key <hklm/software/myapp/version>,when user had a option of
just browsing from cd.

I had a event like "remove" with feature name as the argument "myfeature" and condition browsemode(my property) ="CD" in install now button of customsetup dialog.

the installer creates the shortcut and writes my custom keyes to registry.

but when setup.exe is clicked, the installer now needs to check against
my custom registry key and show maintainence dialog

Or is there a way where in i can force the installer write the registry keyes
that it normally does when the application is installed to local drive, so that
installer within itself can handle the maintainence dialog.