How to list all INSTALLED but NOT RUNNING services from command line (similar to "net ....") ?

  • Thread starter Thread starter Eugen Austermann
  • Start date Start date
E

Eugen Austermann

When I type at the command prompt

net start

then I get all services which are currently running.

How can I list from the command line all services which are currently installed but NOT running ?

Eugen
 
RE: How to list all INSTALLED but NOT RUNNING services from command li

Hi,

Try

sc query state= inactive |find /I "SERVICE_NAME"

If you omit the '|find /I "SERVICE_NAME"', you can see details on each
services.

se2946

"Eugen Austermann" wrote:

> When I type at the command prompt
>
> net start
>
> then I get all services which are currently running.
>
> How can I list from the command line all services which are currently installed but NOT running ?
>
> Eugen
>
>
 
Back
Top