For system, network and cloud administrators

How to delete all Azure managed disks that start with a pattern using Azure PowerShell

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