Introduction to Windows Command Line - Skill Assessment nº9

Hi! I cannot pass question nº9

Use the tasklist command to print the started services and then sort them in reverse order by name. The fourth service is the flag for this user.

I have tried the following with no luck:

Get-Service | Sort-Object -Property Name -Descending

Get-Service | Where status -like ‘Running’ | Sort-Object -Property Name -Descending

Any tip?

use the command tasklist as indicated in the question.
you got the rest right (almost)