如何删除Azure中的资源组中的所有公用IP地址

时间:2018-01-03 09:38:07

标签: azure azure-powershell azure-cli

我想使用单个命令删除Azure中资源组中的所有公共IP地址,而不是逐个删除

1 个答案:

答案 0 :(得分:2)

您可以使用以下Powershell脚本来满足您的要求:

Get-AzureRmPublicIpAddress -ResourceGroupName <yourresourcegroupname> | Remove-AzureRmPublicIpAddress 

此外,您可以使用命令Force在不要求用户确认的情况下运行:

Get-AzureRmPublicIpAddress -ResourceGroupName <yourresourcegroupname> | Remove-AzureRmPublicIpAddress  -Force

我在实验室测试并成功。