文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

如何用C#编写一个Windows服务程序

2023-07-05 12:06

关注

今天小编给大家分享一下如何用C#编写一个Windows服务程序的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。

添加引用Windows服务(.NET Framework)

如何用C#编写一个Windows服务程序

输入项目名称,选择安装位置,,选择安装框架版本;创建。

如何用C#编写一个Windows服务程序

找到MyService.cs ,右击‘查看代码’

如何用C#编写一个Windows服务程序

如何用C#编写一个Windows服务程序

添加如下代码:

public partial class MyService : ServiceBase    {        public MyService()        {            InitializeComponent();        }        string filePath = @"D:\MyServiceLog.txt";        protected override void OnStart(string[] args)        {//服务启动时,执行该方法            using (FileStream stream = new FileStream(filePath,FileMode.Append))            using (StreamWriter writer = new StreamWriter(stream))            {                writer.WriteLine($"{DateTime.Now},服务启动!");            }        }        protected override void OnStop()        {//服务关闭时,执行该方法            using (FileStream stream = new FileStream(filePath,FileMode.Append))            using (StreamWriter writer = new StreamWriter(stream))            {                writer.WriteLine($"{DateTime.Now},服务停止!");            }        }    }

双击MyService.cs,在出现的界面中右击–>选择“添加安装程序”。

如何用C#编写一个Windows服务程序

点击后,会自动生产连个控件,sericcelnstaller1 和sericeProcessInstaller1

如何用C#编写一个Windows服务程序

分别设置两个控件的属性

右击serviceInstaller1 点击属性

如何用C#编写一个Windows服务程序

分别设置:服务安装的描述,服务的名称,启动的类型 。

如何用C#编写一个Windows服务程序

在serviceProcessInstaller1 ,设置Account(服务属性系统级别),设置“本地服务”

如何用C#编写一个Windows服务程序

找到项目,右击“重新生成”。

如何用C#编写一个Windows服务程序

在同一个解决方案下,添加Windows From项目应用窗体:

①点击“添加”,新建项目,选择Windows窗体应用。要注意添加时,选择的路径,是否在同一个解决方案目录下。

如何用C#编写一个Windows服务程序

如何用C#编写一个Windows服务程序

如何用C#编写一个Windows服务程序

找到Form设计窗体,添加控件如图。控件工具箱在菜单栏–>视图–>找到‘工具箱’。如图所示

如何用C#编写一个Windows服务程序

如何用C#编写一个Windows服务程序

Form窗体中,单击空白窗体,按F7进入命令界面。添加如下代码:

public partial class Form2 : Form    {        public Form2()        {            InitializeComponent();        }        string serviceFilePath = $"{Application.StartupPath}\\MyWindowsService.exe";//MyWindowsService.exe 是项目名称对应的服务        string serviceName = "DemoService"; //这里时服务名,是第五点中,设置的名称,要对应好        private void button1_Click(object sender, EventArgs e)        {            try            {                System.Diagnostics.Process myProcess = new System.Diagnostics.Process();                myProcess.StartInfo.FileName = "cmd.exe";//启动cmd命令                myProcess.StartInfo.UseShellExecute = false;//是否使用系统外壳程序启动进程                myProcess.StartInfo.RedirectStandardInput = true;//是否从流中读取                myProcess.StartInfo.RedirectStandardOutput = true;//是否写入流                myProcess.StartInfo.RedirectStandardError = true;//是否将错误信息写入流                myProcess.StartInfo.CreateNoWindow = true;//是否在新窗口中启动进程                myProcess.Start();//启动进程                //myProcess.StandardInput.WriteLine("shutdown -s -t 0");//执行关机命令                myProcess.StandardInput.WriteLine("shutdown -r -t 60");//执行重启计算机命令            }            catch (Exception) { }        }        //停止服务        private void button2_Click(object sender, EventArgs e)        {            try            {                if (this.IsServiceExisted(serviceName)) this.ServiceStop(serviceName);            }            catch (Exception ex)            {                MessageBox.Show("无法停止服务!"+ex.ToString());            }        }        //事件:安装服务        private void button3_Click(object sender, EventArgs e)        {            try            {                if (this.IsServiceExisted(serviceName)) this.UninstallService(serviceName);                this.InstallService(serviceFilePath);                MessageBox.Show("安装服务完成");            }            catch (Exception ex)            {                MessageBox.Show(ex.ToString());            }                   }        /// <summary>        ///事件:卸载服务        /// </summary>        /// <param name="sender"></param>        /// <param name="e"></param>        private void button4_Click(object sender, EventArgs e)        {            try            {                if (this.IsServiceExisted(serviceName))                {                    this.ServiceStop(serviceName);                    this.UninstallService(serviceFilePath);                    MessageBox.Show("卸载服务完成");                }            }            catch (Exception ex)            {                MessageBox.Show(ex.ToString());            }                    }        //事件:启动服务        private void button5_Click(object sender, EventArgs e)        {            try            {                if (this.IsServiceExisted(serviceName)) this.ServiceStart(serviceName);                MessageBox.Show("启动服务完成");            }            catch (Exception ex)            {                MessageBox.Show(ex.ToString());            }                    }        //判断服务是否存在        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 = 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();                }            }        }    }

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

如何用C#编写一个Windows服务程序

如何用C#编写一个Windows服务程序

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

如何用C#编写一个Windows服务程序

打开该文件,并将改为,如下图所示:

如何用C#编写一个Windows服务程序

IDE启动后,将会弹出如下所示的窗体(有的系统因UAC配置有可能不显示),需要用管理员权限打开

如何用C#编写一个Windows服务程序

效果图

单击安装服务

如何用C#编写一个Windows服务程序

找到服务,可以查看到。

如何用C#编写一个Windows服务程序

卸载服务

如何用C#编写一个Windows服务程序

服务卸载成功,找不到服务。

如何用C#编写一个Windows服务程序

以上就是“如何用C#编写一个Windows服务程序”这篇文章的所有内容,感谢各位的阅读!相信大家阅读完这篇文章都有很大的收获,小编每天都会为大家更新不同的知识,如果还想学习更多的知识,请关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯