vote up 0 vote down star

I've configured an InstallShield setup to delete certain VDs from IIS right before the InstallFiles action. The code is being called within the "OnInstallFilesActionBefore" event. This works fine, except that I don't want the VDs to be removed if the setup is repairing.

I've found this page which lists the possible events; however, it seems the best option I have is "OnFirstUIBefore", which only happens in the first-time installation. It just doesn't seem right to do it there, though.

Am I better off adding a condition to one of the Sequences, one that would prevent it from executing the code during a repair? Is there another way?

For the record, I'm using DevStudio v9.

flag

1 Answer

vote up 2 vote down check

Yes, just add a condition, nothing wrong with that. Try REMOVE~="ALL" OR NOT Installed.

link|flag
Thanks, I'll give it a shot. – Matt Refghi Mar 30 at 14:58
edit: I got the condition exactly reverse to what you needed. – Anton Tykhyy Mar 30 at 18:55
lol - yeah, I noticed that when implementing it. You still had the right solution in mind, and you even commented on your mistake before I got around to it. Thanks for the help! – Matt Refghi Mar 31 at 13:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.