How to Get SharePoint Farm ID using PowerShell?
Requirement:
Get SharePoint Farm ID to apply a third party product license to our SharePoint 2016 environment.
How to Get SharePoint Farm ID?
SharePoint farm id is a GUID which is uniquely identifies each farm. To get the Farm Id in SharePoint, use this handy PowerShell code.
You'll get a GUID similar to above screenshot. Although you can query SharePoint Farm config database to get this information, its strongly recommended to use PowerShell, instead of accessing SharePoint database.
To get the GUID of SharePoint Web Application, Site Collection, Site, List or Library, Fields, View - Refer: How to Find the GUIDs of SharePoint Web Application, Site Collection, Site, List, View and Columns
Get SharePoint Farm ID to apply a third party product license to our SharePoint 2016 environment.
How to Get SharePoint Farm ID?
SharePoint farm id is a GUID which is uniquely identifies each farm. To get the Farm Id in SharePoint, use this handy PowerShell code.
(Get-SPFarm).IdJust open SharePoint 2016 Management Shell and paste this cmdlet in it to find the farm id of the SharePoint Farm. This gets your the SharePoint farm id.
![]() |
get SharePoint farm guid powershell |
To get the GUID of SharePoint Web Application, Site Collection, Site, List or Library, Fields, View - Refer: How to Find the GUIDs of SharePoint Web Application, Site Collection, Site, List, View and Columns
My SharePoint Farm is down! Can I get it from anywhere else?
ReplyDeleteUse this Query on SharePoint Farm config Database: SELECT * From Objects where ClassId = '674DA553-EA77-44A3-B9F8-3F70D786DE6A'
Delete