Re: [WiX-users] How to write conditions for 'Change' mode

2012-02-21 Thread sttaq
i feel that the log is useless over here. I think I might be missing out something. My normal log when I install the complete product shows that a file has been moved but I can not find even the name of the file anywhere when I try to install using Change option. Also note that this thing works

Re: [WiX-users] How to write conditions for 'Change' mode

2012-02-20 Thread sttaq
Hi I am stuck in a similar situation. However my problem is related to the execution of CopyFile on change/repair. I have a feature which has a component which copies/moves a file from the source folder to a folder already present somwhere inside a users system. It is not the folder of my

Re: [WiX-users] How to write conditions for 'Change' mode

2012-02-20 Thread Rob Mensching
A verbose log file should explain. On Mon, Feb 20, 2012 at 5:37 AM, sttaq tt...@hotmail.com wrote: Hi I am stuck in a similar situation. However my problem is related to the execution of CopyFile on change/repair. I have a feature which has a component which copies/moves a file from the

Re: [WiX-users] How to write conditions for 'Change' mode

2010-12-15 Thread little.forest
Installer XML toolset. wix-users@lists.sourceforge.net Sent: Mon, December 13, 2010 3:24:19 PM Subject: Re: [WiX-users] How to write conditions for 'Change' mode Thanks Blair. It's in InstallExecuteSequence. And it's before InstallFinalize. Here's the code: CustomAction Id=DoDllRegistration

Re: [WiX-users] How to write conditions for 'Change' mode

2010-12-13 Thread little.forest
Subject: Re: [WiX-users] How to write conditions for 'Change' mode In what sequence is your custom action (execute, or ui)? Where in that sequence is it scheduled (before CostInitialize, after CostFinalize, before or after InstallInitialize, before or after InstallFinalize)? -Original Message

Re: [WiX-users] How to write conditions for 'Change' mode

2010-12-11 Thread Blair
: Friday, December 10, 2010 12:00 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] How to write conditions for 'Change' mode Hi Blair, Thanks for your reply. We'd like to detect whenever the user adds the feature XYZ. Basically, we have a component which

Re: [WiX-users] How to write conditions for 'Change' mode

2010-12-10 Thread Blair
, December 09, 2010 10:25 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] How to write conditions for 'Change' mode Hi all, We have a customaction: Custom Action=DoDllRegistration Before=InstallFinalize (Not Installed) AND (amp;Feature_XYZ = 3)/Custom This works in initial

Re: [WiX-users] How to write conditions for 'Change' mode

2010-12-10 Thread little.forest
To: General discussion for Windows Installer XML toolset. wix-users@lists.sourceforge.net Sent: Fri, December 10, 2010 9:57:26 AM Subject: Re: [WiX-users] How to write conditions for 'Change' mode What are you trying to do in change mode? Detect whenever the user adds Feature_XYZ? Or detect anytime

[WiX-users] How to write conditions for 'Change' mode

2010-12-09 Thread little.forest
Hi all, We have a customaction: Custom Action=DoDllRegistration Before=InstallFinalize (Not Installed) AND (amp;Feature_XYZ = 3)/Custom This works in initial install, but not in 'Change' mode. From