Gets a Microsoft.Web.Administration.ApplicationPool
object for an application pool.
Get-IisAppPool [-Name] <String> [<CommonParameters>]
Use the Microsoft.Web.Administration
API to get a .NET object for an application pool.
Name | Type | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|---|
Name | String | The name of the application pool to return. | true | false |
Microsoft.Web.Administration.ApplicationPool.
Get-IisAppPool -Name 'Batcave'
Gets the Batcave
application pool.
Get-IisAppPool -Name 'Missing!'
Returns null
since, for purposes of this example, there is no Missing~
application pool.