Get Installed SharePoint Farm Version Build Number/Patch Level/Service Pack
Want to know the SharePoint version installed on your environment? There are several ways to get your MOSS 2007/SharePoint 2010 version build numbers. Here are some:
How to find installed SharePoint 2013 build version? Simple! Navigate to Central Administration >> System Settings >> Servers in this Farm
1. You can find SharePoint 2007 version in Central Administration:
- Go to Central Administration
- Click the Operations tab.
- Click Servers in farm under the “Topology and Services” section.
This shows the version number for the farm and each individual server in the farm.
Find what version of SharePoint is installed in SharePoint 2010:
Find out the SharePoint version you are running, Go to Central Admin >>Upgrade and Migration >> Select “Check product and patch installation status” to get the currently installed version.
2. Open any of your SharePoint site, click Site Action >> and then click Site Settings > On the Site Settings page, the version information is displayed next to the version.
3. You can identify the SharePoint version from Installed Programs. Go to Control Panel > Add and Remove Programs. Select SharePoint server and then click: Click here for support. Now a window will pop up that displays your current SharePoint version.
4. Open your SharePoint site in SharePoint Designer (can be the main site or any sub-site), click Site Settings under the Site menu on the top toolbar. You’ll find the version of SharePoint running the site on the general tab under SharePoint version
5. You can use the below code, If you want to get SharePoint version programmatically using object model:
using (SPSite startSite = new SPSite("<Central Admin url>"))
{
SPFarm farm = startSite.WebApplication.Farm;
console.write(BuildVersion.ToString());
}
How to get the SharePoint version using PowerShell?
To get SharePoint version using PowerShell, use this script.
$farm = [Microsoft.SharePoint.Administration.SPFarm]::Local
write-host $farm.BuildVersion
#We can use:(Get-SPFarm).BuildVersion.ToString() in SharePoint 2010 / 2013
6. Another shortcut to determine the SharePoint version: Get SharePoint version from registry key: go to the registry key: hklm\software\microsoft\shared tools\web server extensions\12.0 (or 14.0 for SharePoint 2010)
Here is the reference table:
SharePoint 2007 version numbers:
SharePoint 2007 Release | KB Reference | Version Number |
---|---|---|
August 2010 Cumulative update | KB2276474/KB2276472 | 12.0.0.6545 |
June 2010 Cumulative update | KB983311/KB983310 | 12.0.0.6539 |
April 2010 Cumulative update | KB981043/KB981042 | 12.0.0.6535 |
February 2010 Cumulative update | KB978396/KB978395 | 12.0.0.6529 |
December 2009 Cumulative update | KB977027/KB977026 | 12.0.0.6524 |
October 2009 Cumulative update | KB974989/KB974988 | 12.0.0.6520 |
August 2009 Cumulative update | KB973410/KB973409 | 12.0.0.6514 |
June 2009 Cumulative update | KB971538/KB972569 | 12.0.0.6510 |
April 2009 Cumulative Update | KB971537/KB971538 | 12.0.6510.5000 |
April 2009 Cumulative Update | KB968851/KB968850 | 12.0.0.6504 |
Service Pack 2 | KB953334/KB953338 | 12.0.0.6421 |
Cumulative update | KB956056/KB956057 | 12.0.0.6327 |
Infrastructure Update | KB951695/KB951297 | 12.0.0.6318 |
post-SP1 hotfix | KB948945 | 12.0.0.6303 |
post-SP1 hotfix | KB941274 | 12.0.0.6301 |
post-SP1 hotfix | KB941422 | 12.0.0.6300 |
SP1 | KB936984/KB936988 | 12.0.0.6219 |
Security Bulletin MS07-059 | KB942017 | 12.0.0.6039 |
August 24, 2007 hotfix package | KB941422 | 12.0.0.6036 |
RTM [Released To Manufacturing] | – | 12.0.0.4518 |
Beta 2 TR | – | 12.0.0.4407 |
Beta 2 | – | 12.0.0.4017 |
Get the latest patches from: https://technet.microsoft.com/en-us/office/sharepointserver/bb735839.aspx
SharePoint 2010 version numbers:
​Description | SPF KB​ | SPS KB​ | Version​ |
---|---|---|---|
SP 2010 (Tech Preview) | 14.0.4006.1030 | ||
Beta​ | ​ | ​ | 14.0.4536.1000​ |
RTM​ | ​ | ​ | 14.0.4763.1000​ |
Jun 2010 ​ | KB2028568​ | ​ | 14.0.5114​ |
Aug 2010 CU​ | KB2352346​ | KB2352342​ | 14.0.5123.5000​ |
Oct 2010 CU​ | KB2394323​ | KB2394320​ | 14.0.5128.5003​ |
Dec 2010 CU​ | KB2459125​ | KB2459257​ | 14.0.5130.5002​ |
​Feb 2011 CU | ​KB2475880 | ​KB2475878 | ​14.0.5136.5002 |
Apr 2011 CU​ | KB2512804​ | KB2512800​ | 14.0.5138.5001​ |
SP1​ | KB2460058​ | KB2460045​ | 14.0.6029.1000​ |
Jun 2011 CU​ | KB2536601​ | KB2536599​ | 14.0.6106.5000​ |
You can get the latest releases from: https://technet.microsoft.com/en-us/sharepoint/ff800847/
Last but not least: To check version build number for SPS 2003:
Go to Control Panel >> Add/Remove Programs >> Microsoft Office SharePoint Portal Services or Windows SharePoint Services >> Click Here for Support Information.
It may usefull for the one who knows where Central Administration is 😀 😀
you start everything “Go to Central Administration” here.
but honestly, where is that 😀 ?
Hi,
Can we have PowerShell script to get Build Number for which is already installed CU/Patchs/Service Pack in SharePoint 2010.
Can you please help me on this.
Thanks,
Srini