1 2 3 4 |
#WS(K): The size of the working set of the process, in kilobytes. The working set consists of the pages of memory that were recently referenced by the process @(Get-Process).where{$_.WorkingSet -gt 100MB} @(Get-Process).where{$_.WS -gt 100MB} |