SharePoint 2010 Versions

Table of Contents
For WSS3.0 and MOSS2007 please see SharePoint Versions
Released
Name WSS3.0 MOSS2007 Version Changes info
November 2009 SP2010 Public Beta 2     14.0.4536.1000  
October 2009 SP2010 (Tech Preview #2 - used for Ignite training)     14.0.0.4514  
July 2009 SP 2010 (Tech Preview)     14.0.4006.1030

Finding the Version by PowerShell

(get-item "hklm:software\microsoft\shared tools\web server extensions\12.0").getvalue("version")

Source: Dave Hunter
OR

    
    $farm = [Microsoft.SharePoint.Administration.SPFarm]::Local
    $bv = $farm.BuildVersion.ToString()
    $vertable = Import-Csv versions.csv
    $vertable | where-object {$_.Version -eq $bv}

Source: Michael Blumenthal

Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.
  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 ?


Creative Commons License
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License.