我想使用单个命令删除Azure中资源组中的所有公共IP地址,而不是逐个删除
答案 0 :(得分:2)
您可以使用以下Powershell脚本来满足您的要求:
Get-AzureRmPublicIpAddress -ResourceGroupName <yourresourcegroupname> | Remove-AzureRmPublicIpAddress
此外,您可以使用命令Force
在不要求用户确认的情况下运行:
Get-AzureRmPublicIpAddress -ResourceGroupName <yourresourcegroupname> | Remove-AzureRmPublicIpAddress -Force
我在实验室测试并成功。