更新日:2018/02/18
PS C:\>get-process | select cpu ,name | Sort-Object -Property cpu -Descending
#working set ごと
PS C:\>get-process | select ws ,name | Sort-Object -Property ws -Descending
#non-paged memory ごと
PS C:\>get-process | select npm ,name | Sort-Object -Property npm -Descending
#pageable memory ごと
PS C:\>get-process | select pm ,name | Sort-Object -Property pm -Descending
[Powershell FAQ トップへ]
[FAQ CENTER トップ]