使用 PowerShell 删除 Azure 应用程序配置存储区
此示例脚本使用 PowerShell 删除 Azure 应用程序配置的实例。
如果没有 Azure 试用版订阅,请在开始前创建一个试用版订阅。
若要执行此示例脚本,需要正确安装 Azure PowerShell。
使用管理员权限打开 PowerShell 窗口,并运行 Install-Module -Name Az
以安装 Azure PowerShell
示例脚本
# Delete an App Configuration store
Remove-AzAppConfigurationStore -Name <store-name> -ResourceGroupName <resource-group-name>
脚本说明
此脚本使用以下命令删除应用程序配置存储区。 表中的每条命令均链接到特定于命令的文档。
命令 | 说明 |
---|---|
Remove-AzAppConfigurationStore | 删除应用程序配置存储区。 |
后续步骤
有关 Azure PowerShell 的详细信息,请查看 Azure PowerShell 文档。
有关 PowerShell 的更多应用程序配置脚本示例,请参阅 Azure 应用程序配置 PowerShell 示例。