new ServiceController
using System; using System.ServiceProcess; public class MainClass { public static void Main() { ServiceController scAlerter = new ServiceController("Alerter"); Console.WriteLine(scAlerter.DisplayName); Console.WriteLine(scAlerter.CanStop); scAlerter.Stop(); Console.WriteLine("Service stopped"); scAlerter.Start(); Console.WriteLine("Service started"); } }