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 Rob Mensching
A verbose log file should explain. On Mon, Feb 20, 2012 at 5:37 AM, sttaq 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 > source folder

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 applica

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

2010-12-15 Thread little.forest
__ From: little.forest To: General discussion for Windows Installer XML toolset. 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 InstallFin

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

2010-12-13 Thread little.forest
Sent: Fri, December 10, 2010 11:57:29 PM 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 InstallInit

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 compon

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

2010-12-10 Thread little.forest
_ From: Blair To: General discussion for Windows Installer XML toolset. 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? O

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

2010-12-10 Thread Blair
: Thursday, 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: (Not Installed) AND (&Feature_XYZ = 3) This works in initial install, but not in 'Change'

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

2010-12-09 Thread little.forest
Hi all, We have a customaction: (Not Installed) AND (&Feature_XYZ = 3) This works in initial install, but not in 'Change' mode. >From here(http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/InstallMode-Conditions-DON-T-work-td707286.html ), I learnt that "there is no suc