Pergunta

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

Foi útil?

Solução

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.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a sharepoint.stackexchange
scroll top