< Back

Get-IISApplicationPool

Mon Jan 13, 2020 6:11 am

NAME Get-IISApplicationPool



SYNOPSIS

Get the application pools on the local or a remove server running IIS.





SYNTAX

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





DESCRIPTION

The Get-IISApplicationPool will return information regarding the IIS application pools on the local or a remote

server.





PARAMETERS

-ComputerName <String[]>

The name of the server. Supports multiple names. The default value is 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 to return information for. 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-MailboxServer |

Sort-Object -Property Name |

Get-IISApplicationPool -AppPool "MSExchangeSyncAppPool"



This command will return information about the "MSExchangeSyncAppPool" on all Exchange mailbox servers.









RELATED LINKS