19

我知道 WiX MSI 中存在类似问题,但在安装后使用Burn创建的引导程序 EXE 文件中启动应用程序时遇到问题。我的完整包如下。

如果它对场景有任何影响,引导程序将以被动模式启动,因此用户不需要按下任何东西。

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
     xmlns:bal="http://schemas.microsoft.com/wix/BalExtension"
     xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">

    <Bundle Name="My Company AutoUpdater"
            Version="1.0.11"
            Manufacturer="My Company"
            UpgradeCode="--GUID--">

        <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.HyperlinkLicense">

            <bal:WixStandardBootstrapperApplication SuppressOptionsUI="yes"
                                                    LicenseUrl=""
                                                    LogoFile="logo.png" />
        </BootstrapperApplicationRef>

        <Chain>
            <MsiPackage SourceFile="..\App1\bin\Release\App1.msi" />
            <MsiPackage SourceFile="..\App2\bin\Release\App2.msi" />
        </Chain>
    </Bundle>

    <Fragment>
        <Property Id="WixShellExecTarget" 
                  Value="[#C:\Program Files (x86)\My Company\App1.exe]" />

        <Binary Id="MyCA"
                SourceFile="[#C:\Program Files (x86)\My Company\App1.exe]"/>

            <CustomAction Id="LaunchApplication"
                          BinaryKey="MyCA"
                          ExeCommand="-switch"
                          Execute="deferred"
                          Return="check"
                          HideTarget="no"
                          Impersonate="no" />

            <InstallExecuteSequence>
                <Custom Action="LaunchApplication" 
                        After="InstallFiles" />
            </InstallExecuteSequence>
    </Fragment>
</Wix>
4

3 回答 3

19

您可以向您的 Bundle 添加一个名为“LaunchTarget”的变量,其中包含您要运行的可执行文件的路径:

<Variable Name="LaunchTarget" Value="[InstallFolder]\path\to\file.exe"/>

安装后,安装成功屏幕将显示一个“启动”按钮,该按钮将启动您的应用程序。

于 2012-10-11T18:02:57.020 回答
5

它有许多步骤。请记住,我是从引导程序而不是 MSI 文件运行它,因此 levarius 的回答就足够了。

基本上,我删除了原始问题中发布的任何启动逻辑,并创建了一个新包,其唯一功能是启动应用程序(使用自定义操作),并且其位置先前已保存在注册表中 -即应用程序运行时发现有更新可用,在注册表中设置此项。

仅当先前安装了其他软件包之一时才运行该软件包(以下称为 PostInstall)-通过注册表中存在的键(在每个产品的 MSI 中设置)找到。这意味着安装完成后不会自动启动任何应用程序。

以下来自引导程序包(在我的情况下为 WiX 3.6)

<!-- Determine what items are installed in the event of an upgrade-->
<util:RegistrySearch Root="HKLM"
                     Key="SOFTWARE\CompanyName"
                     Value="ProductAInstalled"
                     Variable="ProductAInstalled"
                     Result="exists"
                     Format="raw" />
<util:RegistrySearch Root="HKLM"
                     Key="SOFTWARE\CompanyName"
                     Value="ProductBInstalled"
                     Variable="ProductBInstalled"
                     Result="exists"
                     Format="raw" />

<Chain>
    <!-- Package for .NET prerequisite. References a Package that is
         actually in the referenced WiX file WixNetFxExtension. -->
    <PackageGroupRef Id="NetFx40Web"/>

    <MsiPackage SourceFile="..\SetupProductA\bin\Release\SetupProductA.msi"
                InstallCondition="(chkProductA) OR (ProductAInstalled)" />

    <MsiPackage SourceFile="..\SetupProductB\bin\Release\SetupProductB.msi"
                InstallCondition="(chkProductB) OR (ProductBInstalled)" />

    <!-- Run PostInstall only if this was run as part of an upgrade. -->
    <!-- NB: This is the portion that kicks off the downloaded bootstrapper. -->
    <MsiPackage SourceFile="..\PostInstall\bin\Release\PostInstall.msi"
                InstallCondition="(ProductAInstalled) OR (ProductBInstalled)" />
</Chain>
于 2013-03-28T13:07:10.477 回答
4

使用 WiX 手册How To: Run the Installed Application After Setup中给出的建议。有一个内置的 WiX 扩展程序可以为您处理这个问题。您应该能够引用 WiX Util 扩展,将以下代码添加到您的项目中(当然要替换属性的值),然后安排要运行的操作:

<Property Id="WixShellExecTarget" 
          Value="[#myapplication.exe]" />
<CustomAction Id="LaunchApplication" 
              BinaryKey="WixCA" 
              DllEntry="WixShellExec" 
              Impersonate="yes" />
于 2012-10-10T22:40:49.517 回答