전체 글
[Windows] 윈도우 공유 폴더 포트
Windows 공유 폴더 Port (TCP) 139 / 445 Windows 공유 폴더 Port (UDP) 137 / 138
[C#] Thread 에서 Main Thread 간섭하기.
BeginInvoke private void Thread_Invoke_Function(){ this.BeginInvoke(new Action(delegate() { //Main Thread에 작업할 내용 })); }
[C#] 서비스 제어하기 (시작 / 종료 / 상태 검사)
using System.ServiceProcess; private void Service_Control_Function(){ ServiceController sc = new ServiceController("Service Name"); //ServiceControllerStatus.Running : 서비스 실행 상태 //ServiceControllerStatus.StartPending : 서비스 시작 중 //ServiceControllerStatus.Stopped : 서비스 정지 상태 //ServiceControllerStatus.StopPending : 서비스 중지 중 //ServiceControllerStatus.Paused : 서비스 일시정지 상태 //ServiceControllerStatus.Pa..