izpack:在Windows上创建快捷方式

时间:2011-09-03 19:59:14

标签: windows shortcut izpack

我使用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>

2 个答案:

答案 0 :(得分:10)

我创建了这个(虚拟)安装文件,仅用于测试快捷方式面板:

<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
<installation version="1.0">
  <info>
    <appname>Test</appname>
    <appversion>1</appversion>
  </info>
  <guiprefs width="600" height="480" resizable="no">
  </guiprefs>
  <locale>
    <langpack iso3="eng"/>
  </locale>
  <panels>
    <panel classname="ShortcutPanel"/>
  </panels>
  <packs>
    <pack name="Test" required="yes">
      <description>Description</description>
    </pack>
  </packs>
  <resources>
    <res src="shortcutSpec.xml" id="shortcutSpec.xml"/>
  </resources>
  <native type="izpack" name="ShellLink.dll"/>
</installation>

shortcutSpec.xml在您的问题上显示完全相同的内容。

我在Ubuntu中使用IzPack 4.3.5构建它(左)并在Windows 7 64位(右)上进行测试。

IzPack shortcut panel

快捷方式面板在这里和那里打开。

一步一步:

  1. 下载IzPack-install-4.3.5.jar
  2. 安装IzPack:java -jar IzPack-install-4.3.5.jar
  3. 生成安装程序:/usr/local/IzPack/bin/compile ./test.xml
  4. 测试安装程序(Linux):java -jar test.jar
  5. 测试安装程序(Windows):从Linux复制test.jar,启动cmd,设置path=C:\Program Files (x86)\Java\jdk1.6.0_26\bin并执行java -jar test.jar

答案 1 :(得分:-2)

根据IzPack文档,您是否在安装程序中包含了所需的.dll文件? http://izpack.org/documentation/desktop-shortcuts.html

<native type="izpack" name="ShellLink.dll"/>