1. You are viewing our forum as a guest. For full access please Register. WindowsBBS.com is completely free, paid for by advertisers and donations.

bat file change service to manual

Discussion in 'Windows XP' started by suemlo, 2007/12/12.

  1. 2007/12/12
    suemlo

    suemlo Inactive Thread Starter

    Joined:
    2007/05/10
    Messages:
    26
    Likes Received:
    0
    I am looking for a bat file that will change a service from automatic to manual.
    This is for an XP laptop sp2.
     
  2. 2007/12/14
    TonyT

    TonyT SuperGeek Staff

    Joined:
    2002/01/18
    Messages:
    9,072
    Likes Received:
    400
    commands to start or stop services:
    NET START - starts the service
    NET STOP - ends the service

    Use SC.EXE to set services to auto-manual-disabled:
    http://support.microsoft.com/kb/251192
     

  3. to hide this advert.

  4. 2007/12/15
    noahdfear

    noahdfear Inactive

    Joined:
    2003/04/06
    Messages:
    12,178
    Likes Received:
    15
    sc config <servicename> start= <option>

    options

    services = auto, demand, disabled
    drivers = boot, system

    Can be entered on the Start>Run line, command window or via batch file.

    Example

    sc config BITS start= demand

    Take note of the space between red characters above.
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.