I'm trying to make an install that puts a copy of the same files in multiple places...
is there a simple way to do this?
eg. if I wanted to put a.txt b.txt c.txt into all of the following directories :-
.\Blah\
.\Txts\
.\Examples\
|
|
I'm trying to make an install that puts a copy of the same files in multiple places... is there a simple way to do this? eg. if I wanted to put a.txt b.txt c.txt into all of the following directories :- .\Blah\
|
|||
|
|
|
|
Simply create multiple components which reference the same file, but install it to different locations. The only gotcha is that you cannot use two
|
||||||
|
|
|
Windows Installer has its own concept for this called "DuplicateFiles". It only works if the files are actually identical, but it sounds like that's what you want. In WIX you implement this via the CopyFile element: http://wix.sourceforge.net/manual-wix2/wix%5Fxsd%5Fcopyfile.htm I haven't actually tried it, but it should look something like this
|
||