Question

How do I find out which application pool as well as the managed account my project service application is running?

Was it helpful?

Solution

if you have to access the SharePoint Server then run the below powershell.

Get-SPServiceApplicationPool | Select Name, ID, ProcessAccountName

This will list Name of the App pool, ID of the AppPool and Account under which it is running.

Try this script

Get-SPServiceApplication | Select Name, @{Name="SPAppPoolName"; Expression={$_.ApplicationPool.Name}},  @{Name="IISAppPoolName"; Expression={$_.ApplicationPool.Id}}, @{Name="ProcessAccountName"; Expression={$_.ApplicationPool.ProcessAccountName}}

It will list Service App name( the name you mentioned when created the Service app, you can check the central admin > application management > Manager Service application), App Pool name, etc.

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top