Reputation: 2208
Is there way to install file in LocalLow folder using WIX script?
Updated:
I can put the following code for XP
<Directory Id="AppDataFolder">
<Directory Id="ApplicationData">
<Directory Id="ProductName">
and this for Windows Vista and later
<Directory Id="AppDataFolder">
<Directory Id="AppData">
<Directory Id="LocalLow">
<Directory Id="ProductName">
but how can I push WIX/MSI to select right variant during runtime?
Upvotes: 1
Views: 1592
Reputation: 519
AppDataFolder mapped to Roaming folder, so it isn't a solution
!!! this folder makes sense only on Vista & later, so make such component conditional
Upvotes: 0
Reputation: 8860
Yes, you can install (copy) files in any folder you have write access to. Just specify the required directory path with Directory elements.
PS: WIX documentation is poor, but don't expect they will list every possible folder on your machine =).
Upvotes: 1