Programming/C# - Window

C#/ 윈도우 서비스 프로그램

esoog Polaris 2023. 11. 16. 23:46
반응형

# 기본 참조

 

https://harrymom.tistory.com/18

 

[C#]C#으로 Window Service(윈도우 서비스) 만들기

안녕하세요 C#으로 Window Service를 만들어 보겠습니다. 1. 윈도우 서비스란? 장 시간 실행되는 실행 애플리케이션으로 만들 수 있습니다. 컴퓨터가 부팅되면서 자동적으로 시작되고, 사용자 상호작

harrymom.tistory.com

 

 

 

 

 

# 관리자 모드로 명령 프롬프트 실행

 

1. 서비스를 추가 및 실행

sc create [서비스명] binPath= [서비스 실행 파일 경로]
sc start [서비스명]

 

sc create MyWindowsService binPath= "D:\cys\Lab\csharp\WindowsService.exe"
sc start MyWindowsService

 

 

 



2. 서비스를 제거

sc stop [서비스명]
sc delete [서비스명]

 

sc stop MyWindowsService
sc delete MyWindowsService

 

728x90