我正在使用IzPack 4.3.4,我正在尝试添加我的卸载程序 Windows控制面板的“程序和功能”部分 我使用的是Windows 10(Build 10240)。 但它似乎不起作用,我修改了现有的简单示例并将以下代码添加到install.xml:
<natives>
<native type="3rdparty" name="COIOSHelper.dll" stage="both">
</native>
<native type="3rdparty" name="COIOSHelper_x64.dll" stage="both">
</native>
</natives>
<listeners>
<listener classname="RegistryInstallerListener" stage="install"/>
<listener classname="RegistryUninstallerListener" stage="uninstall"/>
</listeners>
包括IzPack文档在内的各种消息来源都表示,这应该可以使其发挥作用。但是“程序和功能”列表中没有任何内容。
那么我需要做些什么来使这项工作?
答案 0 :(得分:0)
您还需要ShellLink.dll才能正常工作:
<natives>
<native type="izpack" name="ShellLink.dll" />
<native type="izpack" name="ShellLink_x64.dll" />
<native type="3rdparty" name="COIOSHelper.dll" stage="both">
<os family="windows" />
</native>
<native type="3rdparty" name="COIOSHelper_x64.dll" stage="both">
<os family="windows" />
</native>
</natives>