Discussion:
[WiX-users] How to install on a subfolder ?
faujong
2014-02-26 21:39:15 UTC
Permalink
The below Directory element installs my Windows Service on c:\program
files\WixWindowsService2012.
How can I install it on a subfolder, ie c:\program
files\myCompany\WixWindowsService2012 ?

<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFiles64Folder">
<Directory Id="INSTALLFOLDER" Name="WixWindowsService2012" />
</Directory>
</Directory>

Thank you.



--
View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-install-on-a-subfolder-tp7592965.html
Sent from the wix-users mailing list archive at Nabble.com.
rw1017
2014-02-26 21:59:37 UTC
Permalink
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFiles64Folder">
<Directory Id="myCompany" Name="myCompany">
<Directory Id="INSTALLFOLDER"
Name="WixWindowsService2012" />
</Directory>
</Directory>
</Directory>



--
View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-install-on-a-subfolder-tp7592965p7592967.html
Sent from the wix-users mailing list archive at Nabble.com.
faujong
2014-02-26 22:17:19 UTC
Permalink
Thanks, that works !



--
View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-install-on-a-subfolder-tp7592965p7592968.html
Sent from the wix-users mailing list archive at Nabble.com.

Loading...