VMware PowerShell Find VMs with Memory Reservations
VMware PowerShell Find VMs with Memory Reservations I had a friend message me today asking a if there was a simple way to to use VMware PowerShell to find VMs with memory reservations. The answer is yes and it’s not that tricky to do, in fact we can do it with a single line of PowerShell. Memory Reservations get-VM | Where-Object {$_.ExtensionData.ResourceConfig.MemoryAllocation.Reservation -ne “0”} Get all virtual machines, where the virtual machine object has a… Read More »VMware PowerShell Find VMs with Memory Reservations