Wix Burn问题:卸载失败,说“发现依赖”

时间:2012-10-10 21:16:50

标签: wix windows-installer burn wix3.6

我制作了一个封装2 msi(msi1,msi2)的刻录包。在UI中,我使用复选框要求用户选择要安装的MSI。

现在,如果用户选择其中一个要安装的msi,安装就可以了。但在卸载操作期间,刻录日志文件显示:

[][:15]: Detected package: Netfx4Full, state: Present, cached: None

[][:15]: Detected package: DummyInstallationPackageId3, state: **Absent**, cached: None

[][:15]: Detected package: msi2.msi, state: **Present**, cached: Complete

[][:15]: Detect complete, result: 0x0
[][:16]: Plan 3 packages, action: Uninstall
[][:16]: Will not uninstall package: msi2.msi,   found dependents: 1
[][:16]: Found dependent: {08e74372-83f2-4594-833b-e924b418b360}, name: My Test Application

在安装方案中,我选择安装msi2而不是msi1。

我的捆绑代码如下:

<Bundle Name="My Test Application" Version="1.0.0.0" Manufacturer="Bryan" UpgradeCode="CC2A383C-751A-43B8-90BF-A250F7BC2863">

<Chain>

<PackageGroupRef Id='Netfx4Full' />

<MsiPackage  Id="DummyInstallationPackageId3"
SourceFile="msi1.msi"
ForcePerMachine="yes"
InstallCondition="var1 = 1"
>
</MsiPackage>

<MsiPackage 
SourceFile="msi2.msi"
Vital="yes" Cache="yes"  Visible="no"
ForcePerMachine="yes"
InstallCondition="var2 = 2"
>
</MsiPackage>
</Chain>

我的OnDetectPackageComplete()看起来像:

 private void OnDetectPackageComplete(object sender, DetectPackageCompleteEventArgs e)
  {
    if (e.PackageId == "DummyInstallationPackageId3" )
    {
      if (e.State == PackageState.Absent)
        InstallEnabled = true;

      else if (e.State == PackageState.Present)
        UninstallEnabled = true;
    }
  }

我应该怎么做才能让刻录软件包能够自由卸载用户在安装时选择的msi。此外,如果我选择两个msi进行安装,那么卸载工作正常。

IMO,b / w束与2 msi的关系存在一些问题。请帮助我,因为我遇到了这个问题。

1 个答案:

答案 0 :(得分:4)

您的注册表可能会因为创建您的第一个Burn引导程序而导致大量的反复试验。我建议尝试以下方法:

  1. 在注册表中搜索“dependents”(例如: {08> 74372-83f2-4594-833b-e924b418b360} )并删除这些键
  2. 卸载应用程序(应该成功)
  3. 在注册表中搜索之前安装的其他.msi的产品代码。验证它不在注册表中。如果确实存在,请删除这些密钥。
  4. 尝试重新安装,看看是否可以卸载确定。