gpt4 book ai didi

xml - izpack:在 Windows 7 上创建快捷方式

转载 作者:可可西里 更新时间:2023-11-01 10:05:03 26 4
gpt4 key购买 nike

我使用 izpack 为我的应用程序创建安装程序。到目前为止,我已经能够创建安装程序,并且在我的 Linux 机器上一切正常。
问题是在我测试过的 Windows 机器上(Win7 6 位),安装程序没有显示快捷方式面板。
我确实阅读了文档故障排除部分,并注意我的安装程序中有本地人。
快捷方式 xml 文件也是如此,它们位于资源路径中的安装程序中。我还读到它很可能是区分大小写的错字或类似简单但无法弄清楚的东西。这是我的快捷方式 xml:

<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>

这是我的 install.xml 文件:

<?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>
<natives>
<native type="izpack" name="ShellLink_x64.dll"/>
</natives>
</installation>

但是我无法在我的安装程序中显示快捷方式面板...!

最佳答案

我将其与此处的工作安装程序文件进行了比较,后者包含以下 <natives>设置:

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

使用 32 位 Java 运行时时,将使用您的设置中缺少的 32 位 ShellLink.dll。

关于xml - izpack:在 Windows 7 上创建快捷方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33419830/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com