无法在WiX安装程序中显示对话框



我正在修改默认的FireBreath WiX脚本,以在安装完成后显示简单的消息。因为有时它是如此之快,用户没有机会注意到它。

我有这个wxs文件

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
    <Product Id="*" ">
        <Package ... />
        <Upgrade Id="{369b048a-9f97-5e15-8ce3-c983fa5764d3}">
            <UpgradeVersion
                Property="OLD_VERSION_FOUND"
                Minimum="0.0.1" IncludeMinimum="yes"
                Maximum="0.3.3.3" IncludeMaximum="yes"
                OnlyDetect="no" IgnoreRemoveFailure="yes"
                MigrateFeatures="yes" />
        </Upgrade>
        <Property Id="MSIRESTARTMANAGERCONTROL" Value="Disable" />
        <InstallExecuteSequence>
            <RemoveExistingProducts After="InstallInitialize" />
            <InstallExecute After="RemoveExistingProducts" />
        </InstallExecuteSequence>        
        <Directory Id="TARGETDIR" Name="SourceDir">
            ...
        </Directory>
        <Feature Id="MainPluginFeature" Title="Plugin" Level="1">
            <ComponentRef Id="InstallDirComp"/>
            <ComponentRef Id="PluginNameDirComp"/>
            <ComponentRef Id="CompanyDirComp"/>
            <ComponentGroupRef Id="PluginDLLGroup"/>
        </Feature>
      <UI>
        <Property Id="DefaultUIFont">DlgFont10</Property>
        <TextStyle Id="DlgFont10" FaceName="Tahoma" Size="10" />
        <Dialog Id="CompleteDlg"
            Width="370"
            Height="270"
            Title="Plugin installed">
          <Control Id="Description"
               Type="Text"
               X="50"
               Y="70"
               Width="220"
               Height="80"
               Text="Installation complete, return to web browser." />
          <Control Id="Finish"
               Type="PushButton"
               X="180"
               Y="243"
               Width="56"
               Height="17"
               Default="yes"
               Cancel="yes"
               Text="OK">
            <Publish Event="EndDialog" Value="Exit" />
          </Control>
        </Dialog>
        <InstallUISequence>
          <Show Dialog="CompleteDlg" OnExit="success" />
        </InstallUISequence>
        <AdminUISequence>
          <Show Dialog="CompleteDlg" OnExit="success" />
        </AdminUISequence>
      </UI>
    </Product>
</Wix>

但是当我构建它时,我得到了这些错误信息
错误2:错误LGHT0204: ICE20:标准对话框:'FilesInUse'不在对话框表
错误3 LGHT0204: ICE20: ErrorDialog属性表中没有指定。决定ErrorDialog
名称的必需属性错误4 LGHT0204: ICE20:在"InstallUISequence"序列表中没有找到FatalError对话框/操作。
错误5 LGHT0204: ICE20:"AdminUISequence"序列表中未找到FatalError对话框/操作。
在"InstallUISequence"序列表中没有找到UserExit对话框/操作。
错误7 LGHT0204: ICE20: UserExit对话框/操作在"AdminUISequence"序列表中找不到。

我不需要其他对话,只需要这个。如何解决这个问题?我能忽略这些信息吗?

如果一个包有任何对话框,Windows安装程序要求它有一个最小的设置来显示UI,主要是在错误条件下。ICE20文档中有完整的列表

相关内容

  • 没有找到相关文章

最新更新