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>