SharePoint 2013: How to get the Application Pool for Access Services Service Application!

If you are configuring Access Services in a SharePoint 2013 farm, you may need to do some configurations at IIS. Indeed, for these modifications you will need to know the Application Pool linked to your Access Services service application. In order to know the Access Services Application Pool you have at least two possibilities:

  • First one is to execute the following PowerShell commands in the SharePoint 2013 Administration Console.
$spAccessApp=Get-SPAccessServiceApplication

$spAccessAppPool=$spAccessApp.ApplicationPool

$spAccessAppPool.Id

  • Once you execute these commands, you will get the Application Pool Id in the SharePoint 2013 Administration Console-

image

  • Option 2 is simply by accessing IIS and locate the Applications Pool with more applications (we are talking about a development environment). As you can see, the selected Application Pool has the same ID obtained with PowerShell.

image

SharePoint 2013: ¿Cuál es el Pool de Aplicaciones de la Aplicación de Servicio de Access?

Si estáis configurando los Servicios de Access, tendréis que realizar ciertas configuraciones a nivel de IIS y en concreto relativas Pool de Aplicaciones asociado a los Servicios. Para averiguar cuál es el Pool de Aplicaciones, tenéis dos opciones:

  • La primera, a través de PowerShell y la siguiente secuencia comandos PowerShell.
$spAccessApp=Get-SPAccessServiceApplication

$spAccessAppPool=$spAccessApp.ApplicationPool

$spAccessAppPool.Id

  • En la correspondiente salida por pantalla tendréis el ID del Pool de Aplicaciones.

image

  • La opción 2 pasa simplemente por acceder a IIS, localizar el Grupo de Aplicaciones con más Aplicaciones (estamos hablando de un entorno de desarrollo) que como podéis ver tiene el mismo ID obtenido con PowerShell.

image