Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 1.64 KB

powershell-delete-service.md

File metadata and controls

43 lines (30 loc) · 1.64 KB
title titleSuffix description services author ms.service ms.topic ms.date ms.author ms.custom
PowerShell script sample - Delete an Azure App Configuration store
Azure App Configuration
Delete an Azure App Configuration store using a sample PowerShell script. See reference article links to commands used in the script.
azure-app-configuration
maud-lv
azure-app-configuration
sample
04/12/2024
malev

Delete an Azure App Configuration store with PowerShell

This sample script deletes an instance of Azure App Configuration using PowerShell.

[!INCLUDE quickstarts-free-trial-note]

To execute this sample script, you need a functional setup of Azure PowerShell.

Open a PowerShell window with admin rights and run Install-Module -Name Az to install Azure PowerShell

Sample script

# Delete an App Configuration store
Remove-AzAppConfigurationStore -Name <store-name> -ResourceGroupName <resource-group-name>

Script explanation

This script uses the following command to delete an App Configuration store. Each command in the table links to command specific documentation.

Command Notes
Remove-AzAppConfigurationStore Deletes an App Configuration store.

Next steps

For more information about Azure PowerShell, check out the Azure PowerShell documentation.

More App Configuration script samples for PowerShell can be found in the Azure App Configuration PowerShell samples.