Re: [WiX-users] .NET 4.5.2 and MBA

2014-08-09 Thread James Welle
-Original Message- From: Bob Arnson [mailto:b...@joyofsetup.com] Sent: Friday, August 8, 2014 5:12 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] .NET 4.5.2 and MBA On 08-Aug-14 17:08, James Welle wrote: However an MBA does not inherently require .NET4. It could use any

Re: [WiX-users] .NET 4.5.2 and MBA

2014-08-09 Thread Rob Mensching
://www.firegiant.com/ -Original Message- From: James Welle [mailto:jwe...@articulate.com] Sent: Saturday, August 9, 2014 12:05 PM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] .NET 4.5.2 and MBA Thanks Bob, To verify my understanding, since my bundle is going

Re: [WiX-users] .NET 4.5.2 and MBA

2014-08-09 Thread Bob Arnson
On 09-Aug-14 15:04, James Welle wrote: To verify my understanding, since my bundle is going to require .NET 4.5.2, I should also make that the prereq for my MBA? If so, I guess the disadvantage I see to this is that most users will now see that prereq UI instead of just seeing my custom

[WiX-users] .NET 4.5.2 and MBA

2014-08-08 Thread James Welle
Hello, I currently have a Wix project with a custom managed bootstrapper application that is built using Wix 3.8 and that requires .NET 4.0 as a prerequisite. My Bundle.wxs includes: PackageGroupRef Id=NetFx40Web / And my bootstrapper config looks like: ?xml version=1.0 encoding=utf-8 ? !--

Re: [WiX-users] .NET 4.5.2 and MBA

2014-08-08 Thread Carter Young
Testing for 4.5.2 is a bit different than testing for 4.0, as 4.5.x doesn't contain any diferent Registry Keys etc. Haang on whilst I google... :) Quoting James Welle jwe...@articulate.com: Hello, I currently have a Wix project with a custom managed bootstrapper application that is

Re: [WiX-users] .NET 4.5.2 and MBA

2014-08-08 Thread John Cooper
...@jackhenry.com www.jackhenry.com -Original Message- From: Carter Young [mailto:ecyo...@grandecom.net] Sent: Friday, August 8, 2014 3:25 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] .NET 4.5.2 and MBA Testing for 4.5.2 is a bit different than testing for 4.0, as 4.5.x doesn't

Re: [WiX-users] .NET 4.5.2 and MBA

2014-08-08 Thread James Welle
:25 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] .NET 4.5.2 and MBA Testing for 4.5.2 is a bit different than testing for 4.0, as 4.5.x doesn't contain any diferent Registry Keys etc. Haang on whilst I google... :) Quoting James Welle jwe...@articulate.com: Hello, I

Re: [WiX-users] .NET 4.5.2 and MBA

2014-08-08 Thread John Cooper
x791011 jocoo...@jackhenry.com www.jackhenry.com -Original Message- From: James Welle [mailto:jwe...@articulate.com] Sent: Friday, August 8, 2014 3:45 PM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] .NET 4.5.2 and MBA Carter, I'm not trying to detect any .NET

Re: [WiX-users] .NET 4.5.2 and MBA

2014-08-08 Thread James Welle
To: General discussion about the WiX toolset. Subject: Re: [WiX-users] .NET 4.5.2 and MBA Well, if you're making a package for .NET 4.5.2, look at the registry probe in NetFx and use a util:RegistrySearch to load a Burn variable with what you need. -- John Merryweather Cooper Build Install

Re: [WiX-users] .NET 4.5.2 and MBA

2014-08-08 Thread eyoung100
Here is how you do it at the MSI level: StackOverflow - WiX - Check for .NET 4.5 http://stackoverflow.com/questions/13919416/check-for-net-4-5-full-install-which-property Here is the Registry Detection Method: Don't Worry about the Blog, just use the DWORD Value

Re: [WiX-users] .NET 4.5.2 and MBA

2014-08-08 Thread John Cooper
[mailto:jwe...@articulate.com] Sent: Friday, August 8, 2014 3:54 PM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] .NET 4.5.2 and MBA Maybe my question is unclear. Check out the following two files. https://github.com/wixtoolset/wix3/blob/develop/src/ext/NetFxExtension

Re: [WiX-users] .NET 4.5.2 and MBA

2014-08-08 Thread James Welle
itself also required .NET4 and thus those variables were defined. Thanks, James -Original Message- From: John Cooper [mailto:jocoo...@jackhenry.com] Sent: Friday, August 8, 2014 3:03 PM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] .NET 4.5.2 and MBA A .NET 4.5.2

Re: [WiX-users] .NET 4.5.2 and MBA

2014-08-08 Thread Sean Hall
The reason that the WixMbaPrereqLicenseUrl variable is missing for 4.5.1 and 4.5.2 is that there is no official direct link to the license agreement for those versions. I'm guessing that the WixMbaPrereqPackageId hasn't been added because both variables were going to be added at the same time.

Re: [WiX-users] .NET 4.5.2 and MBA

2014-08-08 Thread James Welle
. Subject: Re: [WiX-users] .NET 4.5.2 and MBA The reason that the WixMbaPrereqLicenseUrl variable is missing for 4.5.1 and 4.5.2 is that there is no official direct link to the license agreement for those versions. I'm guessing that the WixMbaPrereqPackageId hasn't been added because both

Re: [WiX-users] .NET 4.5.2 and MBA

2014-08-08 Thread Sean Hall
No, it just means you need to define them yourself in your bundle. On Fri, Aug 8, 2014 at 4:16 PM, James Welle jwe...@articulate.com wrote: Interesting, does that mean that using a MBA that requires .NET4 with a bundle that requires .NET 4.5.1 or 4.5.2 does not work yet? James

Re: [WiX-users] .NET 4.5.2 and MBA

2014-08-08 Thread Bob Arnson
On 08-Aug-14 17:08, James Welle wrote: However an MBA does not inherently require .NET4. It could use any version. That's why I think it is a bug that those variables exist in NetFx4.wxs at all. Every bundle that uses a custom MBA should have to define those variables. The pre-req BA works

Re: [WiX-users] .NET 4.5.2 and MBA

2014-08-08 Thread Bob Arnson
On 08-Aug-14 17:13, Sean Hall wrote: The reason that the WixMbaPrereqLicenseUrl variable is missing for 4.5.1 and 4.5.2 is that there is no official direct link to the license agreement for those versions. I'm guessing that the WixMbaPrereqPackageId hasn't been added because both variables

Re: [WiX-users] .NET 4.5.2

2014-05-21 Thread Tobias S
Just for info. There seems to be an issue when installing NetFx 4.5.2 on Win 7 x64 Enterprise RTM: http://wixtoolset.org/issues/4416/ http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WiX-3-8-Installer-and-NetFx-4-5-2-on-Win7-x64-td7594631.html

[WiX-users] .NET 4.5.2

2014-05-20 Thread Neil Sleightholm
I am working on a .NET 4.5.2 install and am looking for the direct link to download it in my bundle. For 4.5.1 the link is http://go.microsoft.com/fwlink/?LinkId=322116 does anyone know what the equivalent is for 4.5.2 or where to find it? (I am looking for the fwlink link id not the location

Re: [WiX-users] .NET 4.5.2

2014-05-20 Thread David Watson
http://support.microsoft.com/kb/2901907 has it at http://go.microsoft.com/fwlink/?LinkId=328856 -Original Message- From: Neil Sleightholm [mailto:n...@x2systems.com] Sent: 20 May 2014 10:57 To: wix-users (wix-users@lists.sourceforge.net) Subject: [WiX-users] .NET 4.5.2 I am working

Re: [WiX-users] .NET 4.5.2

2014-05-20 Thread Neil Sleightholm
Afraid that just takes you to the download page, I need the actual download. -Original Message- From: David Watson [mailto:dwat...@sdl.com] Sent: 20 May 2014 11:18 To: General discussion about the WiX toolset. Subject: Re: [WiX-users] .NET 4.5.2 http://support.microsoft.com/kb/2901907

Re: [WiX-users] .NET 4.5.2

2014-05-20 Thread Sean Hall
- From: David Watson [mailto:dwat...@sdl.com] Sent: 20 May 2014 11:18 To: General discussion about the WiX toolset. Subject: Re: [WiX-users] .NET 4.5.2 http://support.microsoft.com/kb/2901907 has it at http://go.microsoft.com/fwlink/?LinkId=328856 -Original Message- From: Neil

Re: [WiX-users] .NET 4.5.2

2014-05-20 Thread Neil Sleightholm
Perfect, that also saves me submitting the update. -Original Message- From: Sean Hall [mailto:r.sean.h...@gmail.com] Sent: 20 May 2014 14:17 To: General discussion about the WiX toolset. Subject: Re: [WiX-users] .NET 4.5.2 I haven't tested it, but someone sent a pull request for .NET