Skip to content

Instantly share code, notes, and snippets.

@snoj
Created January 20, 2016 16:15
Show Gist options
  • Save snoj/ad3da430727c185f8ffb to your computer and use it in GitHub Desktop.
Save snoj/ad3da430727c185f8ffb to your computer and use it in GitHub Desktop.
get total hyperv cluster virtual machine vhd size
( get-clusternode | %{ get-vm -ComputerName $_.name } | %{ get-vhd -VMId $_.id -ComputerName $_.computername; } | measure -Sum size).sum / 1TB
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment