How to Get SharePoint Farm Account?
SharePoint Farm Account manages the farm services. It runs the SharePoint timer service, used in application pool identity for Central Administration site and in database access. Typically configured at the time you run PSConfig wizard.
How to Get SharePoint Farm Account?
To identify SharePoint Farm account, follow these steps:
- Go to your SharePoint Central Administration site >> Click on Security >> Configure Service Accounts
- In the First Dropdown, Select “Farm Account”
- You’ll find your SharePoint Farm Account listed automatically in the second dropdown. In my case, it is “Crescent\SPAdmin”
This gets the farm account in SharePoint.
Get Farm Account Through Services Console:
As the SharePoint Farm account runs SharePoint Timer Service, You can Go to:
- Run >> Services.msc
- Pick “SharePoint Timer Services” >> You’ll find the Farm account under “Log on as” column.
Get Farm account in SharePoint using PowerShell
Run this PowerShell script to get the farm account:
(Get-SPFarm).DefaultServiceAccount.Name
You can also retrieve the SharePoint Farm account from Central Administration’s App Pool credentials. Here is another article: How to get SharePoint Farm account credentials?