vote up 15 vote down star
3

How can I find out if SP1 has been installed on a server which has .NET 3.5?

flag

73% accept rate

8 Answers

vote up 3 vote down check

Use Add/Remove programs from the Control Panel.

link|flag
3  
Surely rp should get a special badge for having an answer marked as correct with negative votes? – Guy May 9 at 17:03
Go figure. Later, I thought I missed a "programatically" point to your question, Guy. – rp May 11 at 2:58
vote up 33 vote down

Look at

HKLM\SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.5\

The Version value in that key should be 3.5.30729.01

Or the SP value in the same key should be 1

link|flag
const string name = @"SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.5"; RegistryKey subKey = Registry.LocalMachine.OpenSubKey(name); var version = subKey.GetValue("Version").ToString(); var servicePack = subKey.GetValue("SP").ToString(); – CJCraft.com May 5 at 20:54
vote up 8 vote down

You could go to SmallestDotNet using IE from the server. That will tell you the version and also provide a download link if you're out of date.

link|flag
vote up 5 vote down

Take a look at this article which shows the registry keys you need to look for and provides a .NET library that will do this for you.

First, you should to determine if .NET 3.5 is installed by looking at HKLM\Software\Microsoft\NET Framework Setup\NDP\v3.5\Install, which is a DWORD value. If that value is present and set to 1, then that version of the Framework is installed.

Look at HKLM\Software\Microsoft\NET Framework Setup\NDP\v3.5\SP, which is a DWORD value which indicates the Service Pack level (where 0 is no service pack).

To be correct about things, you really need to ensure that .NET Fx 2.0 and .NET Fx 3.0 are installed first and then check to see if .NET 3.5 is installed. If all three are true, then you can check for the service pack level.

link|flag
article link is changed, here it is the new location: codeproject.com/KB/dotnet/… – marco.ragogna Jul 2 at 9:34
vote up 3 vote down

All of the answers given so far require having console (direct or remote) access to the server itself. But what if you’re developing an ASP.NET 3.5 SP1 website which requires SP1-specific features such as Dynamic Data, and you need to know if your hosting service has upgraded to 3.5 SP1 on the specific server you’re on?

I think the question was, how do you tell, from just ASP.NET code on an .aspx page, if the remote hosting server has ASP.NET 3.5 SP1 installed? No access to the Registry, to Uninstall files, etc. would be available in such a case.

I, for one, definitely would like to know.

link|flag
vote up 0 vote down

Assuming that the name is everywhere "Microsoft .NET Framework 3.5 SP1", you can use this:

string uninstallKey = @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall";
using (RegistryKey rk = Registry.LocalMachine.OpenSubKey(uninstallKey))
{
    return rk.GetSubKeyNames().Contains("Microsoft .NET Framework 3.5 SP1");
}
link|flag
vote up 0 vote down

Also, if you want to know if a KB has been installed on top of 3.5 you can check HKLM\Software\Microsoft\Updates\Microsoft .NET Framework 3.5 SP1\\ThisVersionInstalled with the value = "Y"

link|flag
vote up 0 vote down

Another way is to check version of files on filesystem %WINROOT%\Microsoft.NET\Framework\v3.0\Windows Communication Foundation\System.ServiceModel.dll or other dll's and check the versions.

link|flag

Your Answer

Get an OpenID
or

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