How to detect what .NET Framework versions and service packs are installed? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T01:52:25Z http://stackoverflow.com/feeds/question/199080 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/199080/how-to-detect-what-net-framework-versions-and-service-packs-are-installed 22 How to detect what .NET Framework versions and service packs are installed? Scott Dorman 2008-10-13T21:22:21Z 2009-10-16T16:52:11Z <p>A similar question was asked <a href="http://stackoverflow.com/questions/198931/how-do-i-tell-if-net-35-sp1-is-installed">here</a>, but was specific to .NET 3.5. Specifically, I'm looking for the following:</p> <ol> <li>What is the correct way to determine which .NET Framework versions and service packs are installed? </li> <li>Is there a list of registry keys that can be used?</li> <li>Are there any dependencies between Framework versions?</li> </ol> http://stackoverflow.com/questions/199080/how-to-detect-what-net-framework-versions-and-service-packs-are-installed/199121#199121 2 Answer by Franci Penov for How to detect what .NET Framework versions and service packs are installed? Franci Penov 2008-10-13T21:37:41Z 2008-10-13T21:37:41Z <p>Enumerate the subkeys of HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP. Each subkey is a .Net version. It should have Install=1 value if it's present on the machine, an SP value that shows the service pack and an MSI=1 value if it was installed using an MSI. (.Net 2.0 on Vista doesn't have the last one for example, as it is part of the OS)</p> http://stackoverflow.com/questions/199080/how-to-detect-what-net-framework-versions-and-service-packs-are-installed/199783#199783 25 Answer by Scott Dorman for How to detect what .NET Framework versions and service packs are installed? Scott Dorman 2008-10-14T02:04:20Z 2008-10-17T16:52:57Z <p>The registry is the "official" way to detect if a specific version of the Framework is installed, but which registry keys are needed change depending on the Framework version you are looking for.</p> <pre> Framework Version Registry Key ------------------------------------------------------------------------------------------ 1.0 HKLM\Software\Microsoft\.NETFramework\Policy\v1.0\3705 1.1 HKLM\Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\Install 2.0 HKLM\Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\Install 3.0 HKLM\Software\Microsoft\NET Framework Setup\NDP\v3.0\Setup\InstallSuccess 3.5 HKLM\Software\Microsoft\NET Framework Setup\NDP\v3.5\Install </pre> <p>The value is also different. For .NET 1.0, the value is a String value; all others use a DWORD.</p> <p>Determining the service pack level follows a similar pattern:</p> <pre> Framework Version Registry Key ------------------------------------------------------------------------------------------ 1.0 HKLM\Software\Microsoft\Active Setup\Installed Components\{78705f0d-e8db-4b2d-8193-982bdda15ecd}\Version 1.0[1] HKLM\Software\Microsoft\Active Setup\Installed Components\{FDC11A6F-17D1-48f9-9EA3-9051954BAA24}\Version 1.1 HKLM\Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\SP 2.0 HKLM\Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\SP 3.0 HKLM\Software\Microsoft\NET Framework Setup\NDP\v3.0\SP 3.5 HKLM\Software\Microsoft\NET Framework Setup\NDP\v3.5\SP [1] Windows Media Center or Windows XP Tablet Edition </pre> <p>As you can see, determining the SP level for .NET 1.0 changes if you are running on Windows Media Center or Windows XP Tablet Edition. Again, .NET 1.0 uses a string value while all of the others use a DWORD.</p> <p>For .NET 1.0 the string value at either of these keys has a format of #,#,####,#. The last # is the Service Pack level.</p> <p>While I didn't explicitly ask for this, if you want to know the exact version number of the Framework you would use these registry keys:</p> <pre> Framework Version Registry Key ------------------------------------------------------------------------------------------ 1.0 HKLM\Software\Microsoft\Active Setup\Installed Components\{78705f0d-e8db-4b2d-8193-982bdda15ecd}\Version 1.0[1] HKLM\Software\Microsoft\Active Setup\Installed Components\{FDC11A6F-17D1-48f9-9EA3-9051954BAA24}\Version 1.1 HKLM\Software\Microsoft\NET Framework Setup\NDP\v1.1.4322 2.0[2] HKLM\Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\Version 2.0[3] HKLM\Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\Increment 3.0 HKLM\Software\Microsoft\NET Framework Setup\NDP\v3.0\Version 3.5 HKLM\Software\Microsoft\NET Framework Setup\NDP\v3.5\Version [1] Windows Media Center or Windows XP Tablet Edition [2] .NET 2.0 SP1 [3] .NET 2.0 Original Release (RTM) </pre> <p>Again, .NET 1.0 uses a string value while all of the others use a DWORD.</p> <p>For .NET 1.0 the string value at either of these keys has a format of #,#,####,#. The #,#,#### portion of the string is the Framework version.</p> <p>For .NET 1.1, we use the name of the registry key itself, which represents the version number.</p> <p>Finally, if you look at dependencies, .NET 3.0 adds additional functionality to .NET 2.0 so both .NET 2.0 and .NET 3.0 must both evaulate as being installed to correctly say that .NET 3.0 is installed. Likewise, .NET 3.5 adds additional functionality to .NET 2.0 and .NET 3.0, so .NET 2.0, .NET 3.0, and .NET 3. should all evaluate to being installed to correctly say that .NET 3.5 is installed.</p> http://stackoverflow.com/questions/199080/how-to-detect-what-net-framework-versions-and-service-packs-are-installed/644266#644266 0 Answer by mapache for How to detect what .NET Framework versions and service packs are installed? mapache 2009-03-13T19:31:12Z 2009-03-13T19:31:12Z <p>Using the <a href="http://www.signumframework.com/Default.aspx?Page=Others&amp;AspxAutoDetectCookieSupport=1#AboutTools" rel="nofollow">Signum.Utilities</a> library from <a href="http://www.signumframework.com" rel="nofollow">SignumFramework</a> (wich you can use stand-alone), you can get it nicely and without dealing with the registry by yourself:</p> <pre><code> AboutTools.FrameworkVersions().ToConsole(); //Writes in my machine: //v2.0.50727 SP2 //v3.0 SP2 //v3.5 SP1 </code></pre> http://stackoverflow.com/questions/199080/how-to-detect-what-net-framework-versions-and-service-packs-are-installed/849441#849441 0 Answer by Ugo Abano for How to detect what .NET Framework versions and service packs are installed? Ugo Abano 2009-05-11T18:34:45Z 2009-10-16T16:51:43Z <p>Well anyway the <a href="http://www.signumframework.com/%28X%281%29S%283clidk45qxrv3w55oh1bpyyj%29%29/Default.aspx?Page=SignumUtilitiesIntroduction&amp;AspxAutoDetectCookieSupport=1" rel="nofollow">Signum.Utilities</a> methods are still an interesting way.</p> http://stackoverflow.com/questions/199080/how-to-detect-what-net-framework-versions-and-service-packs-are-installed/984677#984677 1 Answer by Priyatna Harun for How to detect what .NET Framework versions and service packs are installed? Priyatna Harun 2009-06-12T01:50:03Z 2009-06-12T01:50:03Z <p>You can also detect the version and service pack installed, based on Mscorlib.dll file version.</p> <p><a href="http://msdn.microsoft.com/en-us/kb/kb00318785.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/kb/kb00318785.aspx</a></p>