1

我有一个 WiX 3 安装项目,使用带有 Wix 工具集 v3.11 的 VS 2017 社区,使用以下命令安装输出:

msiexec /i cient.setup.msi /lv output.log

一切都是好的。卸载使用

msiexec /x cient.setup.msi /lv output.log

也很好。但是,如果我重建 WiS 安装项目,然后尝试使用上述命令卸载,我会从 MSI 输出中收到错误 1602。即“此操作仅对当前安装的项目有效

这是我的Product.wxs文件的内容:

<?xml version="1.0" encoding="UTF-8"?>
<!-- The name of the product -->
<?define Name = "Notification Client" ?>
<!-- The manufacturer, for setup package publisher and folder info -->
<?define Manufacturer = "MyCompanies IT" ?>
<!-- The version number of this setup package-->
<?define Version = "1.0.1" ?>
<!-- UpgradeCode must be unique and not changed once the first version of the program is installed. -->
<?define UpgradeCode = "{GUID-HERE}" ?>

<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
  <?define ClientService_TargetDir=$(var.ClientService.TargetDir)?>
  <Product Id="*" Name="$(var.Name)" Manufacturer="$(var.Manufacturer)" Language="1033" Version="$(var.Version)" UpgradeCode="$(var.UpgradeCode)">
    <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />

    <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />

    <Feature Id="ProductFeature" Title="Client.Setup" Level="1">
      <ComponentGroupRef Id="ProductComponents" />
      <ComponentRef Id="ApplicationShortcut" />
    </Feature>
  </Product>

  <Fragment>
    <Directory Id="TARGETDIR" Name="SourceDir">
      <Directory Id="ProgramFilesFolder">
        <Directory Id="ROOTDIRECTORY" Name="$(var.Manufacturer)">
          <Directory Id="INSTALLFOLDER" Name="$(var.Name)" />
          <Component Feature="ProductFeature" Id="SetFolderPermissions" Guid="*">
            <CreateFolder>
              <util:PermissionEx User="Users" GenericAll="yes" />
            </CreateFolder>
          </Component>
        </Directory>
      </Directory>
      <Directory Id="StartupFolder" SourceName="Startup"/>
    </Directory>
  </Fragment>

  <Fragment>
    <DirectoryRef Id="StartupFolder">
            <Component Id="ApplicationShortcut" Guid="*">
              <Shortcut Id="StartupShortcut"
                   Directory="StartupFolder"
                   Name="Notification Client"
                   Target="[INSTALLFOLDER]\NotificationClient.exe"
                   WorkingDirectory="INSTALLFOLDER"
           />
              <RemoveFolder Id="CleanUpShortCut" Directory="StartupFolder" On="uninstall"/>
              <RegistryValue Root="HKCU" Key="Software\Microsoft\NotificationClient" Name="installed" Type="integer" Value="1" KeyPath="yes"/>
            </Component>
    </DirectoryRef>
  </Fragment>

  <Fragment>
    <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
      <!-- TODO: Remove the comments around this Component element and the ComponentRef below in order to add resources to this installer. -->
      <!-- <Component Id="ProductComponent"> -->
      <!-- TODO: Insert files, registry keys, and other resources here. -->
      <!-- </Component> -->
      <Component Id="NotificationClient.exe" Guid="*">
        <File Id="NotificationClient.exe" Name="NotificationClient.exe" Source="$(var.ClientService_TargetDir)NotificationClient.exe" DiskId="1" KeyPath="yes" />
      </Component>
      <Component Id="NotificationClient.exe.config" Guid="*">
        <File Id="NotificationClient.exe.config" Name="NotificationClient.exe.config" Source="$(var.ClientService_TargetDir)NotificationClient.exe.config" KeyPath="no" />
      </Component>
      <Component Id="Newtonsoft.Json.dll" Guid="*">
        <File Id="Newtonsoft.Json.dll" Name="Newtonsoft.Json.dll" Source="$(var.ClientService_TargetDir)Newtonsoft.Json.dll" KeyPath="no" />
      </Component>
      <Component Id="Notifications.dll" Guid="*">
        <File Id="Notifications.dll" Name="Notifications.dll" Source="$(var.ClientService_TargetDir)Notifications.dll" KeyPath="no" />
      </Component>
      <Component Id="OHR_StdFunctions.dll" Guid="*">
        <File Id="OHR_StdFunctions.dll" Name="OHR_StdFunctions.dll" Source="$(var.ClientService_TargetDir)OHR_StdFunctions.dll" KeyPath="no" />
      </Component>
      <Component Id="OHR_MSGraph.dll" Guid="*">
        <File Id="OHR_MSGraph.dll" Name="OHR_MSGraph.dll" Source="$(var.ClientService_TargetDir)OHR_MSGraph.dll" KeyPath="no" />
      </Component>
      <Component Id="ServiceInstallation" Guid="*">
        <!-- Remove all files from the INSTALLFOLDER on uninstall -->
        <RemoveFile Id="ALLFILES" Name="*.*" On="both" />
      </Component>
    </ComponentGroup>
  </Fragment>
</Wix>

我感觉这与 GUID 问题有关,但我遵循了其他帖子中关于大写 GUID 和每次都重新生成产品 ID 的指南,以确保可以顺利推出升级。

我是 Wix 的新手(这是我的第一个项目),因此请善待!:)

4

2 回答 2

1

您已将产品 GUID 设置为自动生成(这很好)。这意味着您编译的每个 MSI 都会有一个新的产品 G​​UID - 自然而然。您可以通过指定的 MSI 文件或通过指定要卸载的产品 G​​UID 来调用 MSI 卸载。有关这方面的信息,请参阅这个小“参考”,您的部分将是第 3 节在不使用 msiexec 的情况下从命令行卸载 MSI 文件(这个答案有点长,请只关注第 3 节)。

您在命令中指定要卸载的 MSI 文件不是当前安装在盒子上的 MSI - 因此嵌入在 MSI 中的产品代码对于当前卸载是错误的(安装的是您以前的版本之一 - 使用不同的产品 G​​UID)。

您可以在盒子上找到用于安装的原始 MSI(如果您仍然有它),然后您的命令msiexec /x cient.setup.msi /lv output.log将起作用,或者您可以找出已安装产品的产品代码到底是什么,然后像这样卸载这个:msiexec /x {PRODUCT-GUID} /lv output.log。一旦您找到正确的产品 G​​UID,这将始终有效。此卸载从%SystemRoot%\Installer(超级隐藏文件夹)中原始 MSI 的缓存副本运行。

这是查找已安装产品的产品 G​​UID 的一种方法:如何找到已安装 MSI 设置的产品 G​​UID?(这个答案也有点长,只需寻找 PowerShell 命令 - 就可以了)。


UPGRADE:如果您不为每个设置创建新的产品 G​​UID,则不能使用主要升级。你得到的是一个小的升级。这必须以不同于主要升级的方式安装。大多数人使用重大升级,因为它们更灵活。您需要进行重大升级,以使您的最新安装程序在安装现有安装程序时静默卸载,否则您会在添加/删除程序中获得两个条目,如您所说。

设置重大升级:如何:在安装程序中实施重大升级

我将添加您自己建议的链接:如何实施 WiX 安装程序升级?.

于 2018-01-15T13:19:51.733 回答
0

升级代码用于枚举潜在的候选者以代替挂起的安装删除。当您重建时,它/Wix/Product[@Id]会重新生成,因此它显示为一个新产品,它可以简单地使用您维护的现有升级代码“升级”任何东西。

于 2018-01-15T13:13:15.367 回答