■ ServiceController 클래스를 사용해 윈도우즈 서비스를 중단하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
using System; using System.ServiceProcess; #region 서비스 중단하기 - StopService(serviceName, timeOut) /// <summary> /// 서비스 중단하기 /// </summary> /// <param name="serviceName">서비스명</param> /// <param name="timeOut">타임아웃 (밀리초)</param> public void StopService(string serviceName, int timeOut) { ServiceController serviceController = new ServiceController(serviceName); try { TimeSpan timeOutTimeSpan = TimeSpan.FromMilliseconds(timeOut); serviceController.Stop(); serviceController.WaitForStatus(ServiceControllerStatus.Stopped, timeOutTimeSpan); } catch { } } #endregion |