Re: [WiX-users] How To Run Custom Action During Install But Not During Uninstall

2012-02-13 Thread sttaq
Yes I realized it and its working now - what a blunder. Thanks -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-To-Run-Custom-Action-During-Install-But-Not-During-Uninstall-tp6395892p7280809.html Sent from the wix-users mailing list archive at Nab

Re: [WiX-users] How To Run Custom Action During Install But Not During Uninstall

2012-02-13 Thread John Cooper
--Original Message- From: sttaq [mailto:tt...@hotmail.com] Sent: Monday, February 13, 2012 9:29 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] How To Run Custom Action During Install But Not During Uninstall I was trying to follow the step mentioned in this thread but on co

Re: [WiX-users] How To Run Custom Action During Install But Not During Uninstall

2012-02-13 Thread sttaq
Ok my mistake in reading the post - it was supposed to be in and not in tag. Thanks -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-To-Run-Custom-Action-During-Install-But-Not-During-Uninstall-tp6395892p7280721.html Sent from the wix-users mail

Re: [WiX-users] How To Run Custom Action During Install But Not During Uninstall

2012-02-13 Thread sttaq
I was trying to follow the step mentioned in this thread but on compiling I get the following exception: C:\...\xyz.wxs(204) : error CNDL0024 : The CustomAction element contains illegal inner text: 'NOT Installed'. It may not contain inner text unless the Script attribute is specified. make: ***

Re: [WiX-users] How To Run Custom Action During Install But Not During Uninstall

2011-05-25 Thread Rob Hamflett
use a few of these actions in a repair situation. What condition > should I use in that case? > > Thanks! > > Brad > > > -Original Message- > From: Rob Hamflett [mailto:r...@snsys.com] > Sent: Tuesday, May 24, 2011 3:21 AM > To: wix-users@lists.sourcefor

Re: [WiX-users] How To Run Custom Action During Install But Not During Uninstall

2011-05-24 Thread Blair Murri
forge.net > Date: Tue, 24 May 2011 09:00:20 -0700 > Subject: Re: [WiX-users] How To Run Custom Action During Install But Not > During Uninstall > > Hi Rob, > > I've just been focusing on the basic install/uninstall right now, but I would > like to use a few of these

Re: [WiX-users] How To Run Custom Action During Install But Not During Uninstall

2011-05-24 Thread Bradley Ward
, May 24, 2011 3:21 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] How To Run Custom Action During Install But Not During Uninstall Just to let you know if you didn't, but that condition will mean your Custom Action won't run during a repair, in case it's important.

Re: [WiX-users] How To Run Custom Action During Install But Not During Uninstall

2011-05-24 Thread Rob Hamflett
Just to let you know if you didn't, but that condition will mean your Custom Action won't run during a repair, in case it's important. Rob On 23/05/2011 20:44, Bradley Ward wrote: > OK, I figured my particular case out. > > The condition you want to use is simply "NOT Installed". > > Example: >

Re: [WiX-users] How To Run Custom Action During Install But Not During Uninstall

2011-05-23 Thread Wilson, Phil
A condition of Not Installed sounds right. [[However, if your custom action is associated with a component or a feature, sometimes a feature condition is more appropriate because the feature may be uninstalled and later reinstalled, or not chosen at install time etc. ]] Phil Wilson -Or

Re: [WiX-users] How To Run Custom Action During Install But Not During Uninstall

2011-05-23 Thread Bradley Ward
OK, I figured my particular case out. The condition you want to use is simply "NOT Installed". Example: NOT Installed In this example, the MyCustomAction action will be run during the installation sequence, but will not be run during the uinstall sequence. Brad -Original Message- F