본문 바로가기

운동하는 개발자/Windows

윈도우 cmd로 서비스 생성, 삭제, 상태변경, 서비스상태 / windows cmd to control service

728x90

1. 서비스 생성

sc create [서비스명] binpath=[exe경로]

생성된 testService

 

2. 서비스 삭제

sc delete [서비스명]

삭제된 testService

 

3. 서비스 시작

sc start [서비스명]

실제 서비스 파일이 아니라서 시작은 안되었음

 

4. 서비스 중지

sc stop [서비스명]

 

5. 서비스 상태 변경

sc config [서비스명] start=auto
//auto : 자동, disabled : 사용안함, delayed-auto : 자동(지연된 시작), demand : 수동

 


 

728x90