How do i get wix 3.5 to remember my company name as part of the user selected folder to be installed?
For example,
I usually install my files to C:\CompanyName and when the installer prompts user to select their preferred location to be installed, C:\CompanyName usualy replaced with [PATH TO USERS SELECTED FOLDER]. I would like it to add CompanyName to the end of the path.
[PATH TO USERS SELECTED FOLDER]\CompanyName
How can i achieve that?
Code below to install to C:\CompanyName
<Directory Id="TARGETDIR" Name="SourceDir">
<!-- Install stuff into [SystemDrive] folder. -->
<!-- This is the folder where the website content will be located -->
<Directory Id="INSTALLLOCATION" Name="CompanyName">
</Directory>
</Directory>
Cheers!