Search...

Monday, June 4, 2012

Start windows stopped service in C#


using System;
using System.Management;
using System.ServiceProcess;

namespace StartStoppedService
{
    class Program
    {
        static void Main(string[] args)
        {
            SeviceStart _SeviceStart = new SeviceStart();
            //provide service name here and startup Type that must be automatic or manual or disabled.
            _SeviceStart.StartService("TapiSrv", "Manual");
            Console.Read();
        }
    }

    class SeviceStart
    {
        public void StartService(String serviceName, String startMode)
        {
            String status = String.Empty;
            ServiceController[] allService = ServiceController.GetServices();
            foreach (ServiceController serviceController in allService)
            {
                if (serviceController.ServiceName.Equals("TapiSrv"))
                {
                    status = serviceController.Status.ToString();
                    Console.WriteLine("Telephony Service status : {0}", status);
                    //Check service staus.
                    if (serviceController.Status.Equals(ServiceControllerStatus.Stopped))
                    {
                        bool IsStatus = StartStoppedService(serviceName, startMode);
                        if (IsStatus)
                        {
                            serviceController.Start();
                            Console.WriteLine("Telephony Service is : {0}", "Started");
                        }
                        else
                        {
                            Console.WriteLine("Telephony Service is : {0}", "Started");
                        }
                    }
                    else
                    {
                        Console.WriteLine("Telephony Service already in running state");
                    }
                }
            }
        }

        private Boolean StartStoppedService(String serviceName, String startMode)
        {
            uint _status = 1;
            String filterService = String.Format("SELECT * FROM Win32_Service WHERE Name = '{0}'", serviceName);
            ManagementObjectSearcher _managementObjectSearcher = new ManagementObjectSearcher(filterService);
            if (_managementObjectSearcher == null)
            {
                return false;
            }
            else
            {
                try
                {
                    ManagementObjectCollection _managementObjectCollection = _managementObjectSearcher.Get();
                    foreach (ManagementObject service in _managementObjectCollection)
                    {
                        //if startup type is Manual or Disabled then change it.
                        if (Convert.ToString(service.GetPropertyValue("StartMode")) == "Manual" ||
                            Convert.ToString(service.GetPropertyValue("StartMode")) == "Disabled" ||
                            Convert.ToString(service.GetPropertyValue("StartMode")) == "Automatic")
                        {
                            ManagementBaseObject _managementBaseObject = service.GetMethodParameters("ChangeStartMode");
                            _managementBaseObject["startmode"] = startMode;
                            ManagementBaseObject outParams =  service.InvokeMethod("ChangeStartMode", _managementBaseObject, null);
                            _status = Convert.ToUInt16(outParams.Properties["ReturnValue"].Value);
                        }
                    }
                }
                catch (Exception ex)
                {
                    Console.Write(ex.ToString());
                }
            }
            return (_status == 0);
        }

    }
}

No comments: