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
'유용한 정보' 카테고리의 다른 글
Windows 8.1에서 원격데스크탑 설정 (0) | 2024.12.25 |
---|---|
[C#] 유용한 기능 (0) | 2024.12.25 |
[Ms-Sql]엑셀파일의 내용을 MsSQL Server에 가져오는 방법 (0) | 2024.12.25 |
[c++]윈도우 투명도 조정하기 (0) | 2024.12.25 |
[c++] 태스크바 자동숨기기 및 태스크바 복구 (0) | 2024.12.25 |