C#创建Windows服务与服务的安装、卸载(第二篇)

上一篇,我们说了几种windows服务的安装、卸载,这次再说一种方法,最后再附上windows服务的调试方法,上一篇的链接:C#创建Windows服务与服务的安装、卸载

 这个方法如下:建立一个窗体,然后去安装、启动、停止和卸载服务

(1)、在同一个解决方案里新建一个Windows Form项目,并命名为WindowsServiceClient,如下图所示:

 (2)、将该项目设置为启动项目,并在窗体内添加四个按钮,分别为安装服务、启动服务、停止服务及卸载服务,如下图所示:

 (3)、按下F7进入代码编辑界面,引用“System.ServiceProcess”及“System.Configuration.Install”,并输入如下代码:

using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Configuration.Install;
using System.ServiceProcess;

namespace WindowsServiceClient
{
    public partial class WindowsServiceClient : Form
    {
        public WindowsServiceClient()
        {
            InitializeComponent();
        }

        string serviceFilePath = @"H:\你的程序路径\test\other\WindowsServiceDemo\bin\Debug\WindowsServiceDemo.exe";
        string serviceName = "MyFirstService";

        //事件:安装服务
        private void button1_Click(object sender, EventArgs e)
        {
            if (this.IsServiceExisted(serviceName)) this.UninstallService(serviceName);
            this.InstallService(serviceFilePath);
        }

        //事件:启动服务
        private void button2_Click(object sender, EventArgs e)
        {
            if (this.IsServiceExisted(serviceName)) this.ServiceStart(serviceName);
        }

        //事件:停止服务
        private void button3_Click(object sender, EventArgs e)
        {
            if (this.IsServiceExisted(serviceName)) this.ServiceStop(serviceName);
        }

        //事件:卸载服务
        private void button4_Click(object sender, EventArgs e)
        {
            if (this.IsServiceExisted(serviceName))
            {
                this.ServiceStop(serviceName);
                this.UninstallService(serviceFilePath);
            }
        }

        //判断服务是否存在
        private bool IsServiceExisted(string serviceName)
        {
            ServiceController[] services = ServiceController.GetServices();
            foreach (ServiceController sc in services)
            {
                if (sc.ServiceName.ToLower() == serviceName.ToLower())
                {
                    return true;
                }
            }
            return false;
        }

        //安装服务
        private void InstallService(string serviceFilePath)
        {
            using (AssemblyInstaller installer = new AssemblyInstaller())
            {
                installer.UseNewContext = true;
                installer.Path = serviceFilePath;
                IDictionary savedState = new Hashtable();
                installer.Install(savedState);
                installer.Commit(savedState);
            }
        }

        //卸载服务
        private void UninstallService(string serviceFilePath)
        {
            using (AssemblyInstaller installer = new AssemblyInstaller())
            {
                installer.UseNewContext = true;
                installer.Path = this.serviceFilePath;
                installer.Uninstall(null);
            }
        }
        //启动服务
        private void ServiceStart(string serviceName)
        {
            using (ServiceController control = new ServiceController(serviceName))
            {
                if (control.Status == ServiceControllerStatus.Stopped)
                {
                    control.Start();
                }
            }
        }

        //停止服务
        private void ServiceStop(string serviceName)
        {
            using (ServiceController control = new ServiceController(serviceName))
            {
                if (control.Status == ServiceControllerStatus.Running)
                {
                    control.Stop();
                }
            }
        }
    }
}

(4)、为了后续调试服务及安装卸载服务的需要,将已生成的WindowsServiceDemo.exe引用到本Windows窗体,如下图所示:

 (5)、由于需要安装服务,故需要使用UAC中Administrator的权限,鼠标右击项目“WindowsServiceClient”,在弹出的上下文菜单中选择“添加”->“新建项”,在弹出的选择窗体中选择“应用程序清单文件”并单击确定,如下图所示:

 (6)、打开该文件,并将<requestedExecutionLevel level="asInvoker" uiAccess="false" />改为<requestedExecutionLevel  level="requireAdministrator" uiAccess="false" />,如下图所示: 

 (7)、键盘WIN+R打开运行,输入services.msc后打开服务,如下图所示:

 (8)、点击WindowsServiceClient窗体内的“安装服务”按钮,将会在服务中出现MyFirstService,如下图所示:

 (9)、点击“运行服务”按钮,将启动并运行服务,如下所示:

 (10)、点击“停止服务”按钮,将会停止运行服务,如下图所示:

(11)、点击“卸载服务”按钮,将会从服务中删除MyFirstService服务。

(12)、以上启动及停止服务将会写入D:\MyServiceLog.txt,内容如下所示:

补充:如何调试服务

1、要调试服务,其实很简单,只需将服务附加进程到需要调试的项目里面即可,假如要调试刚才建的服务,现在OnStop事件里设置断点,如下所示:

 2、启动“WindowsServiceClient”项目,在“调试”菜单中选择“附件到进程”(服务必须事先安装),如下所示:

 3、找到“WindowsServiceDemo.exe”,点击“附加”按钮,如下图所示:

 4、点击“停止服务”按钮,程序将会在设置断点的地方中断,如下图所示:

 

 至此,windows服务的安装,启动,停止,卸载的方法结束了,有其它方法的朋友们也可以分享一下,多多交流,共同进步

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

忧郁的蛋~

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值