How do I tell if .NET 3.5 SP1 is installed? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T13:47:55Zhttp://stackoverflow.com/feeds/question/198931http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/198931/how-do-i-tell-if-net-3-5-sp1-is-installed15How do I tell if .NET 3.5 SP1 is installed?Guy2008-10-13T20:32:43Z2009-10-16T18:37:44Z
<p>How can I find out if SP1 has been installed on a server which has .NET 3.5?</p>
http://stackoverflow.com/questions/198931/how-do-i-tell-if-net-3-5-sp1-is-installed/198959#19895933Answer by Ray for How do I tell if .NET 3.5 SP1 is installed?Ray2008-10-13T20:40:45Z2009-02-09T13:08:59Z<p>Look at</p>
<pre>
HKLM\SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.5\
</pre>
<p>The <code>Version</code> value in that key should be <strong>3.5.30729.01</strong></p>
<p>Or the <code>SP</code> value in the same key should be <strong>1</strong></p>
http://stackoverflow.com/questions/198931/how-do-i-tell-if-net-3-5-sp1-is-installed/198964#1989648Answer by Andy May for How do I tell if .NET 3.5 SP1 is installed?Andy May2008-10-13T20:42:17Z2008-10-13T20:42:17Z<p>You could go to <a href="http://www.smallestdotnet.com" rel="nofollow">SmallestDotNet</a> using IE from the server. That will tell you the version and also provide a download link if you're out of date.</p>
http://stackoverflow.com/questions/198931/how-do-i-tell-if-net-3-5-sp1-is-installed/198976#1989763Answer by rp for How do I tell if .NET 3.5 SP1 is installed?rp2008-10-13T20:45:39Z2008-10-13T20:45:39Z<p>Use Add/Remove programs from the Control Panel.</p>
http://stackoverflow.com/questions/198931/how-do-i-tell-if-net-3-5-sp1-is-installed/198998#1989980Answer by Panos for How do I tell if .NET 3.5 SP1 is installed?Panos2008-10-13T20:52:48Z2008-10-13T20:52:48Z<p>Assuming that the name is everywhere "Microsoft .NET Framework 3.5 SP1", you can use this:</p>
<pre><code>string uninstallKey = @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall";
using (RegistryKey rk = Registry.LocalMachine.OpenSubKey(uninstallKey))
{
return rk.GetSubKeyNames().Contains("Microsoft .NET Framework 3.5 SP1");
}
</code></pre>
http://stackoverflow.com/questions/198931/how-do-i-tell-if-net-3-5-sp1-is-installed/199047#1990475Answer by Scott Dorman for How do I tell if .NET 3.5 SP1 is installed?Scott Dorman2008-10-13T21:13:15Z2008-10-13T21:13:15Z<p>Take a look at this <a href="http://www.codeproject.com/KB/cs/frameworkversiondetection.aspx" rel="nofollow">article</a> which shows the registry keys you need to look for and provides a .NET library that will do this for you.</p>
<p>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.</p>
<p>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).</p>
<p>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.</p>
http://stackoverflow.com/questions/198931/how-do-i-tell-if-net-3-5-sp1-is-installed/293127#2931273Answer by JoelMMCC for How do I tell if .NET 3.5 SP1 is installed?JoelMMCC2008-11-15T22:09:49Z2008-11-15T22:09:49Z<p>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?</p>
<p>I <em>think</em> the question was, how do you tell, from <em>just</em> ASP.NET code on an .aspx page, if the <em>remote hosting server</em> has ASP.NET 3.5 SP1 installed? No access to the Registry, to Uninstall files, <em>etc.</em> would be available in such a case.</p>
<p>I, for one, definitely would like to know.</p>
http://stackoverflow.com/questions/198931/how-do-i-tell-if-net-3-5-sp1-is-installed/841245#8412450Answer by Jeff Timmins for How do I tell if .NET 3.5 SP1 is installed?Jeff Timmins2009-05-08T18:45:37Z2009-05-08T18:45:37Z<p>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"</p>
http://stackoverflow.com/questions/198931/how-do-i-tell-if-net-3-5-sp1-is-installed/871186#8711860Answer by lucas for How do I tell if .NET 3.5 SP1 is installed?lucas2009-05-15T22:52:30Z2009-05-15T22:52:30Z<p>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.</p>