How to add a dependent folder for a Wix burn bootstrapper exepackage

白昼怎懂夜的黑 提交于 2019-12-01 05:16:41

Use the Name attribute of child Payload elements.

<ExePackage SourceFile="setup.exe">
    <Payload SourceFile="samplefile.rsp" />
    <Payload SourceFile="anotherfile" />
    <Payload Name="files\data1.cab" SourceFile="files\data1.cab" />
    <Payload Name="files\clientruntime.msi" SourceFile="files\clientruntime.msi" />
</ExePackage>

If there are lots and lots of files, it's probably better to just make a self extracting zip archive.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!