我使用 izpack 为我的应用程序创建安装程序。到目前为止,我能够创建安装程序,并且在我的 linux 机器上一切都很好。问题是在我测试过的 Windows 机器上(Win7 和 WinXP),安装程序没有显示快捷面板。我确实阅读了文档故障排除部分,并注意我的安装程序中有本地人。快捷方式 xml 文件也是如此,它们位于资源路径的安装程序中。我还读到这很可能是区分大小写的错字或类似简单但无法弄清楚的东西。这是我的快捷方式 xml:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This is the shortcut specification for windows. Its considered default so on
Systems that are not shortcut compatible the information is taken from here.
-->
<shortcuts>
<programGroup defaultName="SteamNet" location="applications"/>
<shortcut
name = "One Click Wonder"
target = "$INSTALL_PATH\oneclickwonder.bat"
commandLine = ""
workingDirectory= "$INSTALL_PATH"
description="Minimal Desktop Timer"
iconFile="$INSTALL_PATH\images\windows_icon.ico"
iconIndex="0"
initialState="noShow"
programGroup="yes"
desktop="yes"
applications="yes"
startMenu="yes"
startup="yes"/>
</shortcuts>