First thing you need to download Bootstrapper Manifest Generator and generate
a package for postgresql (you will need an installer, for example:
postgresql-8.4.0-1-windows). For me it creates directory in MyDocuments
folder. You need to copy it to 
C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bootstrapper

Then open your .wixproj file in text editor and add the following

  <ItemGroup>
    <BootstrapperFile Include="Postgresql8.4.Installer">
      <Visible>False</Visible>
      <ProductName>Postgresql 8.4</ProductName>
      <Install>true</Install>
    </BootstrapperFile>
  </ItemGroup>
  <Target Name="AfterBuild">
    <GenerateBootstrapper ApplicationFile="Cairo.Producer.Setup.msi"
ApplicationName="Cairo Producer - Instalacja"
BootstrapperItems="@(BootstrapperFile)" OutputPath=".\bin\Release"
ComponentsLocation="Relative" Culture="pl-PL" Path="C:\Program
Files\Microsoft SDKs\Windows\v6.0A\Bootstrapper" />
  </Target>

If you give me email i can send file that bootstrapper generated for me ;) 


-- 
View this message in context: 
http://n2.nabble.com/Wix-and-PostgreSQL-tp3609738p3610724.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to