2016-07-04 34 views
0

我正在使用IzPack 4.3.4,我試圖將我的卸載程序添加到 Windows控制面板的程序和功能部分 我正在使用Windows 10(Build 10240)。 但它似乎沒有工作,我修改了現有的簡單樣品,並添加以下代碼INSTALL.XML:izpack 4.3.4程序和功能

<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

您還需要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> 
+0

嘗試過,但它不工作。至少不適合我。 – extremecoder85