Finding the Version by PowerShell(get-item "hklm:software\microsoft\shared tools\web server extensions\12.0").getvalue("version") Source: Dave Hunter $farm = [Microsoft.SharePoint.Administration.SPFarm]::Local
$bv = $farm.BuildVersion.ToString()
$vertable = Import-Csv versions.csv
$vertable | where-object {$_.Version -eq $bv}
Source: Michael Blumenthal |
SharePoint 2010 Versions

This work is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License. Hosted generously by CustomWare
Comments (1)
Dec 09, 2009
Anonymous says:
Haven't had the chance to try 2010 yet but is it correc that the registry key is...Haven't had the chance to try 2010 yet but is it correc that the registry key is stored under the \12.0 value? Shouldn't it be \14.0 ?