Collections:
Other Resources:
"Sort-Object" Cmdlet in Windows PowerShell
What is the "Sort-Object" cmdlet in Windows PowerShell?
✍: FYIcenter.com
"Sort-Object" cmdlet in Windows PowerShell takes an input of object list
and generate an output object list by sorting objects according to specified properties.
For example, the following command uses the "sort-object" cmdlet to sort a Process object list by the CPU property:
PS C:\fyicenter> get-process | sort-object -property CPU
Handles NPM(K) PM(K) WS(K) VM(M) CPU(s) Id ProcessName
------- ------ ----- ----- ----- ------ -- -----------
33 1 344 452 3 308 smss
353 9 8604 7804 50 588 services
1125 38 55008 30004 252 6740 SearchIndexer
453 9 8156 7144 50 832 svchost
417 8 5128 4684 57 712 svchost
528 17 11600 9160 104 1920 spoolsv
156 6 16016 1328 123 2380 PresentationFontCache
...
⇒ "Select-Object" Cmdlet in Windows PowerShell
⇐ Cmdlet Output Object List in Windows PowerShell
2016-11-04, ∼4604🔥, 0💬
Popular Posts:
What is "Net.Tcp Listener Adapter" in my Windows 7 service list? And how is "Net.Tcp Listener Adapte...
What is "Windows Backup" in my Windows XP service list? And how is "Windows Backup" service related ...
What is realsched.exe process - Real Player RealNetworks Scheduler? Process realsched.exe is a backg...
How to remove AcroIEHelper.dll - Adobe Acrobat IE Helper Version 6.0 for ActiveX? DLL AcroIEHelper.d...
Can I disable Windows service "Google Updater Service" to speedup my computer? GoogleUpdaterService....