< Back

Get-IISApplicationPoolWorkerProcesses

Mon Jan 13, 2020 6:12 am

NAME Get-IISApplicationPoolWorkerProcesses



SYNOPSIS

Get information about application pool worker processes.





SYNTAX

Get-IISApplicationPoolWorkerProcesses [[-ComputerName] <String[]>] [[-AppPool] <String[]>] [<CommonParameters>]





DESCRIPTION

The Get-IISApplicationPoolWorkerProcesses will return information regarding the worker processes of one or more

application pools. It is very usefull when recycling or monitoring the application pools.





PARAMETERS

-ComputerName <String[]>

The name of the server. Supports multiple names. By default the value is set to the local server.



Required? false

Position? 0

Default value

Accept pipeline input? true (ByValue, ByPropertyName)

Accept wildcard characters? false



-AppPool <String[]>

The name of the application pool. Supports multiple names. By default, information about all application pools

is returned. Also supports wildcard characters.



Required? false

Position? 1

Default value

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS









OUTPUTS









NOTES









-------------------------- Example 1 --------------------------



Get-IISApplicationPoolWorkerProcesses -AppPool "MSExchangeSyncAppPool","MSExchangePowershellAppPool" -Server

"ExchangeServer01","ExchangeServer02"



This command will return information regarding the worker processes of the "MSExchangeSyncAppPool" and

"MSExchangePowershellAppPool" application pools

on the "ExchangeServer01" and "ExchangeServer02" servers.







-------------------------- Example 2 --------------------------



Get-ClientAccessServer |

Get-IISApplicationPoolWorkerProcesses -AppPool "MSExchangePowershellAppPool"



This command will return information regarding the "MSExchangePowershellAppPool" application pool on all Client

Access Exchange servers.









RELATED LINKS