Re: [WiX-users] Custom bootstrapper and Server 2008 R2

2013-04-26 Thread ddsoft
That is not clear to me how to do. It appears the BA tries to load my
assembly first no? How do I get it to install v4 before loading me? The
salient parts of the Bundle.wxs are below

  Bundle Name=Living PlanIT SA PlanIT OS Version=1.0.0.0
Manufacturer=Living PlanIT SA
UpgradeCode=1910e30b-4c14-419f-817e-c9b8c53863aa
  HelpUrl=http://www.living-planit.com;
  Copyright=Copyright© 2013, Living PlanIT SA
IconSourceFile=UI\Setup.ico
  SplashScreenSourceFile=UI\SplashScreen.jpg
  AboutUrl=http://www.living-planit.com;

BootstrapperApplicationRef Id=ManagedBootstrapperApplicationHost 
  Payload
SourceFile=$(var.UOSCustomBootstrap.TargetDir)UOSCustomBootstrap.dll /
  Payload
SourceFile=$(var.UOSCustomBootstrap.TargetDir)BootstrapperCore.config /
  Payload
SourceFile=$(var.UOSCustomBootstrap.TargetDir)Microsoft.Practices.Prism.dll
/
  
/BootstrapperApplicationRef



Chain
  
  PackageGroupRef Id=NetFx40Web/
  RollbackBoundary Id=R1 /
  
  PackageGroupRef Id=SQL_SERVER_2012_EXPRESS/
  RollbackBoundary Id=R2 /
  MsiPackage SourceFile=$(var.UOSCore.TargetDir)UOSCore.msi
Visible=yes DisplayInternalUI=yes
MsiProperty Name=SQLEXPRESS Value=[SQLEXPRESS]/
MsiProperty Name=SQLUSERID Value=[SQLUSERID]/
MsiProperty Name=SQLPASSWORD Value=[SQLPASSWORD]/
MsiProperty Name=SQLSERVER Value=[SQLSERVER]/
  /MsiPackage
  
/Chain

  /Bundle




--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Custom-bootstrapper-and-Server-2008-R2-tp7585458p7585461.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Try New Relic Now  We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app,  servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_apr
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Custom bootstrapper and Server 2008 R2

2013-04-26 Thread ddsoft
Looks like I figured it out. It is not really apparent to a newbie on WiX
though so hopefully it saves someone else pain. In the
BootstrapperCore.config you have:

startup useLegacyV2RuntimeActivationPolicy=true
  supportedRuntime version=v2.0.50727 /
  supportedRuntime version=v4.0 /
/startup

Remove the v2 runtime line and the Bootstrapper will install v4 before
moving on. Hope this helps someone



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Custom-bootstrapper-and-Server-2008-R2-tp7585458p7585469.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Try New Relic Now  We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app,  servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_apr
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users