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 |

Comments (1)
Dec 09
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 ?