在我的应用程序中,提供了桌面快捷方式。安装完成后,当鼠标指向快捷方式时,它会显示位置详细信息(安装路径)。
为了在wix中隐藏此信息应该怎么做?
我的代码是:
<Component>
<File Id ="Scan" Name="Scan.exe" Source="Scan.exe">
<Shortcut Id ="Shortcut" Name="Scanner" Directory="DesktopFolder" Advertise="no" />
</File>
<RegistryValue Root="HKCU" Key="Software\Scanner\Company\Device" Name="Scan" Type="integer" Value="0" KeyPath="yes"/>
</Component>
答案 0 :(得分:2)
如果我没记错的话,Description
属性定义了快捷方式工具提示中显示的内容。似乎安装路径是默认值。因此,我认为您应该将Description
属性添加到Shortcut
元素以覆盖文本。