我已经在我的 wix 安装程序的 APPDATA 位置发送了一些文件。我正在使用下面的代码。在管理员模式下运行安装程序时,它会在该位置安装 txt 文件。但该文件不提供给非管理员用户。请帮我解决这个问题。</p>
<CustomAction Id="PropertySource" Property="APPPATH" Value="[LocalAppDataFolder]APP1\APP2" /><Directory Id="APPPATH">
<Directory Id="Application">
<Component Id="comp_txt" Guid="{10E0A568-3E37-49BD-A70B-8D7F63A17011}">
<File Id="file_234487642387111122391332" Source="..\..\..\App.txt" />
</Component>
</Directory></Directory>
在 InstallExecuteSequence 和 InstallUISequence 下
<Custom Action="PropertySource" Sequence="1278" />