1

WIX を使用して MSI を作成しようとしていますが、アップグレードに関して少し混乱している小さな問題に遭遇したようです。このテーマについて約 3 つのチュートリアルを実行しましたが、それぞれのチュートリアルで同じ結果が得られます。アプリケーションをアップグレードしようとすると、ジェネリックが表示されます

この製品の別のバージョンが既にインストールされています。

メッセージ。調べてみると、アップグレードを成功させるには、新しい製品 GUID を指定する必要があることがわかりました。メインの WiX Web サイトでは、これは主要なインストールにのみ必要であると記載されていたため、これは私には奇妙に思えました。あまり運がなかったので、それで行くことにしました。見よ、インストーラーは正常に実行されましたが、[プログラムの追加と削除] をチェックインすると、アプリケーションのコピーが 2 つインストールされていました。これは私を夢中にさせています。以下の .wxs を参照して、該当する場合はエラーを表示してください。

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="PRODUCT-GUID-GOES-HERE-B86BCC79EEFD" Name="Sample Application" Language="1033" Version="$(var.ProductVersion)" Manufacturer="Sample Inc." UpgradeCode="$(var.UpgradeCode)">
    <Package Id="*" Keywords="Installer" Platform="x64" InstallerVersion="200" InstallPrivileges="elevated" InstallScope="perMachine" Compressed="yes" />

<Upgrade Id="$(var.UpgradeCode)">
  <UpgradeVersion Minimum="$(var.ProductVersion)" IncludeMinimum="no" OnlyDetect="yes" Language="1033" Property="NEWPRODUCTFOUND" />
  <UpgradeVersion Minimum="$(var.RTMProductVersion)" IncludeMinimum="no" Maximum="$(var.ProductVersion)" IncludeMaximum="no" Language="1033" Property="UPGRADEFOUND" />
</Upgrade>

    <Media Id="1" Cabinet="media1.cab" EmbedCab="yes" />

    <Directory Id="TARGETDIR" Name="SourceDir">
        <Directory Id="ProgramFiles64Folder">
    <Directory Id="Sample" Name="Sample">
      <Directory Id="INSTALLLOCATION" Name="Sample Application">
        <!-- TODO: Remove the comments around this Component element and the ComponentRef below in order to add resources to this installer. -->
        <Component Id="SampleApplication" Guid="APPLICATION-GUID-GOES-HERE-c7247f5d1b42" Win64="yes">
        <!-- TODO: Insert files, registry keys, and other resources here. -->
          <File Id="SampleEXE" Name="Sample.exe" Source="Sample.exe" ProcessorArchitecture="x64" KeyPath="yes" />
        </Component>
      </Directory>
    </Directory>
        </Directory>
    </Directory>

    <Feature Id="Complete" Title="sample64" Level="1">
        <!-- TODO: Remove the comments around this ComponentRef element and the Component above in order to add resources to this installer. -->
        <ComponentRef Id="SampleApplication" />

        <!-- Note: The following ComponentGroupRef is required to pull in generated authoring from project references. -->
        <ComponentGroupRef Id="Product.Generated" />
    </Feature>

<CustomAction Id="NoDowngrade" Error="A later version of [ProductName] is already installed." />

<InstallExecuteSequence>
  <Custom Action="NoDowngrade" After="FindRelatedProducts">NEWPRODUCTFOUND</Custom>
  <RemoveExistingProducts After="InstallFinalize" />
</InstallExecuteSequence>

<InstallUISequence>
  <Custom Action="NoDowngrade" After="FindRelatedProducts">NEWPRODUCTFOUND</Custom>
</InstallUISequence>

</Product>
</Wix>

助けてくれてありがとう。

4

1 に答える 1

1

Product/@Id を「*」に設定して、製品コードの自動変更を取得し、MajorUpgrade 要素を使用します。詳細については、私のブログを参照してください。

于 2012-09-18T21:58:59.457 に答える