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

Avoid dialog


3 replies to this topic

cornel_gav

cornel_gav
  • Full Members
  • 10 posts

Posted 17 March 2008 - 10:25

How can I avoid the "Close running processes dialog"?
I managed myself this situation and I don't need this dialog anymore.

Cornel

VBScab

VBScab
  • Full Members
  • 436 posts

Posted 17 March 2008 - 16:40

You could either:

- re-sequence the dialog sequence;
- delete the dialog, or
- add an impossible-to-meet condition to the dialog

Do this in a transform, NOT the original MSI.

Edited by VBScab, 17 March 2008 - 16:45.

- Don't know why 'x' happened? Want to know why 'y' happened? ProcMon will tell you.
- Try using http://www.google.com before posting.
- I answer questions only via forums. Please appreciate the time I give here and don't send me personal emails.

cornel_gav

cornel_gav
  • Full Members
  • 10 posts

Posted 01 April 2008 - 12:56

QUOTE (VBScab @ 2008-03-17 16:40)
You could either:

- re-sequence the dialog sequence;
- delete the dialog, or
- add an impossible-to-meet condition to the dialog

Do this in a transform, NOT the original MSI.

What's that a 'transform'?

Zweitze

Zweitze
  • Full Members
  • 522 posts

Posted 01 April 2008 - 14:24

This dialog is shown by the InstallValidate action, in the InstallExecute sequence. Your 'managed solution' should be executed just before that action (assuming your solution is a custom action that handles this situation).
You still keep the dialog, but it will only show up for situations where your solution fails, eg. when another file being replaced is in use.