Summary: Use Windows PowerShell to assess memory requirements.
How can I use Windows PowerShell to figure out the minimum, maximum, and average working set
requirements for processes on my workstation?
Use the Get-Process cmdlet to return the working set information. Select the working set and pipe the results
to Measure-Object. Here is an example:
Get-Process | measure ws -Maximum -Minimum -Average