在自定义操作之前安装组件

Install components before custom actions

我的设置应用程序应该在 sql 服务器中创建用户并恢复数据库。我把它作为两个独立的项目来做;一个将数据库备份文件复制到机器上,另一个执行操作。我打算把它做成一个项目。

  <Fragment>  
    <Directory Id="TARGETDIR" Name="SourceDir">      
       <Directory Id="ProgramFiles64Folder" Name="Program Files"  >
          <Directory Id="INSTALLFOLDER" Name="My Produact name" >
            <Directory Id="DBDIR" Name="DB PreReq"  ></Directory>
          </Directory>
       </Directory>
    </Directory>

    <UI Id="DbConfigSetupUI"  >      
      <TextStyle Id="DlgFont8" FaceName="Tahoma" Size="8" ></TextStyle>
      <TextStyle Id="DlgTitleFont" FaceName="Tahoma" Size="8" Bold="yes" ></TextStyle>
      <UIRef Id="Custom_WixUI_Mondo" />      
      <UIRef Id="WixUI_ErrorProgressText" />
      <InstallUISequence >               
          <Custom Action="CreateUserWithSa"  Before="FileCost"  >NOT Installed</Custom>          
          <Custom Action="CreateUserWithWindows" After="CreateUserWithSa"  >(SARETURN="fail") AND NOT Installed</Custom>
          <Show   Dialog="ConnectionStringDialog" After="CreateUserWithWindows"   >(WINDOWSRETURN="fail") AND NOT Installed</Show>
          <Custom Action="CreateUserWithPrompt"  After="ConnectionStringDialog" >(DBLOGIN AND PASSWORD) AND NOT Installed</Custom>        
          <Custom Action="CreateDB"  After="CreateUserWithPrompt" >(SARETURN="pass" OR WINDOWSRETURN="pass" OR PROMPTRETURN="pass") AND NOT Installed</Custom>        
      </InstallUISequence>      
    </UI>
  </Fragment>

这里没有复制文件(组件放在单独的文件中),但正在执行自定义操作。由于备份文件是恢复所必需的。我需要它先发生。有办法实现吗?

在 InstallExecuteSequence 中的 InstallFinalize 之后将您的自定义操作安排到 运行。您可以保证到那时您的文件将被安装。请注意,如果您的操作需要访问它们,您将需要存储 property/data 值。