Monday 20 February 2012

Determine SP2010 & SP2013 edition & patching Level

Problem: You go to a client to work o the farm and you need to know what the production farm is running i.e. SP2010 version and patching.  This also applied to moving data and features from QA to production.

Todd Klindt keeps a list of SP & OWA version numbers for SP2013.

Initial Hypothesis:  Use PowerShell to determine which edition of SP2010 is installed and the patching level.

Resolution:
PS> (get-spfarm).buildversion
PS> get-spfarm | select Products
OR Central Admin > System Settings > Servers on farm
Update 27 July 2013: Build 15.0.4481.1005 is SP2013 with the PU March 2013 (This PU is required before you install any subsequent CU's).  Build 15.0.4420.1017 is SP2013 without PU or CU's.
 
 
SP2013 with PU march 2013 and CU June 2013 shown below:
 
 
Product GUID Titles:
BEED1F75-C398-4447-AEF1-E66E1F0DF91E: SharePoint Foundation 2010
3FDFBCC8-B3E4-4482-91FA-122C6432805C: SharePoint Server 2010 Standard
D5595F62-449B-4061-B0B2-0CBAD410BB51: SharePoint Server 2010 Enterprise
B2C0B444-3914-4ACB-A0B8-7CF50A8F7AA0: SharePoint Server 2010 Standard Trial
88BED06D-8C6B-4E62-AB01-546D6005FE97: SharePoint Server 2010 Enterprise Trial
BC4C1C97-9013-4033-A0DD-9DC9E6D6C887: Search Server 2010 Trial
08460AA2-A176-442C-BDCA-26928704D80B: Search Server 2010
926E4E17-087B-47D1-8BD7-91A394BC6196: Office Web Companions 2010
Source: http://altamodatech.com/blogs/?p=405

Http header version unrelability post
PS script to check SQL and SharePoint. 
 
Reference List of SP2013 versions

2 comments:

MikeD said...

I noted that your get-spfarm returns values of "Sharepoint Foundation 2010" and "Sharepoint Enterprise 2010". When I ran this on my install - it reports SP Foundation and SP Standard 2010. I believe I am only running Sharepint 2010 standard. Why am I seeing Foundation!!??

Mike

Paul Beck said...

Hi Mike, If you have standard edition you will see the Products Guid for Foundation followed by Standard edition. The paid for versions are built on top of foundation. As in MOSS, WSS was like foundation which you then put paid for edition on. It is correct. The example above shows the foundation and Enterprise edition whereas yours will show foundation and then the standard edition product guids.

Post a Comment