Automation

 View Only
Expand all | Collapse all

List virtual machines by hard drive size

  • 1.  List virtual machines by hard drive size

    Posted Oct 27, 2014 02:14 PM

    How can I list the virtual machines that have a single hard drive greater than 50GB?  If they have a total of all hard drives greater than 50GB, I DONT want to list them.

    Thanks!



  • 2.  RE: List virtual machines by hard drive size
    Best Answer

    Posted Oct 27, 2014 02:52 PM

    You mean something like this ?

    Get-VM | Get-HardDisk | where {$_.CapacityGB -gt 50} |

    Select @{N="VM";E={$_.Parent.Name}},Name,CapacityGB



  • 3.  RE: List virtual machines by hard drive size

    Posted Oct 27, 2014 07:49 PM

    Ok great thanks