2

我创建了一个应用程序并使用 WiX 将其打包。但是这个应用程序需要一个先决条件,比如 SQL CE 3.5。然后我使用 Burn 创建了一个助推器。要求是,如果以前没有安装在用户的计算机中,它将只安装 SQL CE。

我遇到的问题是,即使它没有安装(因为它已经安装),如果我卸载我的应用程序,它也会卸载 SQL CE。我该如何解决这个问题?

这是代码:

<util:RegistrySearch Root="HKLM" Key="SOFTWARE\Classes\Installer\Products\PACKED_GUID" Value="Version" Variable="SQLCE_Installed" Result="exists" />

<Chain>
  <MsiPackage Id="PkgA" SourceFile="PkgA.msi" DisplayInternalUI="yes" Visible="yes" InstallCondition="SQLCE_Installed" />

编辑:

引导程序只有在它自己安装的情况下才应该删除先决条件 SQL CE。这种方式(伪代码):

function install() {
  if isPrereqInstalled = false {
     call installPreReq()
     boolean bootstrapperInstalledApp = true
  }
}
function uninstall() {
  if bootstrapperInstalledApp = true {
     call uninstallPreReq()
     call uninstallMyApp()
  } else {
     call uninstallMyApp()
  }
}
4

1 回答 1

3

将包上的永久设置为“是”

<MsiPackage SourceFile="Enclosing1_1.msi" Id="Enclosing" Permanent="yes" Vital="no" Visible="yes">
于 2013-08-13T12:32:34.247 回答