Computer Tips - Windows: how can I list all services from the command line?

Date: 2018mar8 OS: Windows Language: Windows Shell Q. Windows: how can I list all services from the command line? A. Use the `sc` command:
sc query
This produces a lot, you can filter with `find`
sc query | find "DISPLAY_NAME"