vote up 5 vote down star
1

What are the different ways (programatically & otherwise) to determine what versions of .NET are running on a system?

flag

8 Answers

vote up 3 vote down check

Directly from the source.

How to detect the installed version of the .NET framework

link|flag
vote up 0 vote down

Get the smallest .NET Framework download possible that will tell you based on the headers you are sending. It only works on Internet Explorer or if you have the Firefox extension installed. More info in Hanselman's blog post.

link|flag
vote up 0 vote down

Some advice here: http://support.microsoft.com/kb/318785

And here is a little app that will give you even more information: dotnet version checker

link|flag
A note: the dotnet version checker, as of my writing this comment, detects v3.0 but not v3.5 ... bummer. – quux Sep 15 '08 at 21:25
vote up 3 vote down

Hurray for Google: Using managed code to detect what .NET Framework versions and service packs are installed

link|flag
link fix: codeproject.com/KB/dotnet/… – Sven Hecht Sep 21 at 12:56
vote up 0 vote down

If you're using IIS6 and above, open up IIS and click on Web Service Extensions. It will list each framework installed. Granted, .NET 3.0 and 3.5 are both based on the 2.0 framework.

link|flag
vote up 0 vote down

If you're wanting the current framework version in use then you can see that via:

System.Environment.Version
link|flag
vote up 0 vote down

It's not necessarily running I would say. Since you can have .NET 1.1, 2.0, 3.0 and 3.5 installed on the same machine and they can run perfectly side-by-side. Meaning one of your app can be running on top of 1.1 and another web application is running on 2.0.

In IIS (for web app), this is quite easy, just go to the property of the virtual directory / application and go to the ASP.NET tab, you should see what version of .NET you are actually using (or rather, what version of ASP.NET which is pretty much tied into the .NET Framework version).

ps. just remember, you can only run 1 version of .NET Framework per application pool in IIS. So if you try to use the same application pool to run different versions of the framework, you're in for a surprise. Solution is to just create a framework version specific application pool (i.e. one pool for all 1.1 framework and another for 2.0 framework)

link|flag
vote up 0 vote down

Take a look at this thread.

link|flag

Your Answer

Get an OpenID
or

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