Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem which is related to the execution of CopyFile on change/repair when using WIX to make a msi setup.

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 application. I am only moving this file and not installing it to the the target. This feature works fine if I install it using a complete setup. But when on initial install I chose not to install this feature and then try to install it during a " change " all other custom actions/components inside the feature are executed/installed except for the CopyFile component. This is critical to my setup and if it does not get copied my setup will fail.

Just wondering if anyone found a solution to a similar problem or ever came across a similar issue?

share|improve this question
1  
Can you install the file into that location rather than copying it from another location? – Alexey Ivanov Feb 21 '12 at 6:32
yes I have given it a try and that is working. Until I or anyone else finds a solution I will use that approach but ideally I would like to prevent duplication in order to reduce the size of installation. – sttaq Feb 21 '12 at 10:02
So you need the files in both locations, do you? WiX should handle this situation and keep only one version of the file in the CAB. – Alexey Ivanov Feb 21 '12 at 12:57
What do msi logs say in 'change' mode? There should be a reason why it skips copying this file. – Alexey Ivanov Feb 21 '12 at 12:58
The log file skips this whole step - without any info - when I try to use the Change mode. If I proceed the normal way it shows that it has actually moved the file. and yes I need the file in both locations but not in my TARGET DIR. If I had it over there as well then I would be keeping it at three locations. – sttaq Feb 21 '12 at 13:59
show 4 more comments

1 Answer

The component which contains the CopyFile operation is configured incorrectly. It should have an actual file or registry entry as a key path.

Although Windows Installer uses components to manage resources, the component key path is main factor which decides if the component is installed or not.

So a component without a resource as a key path will never be installed and the CopyFile operation it contains will never be executed.

share|improve this answer
I have placed the file in this component and it works this way. But the thing is that it duplicates this file which I was trying to avoid initially. I have also set KeyPath attribute to true. I will try to place the registry entry with CopyFile and see if that works. Will report soon. – sttaq Apr 2 '12 at 13:59
I tried following with no luck <Component Id="copyComponent" Guid="GUID"> <CopyFile Id="File2Copy" SourceName="File.ext" SourceProperty="SourceDir" DestinationProperty="DEST"/> <RegistryKey Root="HKLM" Key="Software" Action="create"> <RegistryKey Key="productKey" Action="createAndRemoveOnUninstall"> <RegistryValue Action="write" Name="KeyName" Type="integer" Value="0" KeyPath="Yes" /> </RegistryKey> </RegistryKey> </Component> – sttaq Apr 3 '12 at 8:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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