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

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
scroll top