Sunday, March 18, 2012

How to get the build version of SharePoint 2010

Keeping track on SharePoint 2010 upgrades are critical for maintenance and development using SharePoint.
There are three methods from which the build version of SharePoint 2010 can be checked.

  • From the SharePoint 2010 Central Administration
Go to SharePoint 2010 Central Administration -> Upgrade and Migration -> Check Product and patch Installation Status
  • From PowerShell (registry entry)
 Go to SharePoint 2010 Management Shell and enter the following script to get the SharePoint 2010 version registered in the Windows registry
(Get-item "hklm:software\microsoft\shared tools\web server extensions\14.0").Getvalue("version")
  • From PowerShell (farm build version)
 Go to SharePoint 2010 Management Shell and enter the following script to get the SharePoint 2010 farm build version
(get-spfarm).buildversion

The newest updates on SharePoint 2010 Server can be checked from the following reference location.

References: http://technet.microsoft.com/en-us/sharepoint/ff800847

No comments:

Post a Comment