我正在尝试为Windows 7制作安装程序,想要在“所有程序”菜单和桌面中创建应用程序的快捷方式。我写,但捷径没有出现。这个代码有什么问题吗?
dinner_date
答案 0 :(得分:1)
如果我没有遗漏任何东西,那么Shortcut
-element就完全没有了。我想您要创建POS.exe
的快捷方式。在这种情况下,请将POS.exe
- 组件更改为以下内容:
<Component Id="POS.exe" Guid="*">
<File Id="POS.exe" Name="POS.exe" Source="$(var.POS_TargetDir)POS.exe" />
<Shortcut Id="MyShortcut" Name="My shortcut" Target="[POS.exe]" />
</Component>
这应该使用POS.exe
- 组件作为目标,并将快捷方式安装到所有用户的“程序”菜单中(如果属性ALLUSERS
设置为1
)。
另请查看有关创建快捷方式的how-to on the WiX-site。