This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: Looping patch issues possibly caused by ISInstallPrerequisites.
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 11, 2008
07:41 PM
Looping patch issues possibly caused by ISInstallPrerequisites.
I have an issue where my patches get into a recursive loop, continuously relaunching themselves.
I believe this is caused by the ISInstallPrerequisites action attempting to relaunch the patch setup in order to handle "feature prerequisites." At least, this is what the log file has lead me to believe.
The UI appears with a welcome dialog. Click Next and the SetupProgress dialog appears. This is followed by a relaunch of the patch exe and another welcome dialog.
If my analysis is correct, how should I handle this problem? I don't really need to be installing prerequisites in a patch anyways, as the installed feature set never changes.
I believe this is caused by the ISInstallPrerequisites action attempting to relaunch the patch setup in order to handle "feature prerequisites." At least, this is what the log file has lead me to believe.
The UI appears with a welcome dialog. Click Next and the SetupProgress dialog appears. This is followed by a relaunch of the patch exe and another welcome dialog.
If my analysis is correct, how should I handle this problem? I don't really need to be installing prerequisites in a patch anyways, as the installed feature set never changes.
(3) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 12, 2008
11:05 AM
This should be fixed by adjusting the condition of the ISInstallPrerequisites action in the upgraded image. We currently plan to use a condition of:
NOT(EXECUTEMODE~="NONE") AND NOT(PATCH AND Installed)
NOT(EXECUTEMODE~="NONE") AND NOT(PATCH AND Installed)
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 12, 2008
04:54 PM
Thank you very much. I added the condition to my project file and the problem was solved. 🙂
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Dec 12, 2011
03:45 AM
MichaelU wrote:
This should be fixed by adjusting the condition of the ISInstallPrerequisites action in the upgraded image. We currently plan to use a condition of:
NOT(EXECUTEMODE~="NONE") AND NOT(PATCH AND Installed)
I have the same condition in the table.
But the problem is suppose any one prerequisite is uninstalled by me and suppose I wants to repair/remove the application by double click on the setup.exe file then first it prompts me the prerequisite installation dialog box.
And after installing the missing prerequisite, it gives me the maintenance dialog.
May i need to change the condition..? I tried by appending the "And NOT(Installed)" condition to the previous one. but not getting success.
Please help me to resolve this problem.
