如何使用 wix 工具集复制文件,没有产品没有更新,没有卸载

How to just copy files with wix toolset, no product no update, no uninstall

这是一个一般性问题:我们的 MSI 具有使用 WIX 创建的功能。我们只需向客户提供与所选功能相关的文件,但没有任何安装或“添加和删除程序”的信息,任何卸载都只提供文件。有什么想法吗?

您必须在 InstallExecuteSequence 中禁止 PublishComponents、PublishFeature 和 PublishProduct 操作。

<InstallExecuteSequence>
 <PublishComponents Suppress="Yes" />
 <PublishFeatures Suppress="Yes" />
 <PublishProduct Suppress="Yes" />
</InstallExecuteSequence>