[WiX-users] Re-evaluate NETFRAMEWORK20 Property

2010-07-21 Thread Thode, Katelyn
I was wondering if it is possible to re-evaluate the NETFRAMEWORK20 property after it was previously evaluated. My setup is that, when the next button is pressed on the welcome dialog, if the .NET Framework 2.0 is not installed, a dialog appears with a link to the website to install the .NET

Re: [WiX-users] Re-evaluate NETFRAMEWORK20 Property

2010-07-21 Thread Pally Sandher
...@guidancesoftware.com] Sent: 21 July 2010 15:15 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Re-evaluate NETFRAMEWORK20 Property I was wondering if it is possible to re-evaluate the NETFRAMEWORK20 property after it was previously evaluated. My setup is that, when the next button

Re: [WiX-users] Re-evaluate NETFRAMEWORK20 Property

2010-07-21 Thread Thode, Katelyn
XML toolset. Subject: Re: [WiX-users] Re-evaluate NETFRAMEWORK20 Property I doubt it's possible without modifying the WiXNetFxExtension code. Use a bootstrapper to sequence your pre-requisites. Concurrent installations are *very* dangerous highly unsupported by Windows Installer. Also consider

Re: [WiX-users] Re-evaluate NETFRAMEWORK20 Property

2010-07-21 Thread Pally Sandher
Message- From: Thode, Katelyn [mailto:katelyn.th...@guidancesoftware.com] Sent: 21 July 2010 16:17 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Re-evaluate NETFRAMEWORK20 Property Is there a bootstrapper that I can use that will detect if the OS is 32-bit

Re: [WiX-users] Re-evaluate NETFRAMEWORK20 Property

2010-07-21 Thread Thode, Katelyn
Disclaimer -Original Message- From: Thode, Katelyn [mailto:katelyn.th...@guidancesoftware.com] Sent: 21 July 2010 16:17 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Re-evaluate NETFRAMEWORK20 Property Is there a bootstrapper that I can use

Re: [WiX-users] Re-evaluate NETFRAMEWORK20 Property

2010-07-21 Thread Nick Ramirez
Apparently, there's hyperlink support with MSI 5.0. Bob Arnson blogs about it here: http://www.joyofsetup.com/2009/01/17/msi-v50-features-in-wix-v30/ Going back to your earlier question, about re-evaluating whether .NET is installed, the reason you're getting the same result even after .NET has

Re: [WiX-users] Re-evaluate NETFRAMEWORK20 Property

2010-07-21 Thread Pally Sandher
Disclaimer -Original Message- From: Thode, Katelyn [mailto:katelyn.th...@guidancesoftware.com] Sent: 21 July 2010 17:02 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Re-evaluate NETFRAMEWORK20 Property Thanks. I have been looking on google for several days

Re: [WiX-users] Re-evaluate NETFRAMEWORK20 Property

2010-07-21 Thread Blair
I was wondering if it is possible to re-evaluate the NETFRAMEWORK20 property after it was previously evaluated. The NetFramework detection properties are all implemented via RegistrySearch. I don't know of a good way to reevaluate them.

Re: [WiX-users] Re-evaluate NETFRAMEWORK20 Property

2010-07-21 Thread Thode, Katelyn
Installer XML toolset. Subject: Re: [WiX-users] Re-evaluate NETFRAMEWORK20 Property dotnetinstaller works perfectly fine on x64 platforms. I use it to do exactly what you're trying to achieve which is why I suggested looking at it yourself. You can't use hyperlinks in Windows Installer dialogs