Wix 3.5桌面快捷方式
在我的应用程序中,提供了桌面快捷方式。 安装完成后,当鼠标指向快捷方式时,它会显示位置详细信息(安装路径)。
为了在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="SoftwareScannerCompanyDevice" Name="Scan" Type="integer" Value="0" KeyPath="yes"/>
</Component>
如果我没有记错, Description
属性定义快捷方式的工具提示中显示的内容。 看起来安装路径是默认值。 所以,我认为你应该将Description
属性添加到Shortcut
元素中以覆盖文本。
下一篇: WiX tricks and tips