VMware Cloud Community
FCOETech
Enthusiast
Enthusiast
Jump to solution

Report/Export VMs with a memory limit in place?

Our Dev team has been reporting performance issues for some time. We have been verifying compliance with host updates, making sure vHW and Tools are compliant and latest, and bumping to a standard spec of 2CPU and 8GB RAM minimum. The guests run a range of Windows Server from 2008 to 2016. Some of these machines have been standing for 7-10 years.

What we recently discovered was that a number of the affected VMs had their memory limits set to 2GB or less. We can manually adjust this, but are now going through a discovery process to determine where and how these limits were set, and manually update the setting on affected servers. To our knowledge we have never used them and believe there was a bad configuration on a resource pool or other policy setting group at some point over the years (we now have a much better change control in place for scenarios like this). There is some concern that it is was set and enforced upstream of the manual setting, we could see the limits return.

Regardless of whether we can determine the root cause, I've been searching for a method of returning any servers that have the memory limit set to anything other than unlimited so we can address each case. If anyone is willing to provide suggested reading or a trusted method for reporting on this value for the VMs this it would be much appreciated.

Thanks in advance!

1 Solution

Accepted Solutions
RickVerstegen
Expert
Expert
Jump to solution

I guess you do it with Powershell by using this command:

Get-VM | Get-VMResourceConfiguration | where {$_.MemLimitGB -ne '-1'}

Rick

Was I helpful? Give a kudo for appreciation!
Blog: https://rickverstegen84.wordpress.com/
Twitter: https://twitter.com/verstegenrick

View solution in original post

2 Replies
RickVerstegen
Expert
Expert
Jump to solution

I guess you do it with Powershell by using this command:

Get-VM | Get-VMResourceConfiguration | where {$_.MemLimitGB -ne '-1'}

Rick

Was I helpful? Give a kudo for appreciation!
Blog: https://rickverstegen84.wordpress.com/
Twitter: https://twitter.com/verstegenrick
FCOETech
Enthusiast
Enthusiast
Jump to solution

This gets me exactly what I need, thank you. I was having trouble finding the parameter. Thanks again!

0 Kudos