我正在为我的设置项目使用 WIX 3.5。如果我在安装过程中更改了安装目录,安装程序坚持使用默认目录。
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="LocalAppDataFolder" Name="AppData">
<Directory Id="InstallationDir" Name="MyApp" />
</Directory>
</Directory>
...
<DirectoryRef Id="InstallationDir">
... component + files ...
</DirectoryRef>
...
<UI>
<Property Id="WIXUI_INSTALLDIR" Value="InstallationDir" />
<UIRef Id="WixUI_InstallDir" />
<UIRef Id="WixUI_ErrorProgressText" />
</UI>
<CustomAction Id="SetARPINSTALLLOCATION" Property="ARPINSTALLLOCATION" Value="InstallationDir" />
<InstallExecuteSequence>
<Custom Action="SetARPINSTALLLOCATION" After="InstallValidate" />
</InstallExecuteSequence>
我尝试了升级(我总是更改产品代码)和卸载/安装。同样的问题!如果我运行msiexec /L*v log.txt /i Setup.msi
日志,则会告诉我该InstallationDir
属性确实已更改。
问:我的软件怎么可能安装到默认目录中?