Installed CLR versions

2011-06-16 Thread Ian Thomas
Apart from the utility clrver.exe (and the latest, v4.0.30319.1 is needed to report both 2.0 and 4.0), how can I determined the installed versions of the CLR on a machine? I can't discover a .NET function to report this. Ian Thomas Victoria Park, Western

Re: Installed CLR versions

2011-06-16 Thread David Burela
Does this help? http://stackoverflow.com/questions/951856/is-there-an-easy-way-to-check-net-framework-verison-using-c -David Burela On 16 June 2011 16:54, Ian Thomas il.tho...@iinet.net.au wrote: Apart from the utility clrver.exe (and the latest, v4.0.30319.1 is needed to report both 2.0 and

Re: Installed CLR versions

2011-06-16 Thread DotNet Dude
Maybe check the registry: HKLM\Software\Microsoft\Net Framework Setup\NDP On Thu, Jun 16, 2011 at 4:54 PM, Ian Thomas il.tho...@iinet.net.au wrote: Apart from the utility clrver.exe (and the latest, v4.0.30319.1 is needed to report both 2.0 and 4.0), how can I determined the installed versions

Re: Installed CLR versions

2011-06-16 Thread Wallace Turner
: Installed CLR versions Maybe check the registry: HKLM\Software\Microsoft\Net Framework Setup\NDP On Thu, Jun 16, 2011 at 4:54 PM, Ian Thomas il.tho...@iinet.net.au wrote: Apart from the utility clrver.exe (and the latest, v4.0.30319.1 is needed to report both 2.0 and 4.0), how can I determined

Re: Installed CLR versions

2011-06-16 Thread Matt Siebert
[mailto: ozdotnet-boun...@ozdotnet.com] *On Behalf Of *Wallace Turner *Sent:* Thursday, June 16, 2011 6:47 PM *To:* ozDotNet *Subject:* Re: Installed CLR versions Hi Ian, I need to test the client has the correct framework installed. I use something like this: (turn heads Tuple-haters

Re: Installed CLR versions

2011-06-16 Thread mike smith
On Thu, Jun 16, 2011 at 7:17 PM, Ian Thomas il.tho...@iinet.net.au wrote: Thanks for suggestions. It's probably as simple to check the framework folders installed on the machine (and to test that each has some valid files and is not empty), as to try to interpret the registry subkeys. I