Muokkaa

Jaa


Delete an Azure App Configuration store with PowerShell

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

If you don't have an Azure subscription, create an Azure free account before you begin.

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.