Notice
Recent Posts
Recent Comments
Link
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

고독을 즐기는 진정한 아웃사이더

sc 명령어로 서비스 제어하기 본문

Computer/Windows

sc 명령어로 서비스 제어하기

장선생™ 2006. 3. 20. 20:00
sc = service controller 입니다. 윈도우 xp/2003 에 내장된 명령어 이지요.
sc stop 서비스명 : 서비스 중지
sc start 서비스명 : 서비스 시작
sc config 서비스명 start= disabled : 서비스 사용안함
sc 서버명 config 서비스명 start= disabled : 서버명 서버의 서비스 사용안함
예) sc config wuauserv start= disabled : 자동업데이트 서비스 사용안함
    sc config messenger start= disabled : 메신저 서비스 사용안함
    sc www config messenger start= disabled : www 서버의 메신저 서비스 사용안함
※ 아래는 sc 명령만 실행했을때 나오는 도움말 입니다.
DESCRIPTION:
SC is a command line program used for communicating with the
NT Service Controller and services.
USAGE:
sc <server> [command] [service name] <option1> <option2>...
The option <server> has the form "ServerName"
Further help on commands can be obtained by typing: "sc [command]"
Commands:
  query-----------Queries the status for a service, or
                  enumerates the status for types of services.
  queryex---------Queries the extended status for a service, or
                  enumerates the status for types of services.
  start-----------Starts a service.
  pause-----------Sends a PAUSE control request to a service.
  interrogate-----Sends an INTERROGATE control request to a service.
  continue--------Sends a CONTINUE control request to a service.
  stop------------Sends a STOP request to a service.
  config----------Changes the configuration of a service (persistant).
  description-----Changes the description of a service.
  failure---------Changes the actions taken by a service upon failure.
  qc--------------Queries the configuration information for a service.
  qdescription----Queries the description for a service.
  qfailure--------Queries the actions taken by a service upon failure.
  delete----------Deletes a service (from the registry).
  create----------Creates a service. (adds it to the registry).
  control---------Sends a control to a service.
  sdshow----------Displays a service's security descriptor.
  sdset-----------Sets a service's security descriptor.
  GetDisplayName--Gets the DisplayName for a service.
  GetKeyName------Gets the ServiceKeyName for a service.
  EnumDepend------Enumerates Service Dependencies.
The following commands don't require a service name:
sc <server> <command> <option>
  boot------------(ok | bad) Indicates whether the last boot should
                  be saved as the last-known-good boot configuration
  Lock------------Locks the Service Database
  QueryLock-------Queries the LockStatus for the SCManager Database
EXAMPLE:
sc start MyService

'Computer > Windows' 카테고리의 다른 글

네트워크에서 특정 컴퓨터 엑세스가 안될때  (0) 2006.04.25
NTFS vs FAT  (0) 2006.04.17
Windows XP 네트워크 MAC 어드레스 바꾸기  (0) 2006.02.02
The Portable Script Center  (0) 2005.12.18
Windows Update Repair Tool  (0) 2005.09.19
Comments