【问题标题】:izpack 4.3.4 programs and featuresizpack 4.3.4 程序和功能
【发布时间】:2016-07-17 01:51:01
【问题描述】:

我正在使用 IzPack 4.3.4,我正在尝试将我的卸载程序添加到 Windows 控制面板的程序和功能部分 我正在使用 Windows 10(内部版本 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 文档在内的各种来源都表明这应该可以正常工作。但是“程序和功能”列表中没有显示任何内容。

那么我需要做什么才能完成这项工作?

【问题讨论】:

    标签: izpack


    【解决方案1】:

    您还需要 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>
    

    【讨论】:

    • 试过了,还是不行。至少不适合我。
    猜你喜欢
    • 2012-12-01
    • 2023-03-03
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2012-09-03
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多