izpackを使用して自分のアプリケーション用のインストーラを作成します。これまでのところ、私はインストーラを作成することができました。 問題は、Windowsマシン(Win7とWinXP)でテストしたWindowsマシンで、インストーラがショートカットパネルを表示していないことです。 ドキュメントのトラブルシューティングのセクションを読んで、インストーラにネイティブがあることに気をつけました。 ショートカットXMLファイルと同じですが、インストーラのリソースパスにあります。 私はそれが大文字小文字を区別するタイプミスか同様の単純なものである可能性が最も高いと読んでいますが、それを理解できませんでした。 、インストーラで必要な.dllファイルを含めているのIzPackのドキュメントを1としてizpack:ウィンドウにショートカットを作成する
<?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>
この回答を確認してください、それは考えられる原因と解決策のリストを持っていますhttp://stackoverflow.com/questions/33419830/izpack-create-shortcut-on-windows-7/35627201#35627201 – Pickle