Skip to content

Remove-AzureRmAppServicePlan Help Example 1 #3643

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 17, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3887,8 +3887,8 @@
</maml:alert>
</maml:alertSet>
<command:examples><command:example><maml:title>-------------------------- Example 1: Remove an App Service plan --------------------------</maml:title>
<dev:code>PS C:\&gt;Remove-AzureRmAppServicePlan -AppServicePlanName "MyAppServicePlan" -ResourceGroupName "Default-Web-WestUS"</dev:code>
<dev:remarks><maml:para>This command removes the Azure App Service plan named MyAppServicePlan in the resource group named Default-Web-WestUS.
<dev:code>PS C:\&gt;Remove-AzureRmAppServicePlan -ResourceGroupName "Default-Web-WestUS" -Name "ContosoASP"</dev:code>
<dev:remarks><maml:para>This command removes the Azure App Service plan named ContosoASP that belongs to the resource group named Default-Web-WestUS.
</maml:para>
<maml:para></maml:para>
<maml:para></maml:para>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ The **Remove-AzureRmAppServicePlan** cmdlet removes an Azure App Service plan.

### Example 1: Remove an App Service plan
```
PS C:\>Remove-AzureRmAppServicePlan -ResourceGroupName "Default-Web-WestUS" -AppServicePlanName "ContosoAppPlan"
PS C:\>Remove-AzureRmAppServicePlan -ResourceGroupName "Default-Web-WestUS" -Name "ContosoASP"
```

This command removes the Azure App Service plan named ContosoAppPlan that belongs to the resource group named Default-Web-WestUS.
This command removes the Azure App Service plan named ContosoASP that belongs to the resource group named Default-Web-WestUS.

## PARAMETERS

Expand Down