Hi everyone,

I'm looking for MSBuild scripts to create a bootstrapper  file to deploy 3 
custom MSI installers,  if any of these installers failed, I have to rollback 
all these changes.  

For example:
I have to deploy App1.msi, App2.msi and App3.msi, the bootstrapper will check 
for .Net 3.5 as pre-requisites.  If App1 and App2 installed successfully but 
App3 failed, I have to rollback all files installed by App1 and App2.  

After I spend few hours on the internet, I can only find information how to 
check pre-requisites and deploy one product.  

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003";>
  <ItemGroup>
    <BootstrapperFile Include="Microsoft.Net.Framework.3.5">
      <ProductName>Microsoft .NET Framework 3.5</ProductName>
    </BootstrapperFile>
  </ItemGroup>

  <Target Name="Bootstrapper">
    <GenerateBootstrapper
      ApplicationFile="WixBootstrapSample.msi"
      ApplicationName="Wix Sample"
      BootstrapperItems="@(BootstrapperFile)"
      OutputPath=".\"
      ComponentsLocation="HomeSite"
      Culture="en"
    />
  </Target>
</Project>

Can anyone give me some hints how to deploy 3 installers and rollback the 
changes if any of those installer failed? 

Thanks in advance




      
------------------------------------------------------------------------------
The Palm PDK Hot Apps Program offers developers who use the
Plug-In Development Kit to bring their C/C++ apps to Palm for a share 
of $1 Million in cash or HP Products. Visit us here for more details:
http://ad.doubleclick.net/clk;226879339;13503038;l?
http://clk.atdmt.com/CRS/go/247765532/direct/01/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to