vote up 8 vote down star
3

This question is not so much programming related as it is deployment related.

I find myself conversing a lot with the group in my company whose job it is to maintain our production Windows servers and deploy our code on them. For legal and compliance reasons, I do not have direct visibility or any control over the servers so the only way I can tell which version(s) of .NET are installed on any of them is through directions I give to that group.

So far, all of the methods I can think of to tell which version(s) are installed (check for Administrative Tools matching 1.1 or 2.0, check for the entries in the "Add/Remove Programs" list, check for the existence of the directories under c:\Windows\Microsoft.NET) are flawed (I've seen at least one machine with 2.0 but no 2.0 entries under Administrative Tools - and that method tells you nothing about 3.0+, the "Add/Remove Programs" list can get out of sync with reality, and the existence of the directories doesn't necessarily mean anything).

Given that I generally need to know these things are in place in advance (discovering that "oops, this one doesn't have all the versions and service packs you need" doesn't really work well with short maintenance windows) and I have to do the checking "by proxy" since I can't get on the servers directly, what's the foolproof way to tell which version(s) of .NET are installed on a production Windows Server? Preferably some intrinsic way to do so using what the framework installs since it will be quicker and not need some sort of utility to be loaded and also a method which will definitely fail if the frameworks are not properly installed but still have files in place (i.e., there's a directory and gacutil.exe is inded there but that version of the framework is not really "installed")

EDIT: In the absence of a good foolproof intrinsic way to do this built into the Framework(s), does anyone know of a good, lightweight, no-install-required program that can find this out? I can imagine someone could easily write one but if one already exists, that would be even better.

flag

2  
Foolproof? Ain't no such thing. "Make it idiot-proof, and they build a better idiot" – Danimal Sep 26 '08 at 14:33
I looked into this a while back and couldn't find a definitive way to do this. I'd be interest to see what answers we get. – Kev Sep 26 '08 at 14:34

11 Answers

vote up 2 vote down

OneTouch deployment will do all the detection and installation of pre-requisites. It's probably best to go with a pre-made solution than trying to roll your own. Trying to roll your own may lead to problems because whatever thing you key on may change with a hotfix or service pack. Likely Microsoft has some heuristic for determining what version is running.

link|flag
vote up 0 vote down

It is probably a nasty way to find vewrsions out but I was always under the impression that all version got installed to :\WINDOWS\Microsoft.NET\Framework

This provides folders with names such as v2.0.50727 which I believe give detailed version information

link|flag
And that might be the right way but the "what if?" in my head says "what if the files are there but the Framework isn't really 'installed' and some clueless admin thought copying the files over was the way to do it?" – Schnapple Sep 26 '08 at 14:41
vote up 6 vote down

You can programmatically check the registry and a few other things as per this blog entry.

The registry key to look at is

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\...]
link|flag
I can't tell - does this also cover 1.1? – Schnapple Sep 26 '08 at 18:55
vote up -1 vote down

You should open up IE on the server for which you are looking for this info, and go to this site: http://www.hanselman.com/smallestdotnet/

That's all it takes.

link|flag
- if it's a production server, he might not even have access to it - browsing random sites on prod server is a big no-no - that site gives only the highest .Net version; he wants all of them – Franci Penov Sep 26 '08 at 14:44
Problem, looks like, with that approach is that it only tells you what the latest version you have is. I deploy code in 2.0, 3.0, 3.5 and (sadly) even 1.1. Although the goal is to get everything upgraded eventually, the sad fact for now is that I need all the different parallel versions. – Schnapple Sep 26 '08 at 14:47
vote up 2 vote down

Well, this is the official Microsoft answer on how to do this....

KB article 318785

link|flag
vote up 2 vote down

The Microsoft way is this:

http://support.microsoft.com/kb/318785

If you want foolproof that's another thing. I wouldn't worry about an xcopy of the framework folder. If someone did that I would consider the computer broken.

The most foolproof way would be to write a small program that uses each version of .NET and the libraries that you care about and run them.

For a no install method, PowerBasic is an excellent tool. It creates small no runtime required exe's. It could automate the checks described in the MS KB article above.

link|flag
vote up 1 vote down

The official way to detect .NET 3.0 is described here

http://msdn.microsoft.com/en-us/library/aa480198.aspx

Flawed, because it requires the caller to have registry access permissions.

MSDN also mentions a technique for detecting .NET 3.5 by checking the User Agent string:

http://msdn.microsoft.com/en-us/library/bb909885.aspx

I think Microsoft should have done a better job than this.

link|flag
vote up 0 vote down

If the machine that you want to check has the .net SDK installed, you can use a SDK cmd prompt and run the program CLRVer.exe

link|flag
vote up 0 vote down

Take a look at this thread, which gives you the full details of the registry keys you need to evaluate.

link|flag
vote up 0 vote down

Well, like Dean said you can look at registry and do what he did. To check if he really has CLR .NET Framework installed, you should look for MSCorEE.dll file in %SystemRoot%\System32 directory.

link|flag
vote up 0 vote down

As per CodeTrawler's answer, the solution is to enter the following into an explorer window:

%systemroot%\Microsoft.NET\Framework

Then search for:

Mscorlib.dll

...and right-click / go to the version tab for each result.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.