Re: [WiX-users] Managed bootstrapper on a PC without .NET framework 4.0

2014-05-16 Thread Farrukhw
Ok, just solved this. On Windows 7 without SP1, there is Net FW 3.5. In my BootstrapperCore.Config file, it was: ** *I removed .* This causes bootstrapper to launch .Net FW 4.0 installation (Packed with as payload). It updated the machine with .Net FW 4 and then launch

Re: [WiX-users] Managed bootstrapper on a PC without .NET framework 4.0

2014-05-16 Thread Farrukhw
Sky, I faced same problem. At the end, we discovered that on Win 7 with no SP, we are getting this error. When we installed Net Framework 4 (dotNetFx40_Full_x86_x64.exe) on same windows, it started working fine. So finally we got to know that on Windows 7 + Service Pack 1, it may work fine. How

Re: [WiX-users] Managed bootstrapper on a PC without .NET framework 4.0

2014-01-24 Thread sky
Thanks. I edited BootstrapperCore.config file and it works. Just commented out . -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Re-Managed-bootstrapper-on-a-PC-without-NET-framework-4-0-tp7592029p7592031.html Sent from the wix-users mailing list

Re: [WiX-users] Managed bootstrapper on a PC without .NET framework 4.0

2014-01-23 Thread Blair Murri
Share the contents of your config file for your BA It is probably telling the stdba that you work with 3.5 so it doesn’t run the prereq on win7 (since 3.5 is included in win7), then the load fails because you require 4.x. Blair From: sky Sent: ‎Thursday‎, ‎January‎ ‎23‎, ‎2014 ‎10‎:‎

Re: [WiX-users] Managed bootstrapper on a PC without .NET framework 4.0

2014-01-23 Thread sky
Thanks for the reply. I set the value of WixMbaPrereqPackageId variable to the id of dotnet 4.0 package included in my bundle. So it now runs well on a Windows Xp PC where dotnet 4.0 is not installed. But it still doesn't run on the Windows 7 PC where dotnet 4.0 is not installed. Log files of insta

Re: [WiX-users] Managed bootstrapper on a PC without .NET framework 4.0

2014-01-23 Thread Sean
the .NET framework so that it can install it before it starts your bootstrapper. > Date: Thu, 23 Jan 2014 18:32:19 -0800 > From: volon...@gmail.com > To: wix-users@lists.sourceforge.net > Subject: [WiX-users] Managed bootstrapper on a PC without .NET framework 4.0 > > I made a ma

[WiX-users] Managed bootstrapper on a PC without .NET framework 4.0

2014-01-23 Thread sky
I made a managed bootstrapper using wix burn following instructions on the book Wix 3.6: A Developer's Guide to Windows Installer XML(Chapter 16). I used Prism 4.1 and targeted dotnet framework 4.0. It runs well on my Windows 7 PC where dotnet 4.0 and 4.5 are installed. But it doesn't run on anothe