Jump to content

How to list a service start mode


Recommended Posts

Guest Another Brian
Posted

I'm working with a service called MVFS. For reasons that I don't

understand, it does not appear in the Control Panel Services applet.

I'm trying to find some way to list its start mode. I've tried looking

through the options of the sc command, but the only thing I can see is

how to set the start mode of the service.

 

Is that any command that will tell me what the start mode is?

 

Brian

  • Replies 3
  • Created
  • Last Reply
Guest Pegasus \(MVP\)
Posted

Re: How to list a service start mode

 

 

"Another Brian" <notbrian@somewhere.nocom> wrote in message

news:%23PI05cZdIHA.1376@TK2MSFTNGP02.phx.gbl...

> I'm working with a service called MVFS. For reasons that I don't

> understand, it does not appear in the Control Panel Services applet. I'm

> trying to find some way to list its start mode. I've tried looking through

> the options of the sc command, but the only thing I can see is how to set

> the start mode of the service.

>

> Is that any command that will tell me what the start mode is?

>

> Brian

 

sc.exe will happily do it:

=============

D:\Logs>sc qc w32time

[sC] GetServiceConfig SUCCESS

 

SERVICE_NAME: w32time

TYPE : 20 WIN32_SHARE_PROCESS

START_TYPE : 2 AUTO_START

ERROR_CONTROL : 1 NORMAL

BINARY_PATH_NAME : C:\WINDOWS\System32\svc

LOAD_ORDER_GROUP :

TAG : 0

DISPLAY_NAME : Windows Time

DEPENDENCIES :

SERVICE_START_NAME : LocalSystem

================

D:\Logs>sc qc dduservice

[sC] GetServiceConfig SUCCESS

 

SERVICE_NAME: dduservice

TYPE : 10 WIN32_OWN_PROCESS

START_TYPE : 3 DEMAND_START

ERROR_CONTROL : 1 NORMAL

BINARY_PATH_NAME : C:\Program Files\Nord-V

exe

LOAD_ORDER_GROUP :

TAG : 0

DISPLAY_NAME : DynDNS-Updater

DEPENDENCIES :

SERVICE_START_NAME : LocalSystem

==============

Guest Another Brian
Posted

Re: How to list a service start mode

 

Thank you. Somehow I just read right over that sc subcommand. That

will do me just fine.

 

Have a great week

Brian

 

"Pegasus (MVP)" <I.can@fly.com.oz> wrote in message

news:%23gNdE9ZdIHA.4728@TK2MSFTNGP03.phx.gbl...

>

> "Another Brian" <notbrian@somewhere.nocom> wrote in message

> news:%23PI05cZdIHA.1376@TK2MSFTNGP02.phx.gbl...

>> I'm working with a service called MVFS. For reasons that I don't

>> understand, it does not appear in the Control Panel Services

>> applet. I'm trying to find some way to list its start mode. I've

>> tried looking through the options of the sc command, but the only

>> thing I can see is how to set the start mode of the service.

>>

>> Is that any command that will tell me what the start mode is?

>>

>> Brian

>

> sc.exe will happily do it:

> =============

> D:\Logs>sc qc w32time

> [sC] GetServiceConfig SUCCESS

>

> SERVICE_NAME: w32time

> TYPE : 20 WIN32_SHARE_PROCESS

> START_TYPE : 2 AUTO_START

> ERROR_CONTROL : 1 NORMAL

> BINARY_PATH_NAME : C:\WINDOWS\System32\svc

> LOAD_ORDER_GROUP :

> TAG : 0

> DISPLAY_NAME : Windows Time

> DEPENDENCIES :

> SERVICE_START_NAME : LocalSystem

> ================

> D:\Logs>sc qc dduservice

> [sC] GetServiceConfig SUCCESS

>

> SERVICE_NAME: dduservice

> TYPE : 10 WIN32_OWN_PROCESS

> START_TYPE : 3 DEMAND_START

> ERROR_CONTROL : 1 NORMAL

> BINARY_PATH_NAME : C:\Program Files\Nord-V

> exe

> LOAD_ORDER_GROUP :

> TAG : 0

> DISPLAY_NAME : DynDNS-Updater

> DEPENDENCIES :

> SERVICE_START_NAME : LocalSystem

> ==============

>

Guest Pegasus \(MVP\)
Posted

Re: How to list a service start mode

 

Thanks for the feedback.

 

"Another Brian" <notbrian@somewhere.nocom> wrote in message

news:elyeP48dIHA.2268@TK2MSFTNGP02.phx.gbl...

> Thank you. Somehow I just read right over that sc subcommand. That will do

> me just fine.

>

> Have a great week

> Brian

>

> "Pegasus (MVP)" <I.can@fly.com.oz> wrote in message

> news:%23gNdE9ZdIHA.4728@TK2MSFTNGP03.phx.gbl...

>>

>> "Another Brian" <notbrian@somewhere.nocom> wrote in message

>> news:%23PI05cZdIHA.1376@TK2MSFTNGP02.phx.gbl...

>>> I'm working with a service called MVFS. For reasons that I don't

>>> understand, it does not appear in the Control Panel Services applet. I'm

>>> trying to find some way to list its start mode. I've tried looking

>>> through the options of the sc command, but the only thing I can see is

>>> how to set the start mode of the service.

>>>

>>> Is that any command that will tell me what the start mode is?

>>>

>>> Brian

>>

>> sc.exe will happily do it:

>> =============

>> D:\Logs>sc qc w32time

>> [sC] GetServiceConfig SUCCESS

>>

>> SERVICE_NAME: w32time

>> TYPE : 20 WIN32_SHARE_PROCESS

>> START_TYPE : 2 AUTO_START

>> ERROR_CONTROL : 1 NORMAL

>> BINARY_PATH_NAME : C:\WINDOWS\System32\svc

>> LOAD_ORDER_GROUP :

>> TAG : 0

>> DISPLAY_NAME : Windows Time

>> DEPENDENCIES :

>> SERVICE_START_NAME : LocalSystem

>> ================

>> D:\Logs>sc qc dduservice

>> [sC] GetServiceConfig SUCCESS

>>

>> SERVICE_NAME: dduservice

>> TYPE : 10 WIN32_OWN_PROCESS

>> START_TYPE : 3 DEMAND_START

>> ERROR_CONTROL : 1 NORMAL

>> BINARY_PATH_NAME : C:\Program Files\Nord-V

>> exe

>> LOAD_ORDER_GROUP :

>> TAG : 0

>> DISPLAY_NAME : DynDNS-Updater

>> DEPENDENCIES :

>> SERVICE_START_NAME : LocalSystem

>> ==============

>>

>

>


×
×
  • Create New...