Alternative to the Windows Service Manager (services.msc) which supports filtering out signed Microsoft executables? [closed]

Is there a Service Manager for Windows which allows me to easily filter out all the Microsoft services with verified signatures?

I've looked at Turbo Services Manager but it doesn't have this feature.


Sysinternals Autoruns has a tab that lists installed services, and can both verify digital signatures and filter out Microsoft services. It's not as "nice" as services.msc, but it will do the job.


You can also try Windows Management Instrumentation Command-line (WMIC) tool, using the command:

cmd.exe wmic service

This will return you a list of installed services. If you use a pipe to a txt file you can import it on MS Excel and make all filters that you want.