Re: [WiX-users] Wix 3.8 - Burn - Detection of .Net Framework 1.1 not working

2014-06-16 Thread froggie
Hi! This is my (for me) working solution (just for completeness): http://download.microsoft.com/download/4/f/3/4f3ac857-e063-45d0-9835-83894f20e808/dotnetfx.exe ?> Snippet Thank you for your help! PS: Maybe this could be added to the NetFxExtension ... Am 13.06.2014 18:44, schrieb Phi

Re: [WiX-users] Wix 3.8 - Burn - Detection of .Net Framework 1.1 not working

2014-06-13 Thread Phill Hogland
I have not done this with Net 1.1, but I did something similar with Net 3.51. In the Bundle use util:RegistrySearch for the registry value mentioned in the following link, with Result=exists". The use the result in the DetectCondition so that when true the package should not be launched. http://

Re: [WiX-users] Wix 3.8 - Burn - Detection of .Net Framework 1.1 not working

2014-06-13 Thread Carter Young
Darn, my apologies... Could he bundle the check in the first MSI in the bundle?? Carter Quoting Sean Hall : > No, that page is for MSI's. The WixNetFxExtension does not currently > provide a way to detect .NET 1.1 in a bundle. > > > On Fri, Jun 13, 2014 at 9:17 AM, Carter Young wrote: > >> S

Re: [WiX-users] Wix 3.8 - Burn - Detection of .Net Framework 1.1 not working

2014-06-13 Thread Sean Hall
No, that page is for MSI's. The WixNetFxExtension does not currently provide a way to detect .NET 1.1 in a bundle. On Fri, Jun 13, 2014 at 9:17 AM, Carter Young wrote: > See Step 4: > > > http://wixtoolset.org/documentation/manual/v3/howtos/redistributables_and_install_checks/check_for_dotnet.

Re: [WiX-users] Wix 3.8 - Burn - Detection of .Net Framework 1.1 not working

2014-06-13 Thread Carter Young
See Step 4: http://wixtoolset.org/documentation/manual/v3/howtos/redistributables_and_install_checks/check_for_dotnet.html Carter Quoting froggie : > Hi! > > I'm trying to detect if .Net Framework 1.1 is installed and then skip it > in my bootstrapper. But the setup of NetFx1.1 is always starti

[WiX-users] Wix 3.8 - Burn - Detection of .Net Framework 1.1 not working

2014-06-13 Thread froggie
Hi! I'm trying to detect if .Net Framework 1.1 is installed and then skip it in my bootstrapper. But the setup of NetFx1.1 is always starting and then crashing because it is already installed. Can you help? I have a reference to the netfx-extension and util-extension. Here is the relevant? code-