Skip to content

Instantly share code, notes, and snippets.

@bblanchon
Created October 18, 2016 11:43
Show Gist options
  • Save bblanchon/9a191854511ef7816d9fc9fbe7aefeca to your computer and use it in GitHub Desktop.
Save bblanchon/9a191854511ef7816d9fc9fbe7aefeca to your computer and use it in GitHub Desktop.
Azure: delete all unattached disks
Get-AzureDisk | where {$_.AttachedTo -eq $null} | Remove-AzureDisk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment