Skip to content

Latest commit

 

History

History
101 lines (73 loc) · 2.3 KB

File metadata and controls

101 lines (73 loc) · 2.3 KB
description external help file Module Name ms.date online version schema title
Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
Microsoft.IIS.PowerShell.Provider.dll-Help.xml
WebAdministration
12/27/2016
2.0.0
Remove-WebAppPool

Remove-WebAppPool

SYNOPSIS

Removes an application pool from IIS.

SYNTAX

Remove-WebAppPool [-Name] <String> [-WhatIf] [-Confirm] [<CommonParameters>]

DESCRIPTION

The Remove-WebAppPool cmdlet removes an application pool from Internet Information Services (IIS).

EXAMPLES

Example 1: Remove an application pool

IIS:\> New-WebAppPool -Name "MyNewAppPool" "Sleep for 5 seconds before AppPool gets removed"; Sleep 5 
IIS:\> Remove-WebAppPool -Name "MyNewAppPool"

This command creates a new application pool, and then removes it after waiting 5 seconds.

PARAMETERS

-Confirm

Prompts you for confirmation before running the cmdlet.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf

Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False

-Name

Specifies the name of the application pool to remove.

Type: String
Parameter Sets: (All)
Aliases: 

Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi

Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

OUTPUTS

NOTES

RELATED LINKS

New-WebAppPool

Restart-WebAppPool

Start-WebAppPool

Stop-WebAppPool