For system, network and cloud administrators
In order to remove all Azure managed disks that start with the name disk, in your PowerShell session type:
Get-AzDisk -ResourceGroupName yourgroupresource -Name 'disk*' | Remove-AzDisk -Force -Verbose
Continue reading ยป