安装后如何使用 WIX 将文件重命名为动态名称?
How to rename a file after install to a dynamic name with WIX?
我想做的是:
<Component ...>
<File Id="xyz" Name="[SERVICE].exe" Source="..\prunmgr.exe">
</Component>
但 name
不接受占位符属性。如何在安装时将 exe 文件重命名为动态文件?
我的错误解决方法是 2 个带有命令 shell 的 CustomActions。 InstallFiles 后的一个文件重命名。第二次删除 InstallFiles 之前的文件。
我想做的是:
<Component ...>
<File Id="xyz" Name="[SERVICE].exe" Source="..\prunmgr.exe">
</Component>
但 name
不接受占位符属性。如何在安装时将 exe 文件重命名为动态文件?
我的错误解决方法是 2 个带有命令 shell 的 CustomActions。 InstallFiles 后的一个文件重命名。第二次删除 InstallFiles 之前的文件。