How to services startup types

Status
Not open for further replies.

anilmail17

Journeyman
Actually i want to knw how can i set a service startup type from disabled to manual or automatic from command prompt and then i neeed start that service again using command prompt.
 
OP
anilmail17

anilmail17

Journeyman
no i not mean that lets take an example like telnet is the service and i want to make its startup type to manual currently its disabled now tell me how can i make it manual or automatic from command prompt
 

Vishal Gupta

Microsoft MVP
Oops! My mistake :D
Use following command:

sc config service_name start= startup_type

where startup_type may be:

auto for automatic
demand for manual
disabled for disable ;)

e.g.,

sc config Alerter start= auto
sc config Alerter start= demand
sc config Alerter start= disabled
 
OP
anilmail17

anilmail17

Journeyman
thanx man
i think after bill gates u r the only person in this world who knows this much about windowsXP
 
Status
Not open for further replies.
Top Bottom