Re: [WiX-users] Triggering a rollback

2007-01-30 Thread Bob Arnson
Ian Couper wrote: I tried incorporating that into my installer and it works, just too well. The installer errors every time, even if the condition is not met. Any ideas on what might be causing this? The code I'm using is as follows: Check a verbose log around the AppSearch action; it rec

Re: [WiX-users] Triggering a rollback

2007-01-30 Thread Ian Couper
llows: FILEEXISTS From: Levi Wilson [mailto:[EMAIL PROTECTED] Sent: Monday, January 29, 2007 3:43 PM To: Ian Couper Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Triggering a rollback Launch Conditions have to be true in order for the in

Re: [WiX-users] Triggering a rollback

2007-01-29 Thread Levi Wilson
if the condition is not met? That's the part I'm interested in… -- *From:* Levi Wilson [mailto:[EMAIL PROTECTED] *Sent:* Monday, January 29, 2007 3:31 PM *To:* Ian Couper *Cc:* wix-users@lists.sourceforge.net *Subject:* Re: [WiX-users] Triggering a rollback

Re: [WiX-users] Triggering a rollback

2007-01-29 Thread Ian Couper
y, January 29, 2007 3:31 PM To: Ian Couper Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Triggering a rollback If this file needs to exist before the installation is ran, you could have something like: And if the FileSearch succeeds, FILEEXISTS would be set to true. Then

Re: [WiX-users] Triggering a rollback

2007-01-29 Thread Levi Wilson
If this file needs to exist before the installation is ran, you could have something like: And if the FileSearch succeeds, FILEEXISTS would be set to true. Then you could have a that won't let the install proceed if it isn't set? I've done this with a before. On 1/29/07, Ian Couper <[EM

[WiX-users] Triggering a rollback

2007-01-29 Thread Ian Couper
I would like to use the FileSearch property to trigger a rollback if a particular file is not located. I know how to use the FileSearch property, but not hot to force a rollback based on its outcome. Can anyone help me with this one, or point me in the right direction? Thanks -