Windows SC 로 윈도우 서비스 등록하기

SC(ServiceControl c:\windows\system32\sc.exe) 를 사용하여 프로그램을 윈도우 서비스로 등록할 수 있다.
자세한 설명 : http://support.microsoft.com/kb/251192/ko

예)
서비스 등록하기(= 다음에 공백이 있어야 한다.)
sc create YsoftmanService start= auto binpath= "c:\ysoftman.exe -arg1 -arg2"

서비스 삭제하기
sc delete YsoftmanService

서비스(services.msc)를 실행하면 YsoftmanService 가 서비스로 등록되어 있는 것을 확인 할 수 있다.

comments:

댓글 쓰기