PowerShell Logo Small

Start-WebAppPool



This is the built-in help made by Microsoft for the command 'Start-WebAppPool', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Starts an application pool.

SYNTAX


Start-WebAppPool [[-Name] <String>] [-Passthru [<SwitchParameter>]] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


Starts the specified application pool.



<

RELATED LINKS


REMARKS

<

Examples


-------------- EXAMPLE 1: Starting an Application Pool --------------

IIS:\>Start-WebAppPool -Name "DefaultAppPool"



Starts the application pool named DefaultAppPool.




-------------- EXAMPLE 2: Starting stopped Application Pools --------------

IIS:\>Get-ChildItem IIS:\AppPools | where {$_.state -eq "Started"} | Start-WebAppPool



Starts the application pools that are currently stopped.