Inheritance: IService1
Esempio n. 1
0
        public override void Install(IDictionary stateSaver)
        {
            this.Uninstall(stateSaver);

            var serviceSubname = stateSaver["subName"] as string;

            base.Install(stateSaver);
            ServiceEx.SetCommandLineArgs(Service1.GetServiceName(serviceSubname), serviceSubname);

            using (var sc = new ServiceController(Service1.GetServiceName(serviceSubname)))
            {
                sc.Start();
                sc.Refresh();
            }
        }
Esempio n. 2
0
        protected override void OnBeforeUninstall(IDictionary savedState)
        {
            var serviceSubname = savedState["subName"] as string;

            try
            {
                using (var sc = new ServiceController(Service1.GetServiceName(serviceSubname)))
                {
                    sc.Stop();
                    sc.Refresh();
                    sc.WaitForStatus(ServiceControllerStatus.Stopped, new TimeSpan(0, 0, 30));
                }
            }
            catch
            {
            }

            AddInstallers(serviceSubname);
        }
Esempio n. 3
0
        private void AddInstallers(string serviceSubname)
        {
            if (addOnce)
            {
                addOnce = false;

                var eventLogInstaller = new EventLogInstaller();
                eventLogInstaller.Log    = Service1.GetEventlogName(serviceSubname);
                eventLogInstaller.Source = Service1.GetEventlogName(serviceSubname);
                Installers.Add(eventLogInstaller);

                var serviceInstaller = new ServiceInstaller();
                serviceInstaller.StartType   = ServiceStartMode.Automatic;
                serviceInstaller.ServiceName = Service1.GetServiceName(serviceSubname);
                serviceInstaller.DisplayName = Service1.GetDisplayName(serviceSubname);
                serviceInstaller.Description = Service1.GetDescription(serviceSubname);
                Installers.Add(serviceInstaller);

                var processInstaller = new ServiceProcessInstaller();
                processInstaller.Account = ServiceAccount.LocalSystem;
                Installers.Add(processInstaller);
            }
        }