유용한 정보

[C#] 서비스 등록/삭제 및 시작/종료

DevReff 2024. 12. 25. 11:04
728x90
SMALL
반응형

1. 서비스 프로그램 컴파일 후 비쥬얼스튜디오의 커맨드창을 열어서 installutil.exe 실행함

예) installutil "..\bin\Release\실행파일.exe"

 

2. 서비스 등록 : sc create 서비스명 binPath="서비스 실행파일"

예) sc create SMTRestartService binPath="..\bin\Release\SMTRestartService.exe"

 

3. 서비스 삭제 : sc delete 서비스명

예) sc delete SMTRestartService

 

4. 서비스 시작 : sc start 서비스명

예) sc start SMTRestartService

 

5. 서비스 종료 : sc stop 서비스명

예) sc stop SMTRestartService