`

创建Windows Service的几种方式

 
阅读更多

创建Windows服务(Windows Services)N种方式总结

 

最近由于工作需要,写了一些windows服务程序,有一些经验,我现在总结写出来。
目前我知道的创建创建Windows服务有3种方式:
a.利用.net框架类ServiceBase
b.利用组件Topshelf
c.利用小工具instsrv和srvany

下面我利用这3种方式,分别做一个windows服务程序,程序功能就是每隔5秒往程序目录下记录日志:

 

a.利用.net框架类ServiceBase

本方式特点:简单,兼容性好

通过继承.net框架类ServiceBase实现

第1步: 新建一个Windows服务

复制代码
    public partial class Service1 : ServiceBase
    {
        readonly Timer _timer;

        private static readonly string FileName = Path.GetDirectoryName ( Assembly.GetExecutingAssembly ( ).Location ) + @"\" + "test.txt";

        public Service1 ( )
        {
            InitializeComponent ( );

            _timer = new Timer ( 5000 )
            {
                AutoReset = true ,
                Enabled = true
            };

            _timer.Elapsed += delegate ( object sender , ElapsedEventArgs e )
            {
                this.witre ( string.Format ( "Run DateTime {0}" , DateTime.Now ) );
            };
        }

        protected override void OnStart ( string [ ] args )
        {
            this.witre ( string.Format ( "Start DateTime {0}" , DateTime.Now ) );
        }

        protected override void OnStop ( )
        {
            this.witre ( string.Format ( "Stop DateTime {0}" , DateTime.Now ) + Environment.NewLine );
        }

        void witre ( string context )
        {
            StreamWriter sw = File.AppendText ( FileName );
            sw.WriteLine ( context );
            sw.Flush ( );
            sw.Close ( );
        }

    }
复制代码

第2步: 添加Installer

复制代码
    [RunInstaller ( true )]
    public partial class Installer1 : System.Configuration.Install.Installer
    {
        private ServiceInstaller serviceInstaller;
        private ServiceProcessInstaller processInstaller;

        public Installer1 ( )
        {
            InitializeComponent ( );

            processInstaller = new ServiceProcessInstaller ( );
            serviceInstaller = new ServiceInstaller ( );

            processInstaller.Account = ServiceAccount.LocalSystem;
            serviceInstaller.StartType = ServiceStartMode.Automatic;

            serviceInstaller.ServiceName = "my_WindowsService";
            serviceInstaller.Description = "WindowsService_Description";
            serviceInstaller.DisplayName = "WindowsService_DisplayName";

            Installers.Add ( serviceInstaller );
            Installers.Add ( processInstaller );
        }  
    }
复制代码

第3步:安装,卸载 
Cmd命令
installutil      WindowsService_test.exe  (安装Windows服务)
installutil /u   WindowsService_test.exe  (卸载Windows服务)

代码下载:http://files.cnblogs.com/aierong/WindowsService_test.rar

 

b.利用组件Topshelf

本方式特点:代码简单,开源组件,Windows服务可运行多个实例

Topshelf是一个开源的跨平台的服务框架,支持Windows和Mono,只需要几行代码就可以构建一个很方便使用的服务. 官方网站:http://topshelf-project.com

 

第1步:引用程序集TopShelf.dll和log4net.dll

第2步:创建一个服务类MyClass,里面包含两个方法Start和Stop,还包含一个定时器Timer,每隔5秒往文本文件中写入字符

复制代码
    public class MyClass
    {
        readonly Timer _timer;

        private static readonly string FileName = Directory.GetCurrentDirectory ( ) + @"\" + "test.txt";

        public MyClass ( )
        {
            _timer = new Timer ( 5000 )
            {
                AutoReset = true ,
                Enabled = true
            };

            _timer.Elapsed += delegate ( object sender , ElapsedEventArgs e )
            {
                this.witre ( string.Format ( "Run DateTime {0}" , DateTime.Now ) );
            };
        }

        void witre ( string context )
        {
            StreamWriter sw = File.AppendText ( FileName );
            sw.WriteLine ( context );
            sw.Flush ( );
            sw.Close ( );
        }

        public void Start ( )
        {
            this.witre ( string.Format ( "Start DateTime {0}" , DateTime.Now ) );
        }

        public void Stop ( )
        {
            this.witre ( string.Format ( "Stop DateTime {0}" , DateTime.Now ) + Environment.NewLine );
        }

    }
复制代码

第3步:使用Topshelf宿主我们的服务,主要是Topshelf如何设置我们的服务的配置和启动和停止的时候的方法调用

复制代码
    class Program
    {
        static void Main ( string [ ] args )
        {
            HostFactory.Run ( x =>
            {
                x.Service<MyClass> ( ( s ) =>
                {
                    s.SetServiceName ( "ser" );
                    s.ConstructUsing ( name => new MyClass ( ) );
                    s.WhenStarted ( ( t ) => t.Start ( ) );
                    s.WhenStopped ( ( t ) => t.Stop ( ) );
                } );

                x.RunAsLocalSystem ( );

                //服务的描述
                x.SetDescription ( "Topshelf_Description" );
                //服务的显示名称
                x.SetDisplayName ( "Topshelf_DisplayName" );
                //服务名称
                x.SetServiceName ( "Topshelf_ServiceName" );

            } );
        }
    }
复制代码

第4步: cmd命令

ConsoleApp_Topshelf.exe  install    (安装Windows服务)

ConsoleApp_Topshelf.exe  uninstall  (卸载Windows服务)

 

代码下载:http://files.cnblogs.com/aierong/ConsoleApp_Topshelf.rar

 

c.利用小工具instsrv和srvany

本方式特点:代码超级简单,WindowsForm程序即可,并支持程序交互(本人最喜欢的特点),好像不支持win7,支持xp win2003

首先介绍2个小工具:

instsrv.exe:用以安装和卸载可执行的服务

srvany.exe:用于将任何EXE程序作为Windows服务运行

 

这2个工具都是是Microsoft Windows Resource Kits工具集的实用的小工具 

你可以通过下载并安装Microsoft Windows Resource Kits获得 http://www.microsoft.com/en-us/download/details.aspx?id=17657

 

第1步: 新建WindowsForm程序

复制代码
   public partial class Form1 : Form
    {
        Timer _timer;

        private static readonly string FileName = Application.StartupPath + @"\" + "test.txt";

        public Form1 ( )
        {
            InitializeComponent ( );
        }

        private void Form1_Load ( object sender , EventArgs e )
        {
            _timer = new Timer ( )
            {
                Enabled = true ,
                Interval = 5000
            };

            _timer.Tick += delegate ( object _sender , EventArgs _e )
            {
                this.witre ( string.Format ( "Run DateTime {0}" , DateTime.Now ) );
            };
        }

        void _timer_Tick ( object sender , EventArgs e )
        {
            throw new NotImplementedException ( );
        }

        void witre ( string context )
        {
            StreamWriter sw = File.AppendText ( FileName );
            sw.WriteLine ( context );
            sw.Flush ( );
            sw.Close ( );
        }

        private void button1_Click ( object sender , EventArgs e )
        {
            MessageBox.Show ( "Hello" );
        }

    }
复制代码

 

 

第2步:安装,卸载

服务的安装步骤分5小步:

(1)打开CMD,输入以下内容,其中WindowsForms_WindowsService为你要创建的服务名称

格式:目录绝对路径\instsrv  WindowsForms_WindowsService  目录绝对路径\srvany.exe

例如:

D:\TempWork\win\Debug\instsrv.exe  WindowsForms_WindowsService  D:\TempWork\win\Debug\srvany.exe

 

(2)regedit打开注册表编辑器,找到以下目录

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WindowsForms_WindowsService

 

(3)鼠标右键单击WindowsForms_WindowsService,创建一个"项",名称为"Parameters"

 

(4)鼠标左键单击"Parameters",在右边点击鼠标右键,创建一个"字符串值"(REG_SZ),名称为"Application",数值数据里填写目录下可执行文件的绝对路径+文件名

例如:

D:\TempWork\win\Debug\WindowsFormsApplication_Exe.exe

 

(5)打开services.msc服务控制面板,找到WindowsForms_WindowsService服务,鼠标右键-属性-登陆,勾选"允许服务与桌面交互"

 

启动服务,可以看到程序界面

 


 

卸载服务

D:\TempWork\win\Debug\instsrv.exe WindowsForms_WindowsService REMOVE

 

代码下载:http://files.cnblogs.com/aierong/WindowsFormsApplication_Exe.rar

分享到:
评论

相关推荐

    创建Windows Service,定时监控客户端服务程序

    首先,创建Windows Service的过程通常涉及到以下步骤: 1. 创建一个新的.NET类库项目,该类库将作为服务的主体。 2. 继承`System.ServiceProcess.ServiceBase`类,创建自定义的服务类。 3. 在服务类中重写关键方法,...

    创建windows服务程序的demo

    本示例("创建windows服务程序的demo")将教你如何在C++环境中创建一个Windows服务程序。我们将围绕以下几个关键知识点进行展开: 1. **Windows服务的基本概念**: Windows服务是运行在系统级别的应用程序,它们...

    C#创建Windows服务

    总结来说,使用C#创建Windows服务涉及以下几个关键步骤: 1. 引用`System.ServiceProcess`命名空间。 2. 创建一个继承自`ServiceBase`的类,重写`OnStart`和`OnStop`方法。 3. 实现安装程序类,使用`...

    windowsservice.pdf

    从提供的文件内容来看,文档应该涉及到创建Windows服务的代码结构。例如,一个简单的Windows服务程序可能包含如下几个文件: - **Service1.cs**:包含服务的主类,继承自ServiceBase,用于定义服务的行为。 - **...

    C#发现之旅 --- C#开发Windows Service程序)

    1. **创建Windows Service项目**:在Visual Studio中选择创建新的Windows Service项目。 2. **编写ServiceBase的派生类**:创建一个继承自ServiceBase的类,在其中实现服务的启动、停止等逻辑。 3. **安装服务**:将...

    Windows Service 通信- 消息队列

    创建Windows Service时,我们可以利用.NET Framework中的`System.Messaging`命名空间,该命名空间提供了对MSMQ的访问和操作。例如,我们可以通过`MessageQueue`类来创建、发送和接收消息,通过`Message`类来封装要...

    创建Windows服务程序

    本篇文章将深入探讨如何创建Windows服务程序,并讲解相关的关键概念和技术。 首先,创建Windows服务程序的核心是编写一个可执行文件(.exe),这个文件包含了服务的具体逻辑。在编程时,我们通常会使用C#、C++或VB...

    C++创建window服务

    ### C++创建Windows服务知识点详解 #### 一、概述 本文详细介绍如何利用C++与Visual C++工具创建Windows NT服务程序。文章强调了一个关键概念——使用一个特定的C++类来简化服务程序的开发过程。这种方法的核心优势...

    visual c++ vc编写windows service服务 源程序.zip

    在Visual C++中创建Windows Service主要涉及以下几个步骤: 1. **定义服务类**: 通常,我们会创建一个继承自`CWinApp`的类,该类包含服务的入口点和处理函数。例如,`ApacheMonitor.h`可能定义了这样的类,包含了...

    WindowsService

    关于`WindowsService1`这个文件,可能是包含了创建Windows Service的代码示例或者截图。如果需要更详细的指导,建议查看该文件以获取具体实现的细节。 总的来说,Windows Service在系统管理和自动化任务中扮演着...

    c++ win32 windows service

    C++语言本身并不包含创建Windows服务的内置支持,但可以通过调用Windows API函数来实现。Win32 API提供了丰富的函数集,用于操作和服务管理,如创建、启动、停止和查询服务状态。 3. **服务控制管理器(SCM)**: ...

    C# 带任务栏图标的WindowsService

    而“C# 带任务栏图标的Windows Service”是指使用C#编程语言创建的Windows服务,它能够在任务栏通知区域(系统托盘)显示一个图标,用户可以通过这个图标与服务进行交互。这样的设计使得服务不仅仅是一个后台进程,...

    windows service C++ Demo

    总结来说,"windows service C++ Demo"项目是一个实践教程,它涵盖了创建Windows服务的基本步骤,包括服务的注册、启动、停止、删除以及如何在服务线程中添加自定义逻辑。通过学习和实践这个项目,开发者可以深入...

    创建windows服务

    创建Windows服务不仅需要理解C#语言的基本结构,还需要熟悉.NET Framework的API,特别是System.ServiceProcess命名空间中的类和方法。 总的来说,创建一个"HelloWorld"的Windows服务,需要掌握C#编程,理解Windows...

    windows service开发的微信自动退款

    Windows Service是一种在Windows操作系统后台运行的服务,它可以独立于用户界面启动,持续监控并执行特定任务,如自动化工作流程,如微信退款过程。在此,我们将深入探讨如何开发微信自动退款功能以及如何结合...

    WindowsService-master.zip

    使用C#创建Windows服务主要包括以下几个步骤: 1. 创建服务类:首先,我们需要创建一个继承自`System.ServiceProcess.ServiceBase`的类。在这个类中,我们需要重写`OnStart`和`OnStop`方法,以定义服务启动和停止时...

    使用C#创建webservice及三种调用方式

    在C#中,可以通过以下几种方式调用WebService: 1. **使用WSDL生成代理类**: - 在客户端项目中,使用“添加服务引用”功能,通过提供WebService的WSDL地址(通常是`...

    C#创建windows服务+Form+Web调用服务

    要实现Web应用调用Windows服务,一般有几种方法:使用Web API、ASP.NET MVC或者WCF服务。这些技术可以创建一个中间层,将HTTP请求转换为对服务的操作。例如,Web API允许我们在HTTP协议上构建RESTful服务,使得Web...

    通过VC创建WINDOWS服务程序

    创建Windows服务在VC中主要涉及以下几个步骤: 1. **新建项目**:打开Visual C++,选择“文件”&gt;“新建”&gt;“项目”,在项目类型中选择“Win32 Console Application”。在向导中,选择“下一步”,然后在“应用程序...

Global site tag (gtag.js) - Google Analytics