Re: [WiX-users] Installing .NET Hotfix

2013-07-17 Thread Neil Sleightholm
lset.' Subject: Re: [WiX-users] Installing .NET Hotfix Hi Neil, Thanks for the email. Unfortunitally this still evaluates to false when the hotfix is installed. I tried to check to see if just .NET 4.0 was installed like this: DetectCondition="Netfx4FullVersion>=v4.0"

Re: [WiX-users] Installing .NET Hotfix

2013-07-16 Thread Doug Witt
statement is even valid in WIX. Doug -Original Message- From: Neil Sleightholm [mailto:n...@x2systems.com] Sent: Tuesday, July 16, 2013 2:35 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Installing .NET Hotfix Try this: De

Re: [WiX-users] Installing .NET Hotfix

2013-07-16 Thread Neil Sleightholm
Try this: DetectCondition="Netfx4FullVersion>=v4.0.30319.500" Neil -Original Message- From: Doug Witt [mailto:doug.w...@woodward.com] Sent: 16 July 2013 05:03 To: 'wix-users@lists.sourceforge.net' Subject: [WiX-users] Installing .NET Hotfix I am instal

[WiX-users] Installing .NET Hotfix

2013-07-15 Thread Doug Witt
I am installing a .NET hotfix in a bootstrapper. I want to be able to determine if the hotfix has already been installed. I have tried to use the DetectCondition attribute of the ExePackage to check the Netfx4FullVersion but it always evaluates to false. I think my syntax may be wrong. Here