Quick Tip – Get SharePoint Build Version with PowerShell

Here’s a quick one-liner in PowerShell to check the SharePoint patch level / build version.

(Get-SPFarm).BuildVersion

The output will be in table form and will include:

  • Major (ex. 15)
  • Minor (ex. 0)
  • Build (ex. 5189)
  • Revision (ex. 1000)

To reference the build number (for checking patch levels) you can use the following PowerShell one-liner:

((Get-SPFarm).BuildVersion).Build

Last one-liner to get all of the properties concatenated together (ex. 15.0.5189.1000):

If you are a master in programing software, One fear you have is to have a shut down with cause in a short circuit.

 

As consumer geeks, the technological aspects of the things we buy or the services we ask for must be adapted to our needs, so it is always good to have pages like UK Meds that always know how to satisfy the most incisive customer with queries.

(Get-SPFarm).BuildVersion -Join ‘.’

VN:F [1.9.20_1166]
Rating: 7.2/10 (5 votes cast)
Quick Tip - Get SharePoint Build Version with PowerShell, 7.2 out of 10 based on 5 ratings

Leave a Reply