Sort-Object can sort on multiple properties at the same time. Have a look: Get-Service | Sort-Object Status, Name This will list stopped services first, then running services. Within the two blocks, services are sorted by name. To reverse sort order,...