• 大小: 0.17M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-25
  • 语言: C#
  • 标签: 系统  服务  

资源简介

附件中有详细的安装使用文档,大概步骤如下:


1.新建Windows项目,选择"Windows服务"类型的工程。

2.生成的Program.cs文件中,定义了服务启动的Main函数。

 

代码 

namespace WindowsService1
{
    static class Program
    {
        /// <summary>
        /// 应用程序的主入口点。
        /// </summary>
        static void Main()
        {
            ServiceBase[] ServicesToRun;
            ServicesToRun = new ServiceBase[] 
            { 
                new Service1() 
            };
            ServiceBase.Run(ServicesToRun);
        }
    }
}

 

 

3.在新建的工程中,点击Service1.cs文件,切换到代码视图,生成的代码继承于ServiceBase基类,并重载了OnStart和OnStop方法。我在这个文件中进行了一些简单的操作,就是在服务开始的时候,定义一个定时器,然后每隔1秒钟,向文件中写入当前时间。

 

代码 

namespace WindowsService1
{
    public partial class Service1 : ServiceBase
    {
        Timer timer;
        public Service1()
        {
            InitializeComponent();
        }

        protected override void OnStart(string[] args)
        {
            timer = new Timer(1000);
            timer.Elapsed  = new ElapsedEventHandler(timer_Elapsed);
            timer.Start();
        }

        protected override void OnStop()
        {
            timer.Stop();
            timer.Dispose();
        }

        void timer_Elapsed(object sender, ElapsedEventArgs e)
        {
            string filePath = AppDomain.CurrentDomain.BaseDirectory   "test.txt";
            StreamWriter sw = null;
            if (!File.Exists(filePath))
            {
                sw = File.CreateText(filePath);
            }
            else
            {
                sw = File.AppendText(filePath);
            }
            sw.Write("访问时间:" DateTime.Now.ToString() Environment.NewLine);
            sw.Close();
        }
    }
}

4.向工程中添加一个安装程序类。

 

4.在新添加的安装程序类中,设定服务的名称,启动方式,账号名和密码等信息。

 

代码 

namespace WindowsService1
{
    partial class Installer1
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        private System.ServiceProcess.ServiceProcessInstaller spInstaller;
        private System.ServiceProcess.ServiceInstaller sInstaller;

        /// <summary> 
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region 组件设计器生成的代码

        /// <summary>
        /// 设计器支持所需的方法 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            components = new System.ComponentModel.Container();

            // 创建ServiceProcessInstaller对象和ServiceInstaller对象
            this.spInstaller =new System.ServiceProcess.ServiceProcessInstaller();
            this.sInstaller = new System.ServiceProcess.ServiceInstaller();

            // 设定ServiceProcessInstaller对象的帐号、用户名和密码等信息
            this.spInstaller.Account = System.ServiceProcess.ServiceAccount.LocalSystem;
            this.spInstaller.Password = null;
            this.spInstaller.Username = null;

            // 设定服务的名称
            this.sInstaller.ServiceName = "WindowsService1";

            //设定服务启动的方式
            this.sInstaller.StartType = System.ServiceProcess.ServiceStartMode.Automatic;

            this.Installers.AddRange(new System.Configuration.Install.Installer[] {
            this.spInstaller,this.sInstaller});
        }

        #endregion
    }
}

5.生成工程,在bin目录下会生成exe文件。如果直接运行exe文件的话,是不能执行的,需要使用安装Windows服务用到一个名为InstallUtil.exe的命令行工具,打开命令行工具,转到InstallUtil.exe的目录下,我安装的是VS 2010,对应的目录为:C:\Windows\Microsoft.NET\Framework\v4.0.30319\InstallUtil.exe,然后执行InstallUtil.exe 待执行的exe文件的目录,如:InstallUtil.exe F:\MyProject\WindowsService1\WindowsService1\bin\Debug\WindowsService1.exe。执行成功后,会在Windows的服务中,出现了刚刚添加的服务的名称。

 

6.启动该服务,这时打开bin\Debug文件夹,发现已经生成了一个test.txt的文件,里面记录了时间。这说明服务已经正式开始执行。

7.停止服务的操作也和简单,打开命令行工具,转到C:\Windows\Microsoft.NET\Framework\v4.0.30319目录,然后执行InstallUtil.exe - u F:\MyProject\WindowsService1\WindowsService1\bin\Debug\WindowsService1.exe命令就可以了。



资源截图

代码片段和文件信息

using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Configuration.Install;
using System.Linq;


namespace WindowsService1
{
    [RunInstaller(true)]
    public partial class Installer1 : System.Configuration.Install.Installer
    {
        public Installer1()
        {
            InitializeComponent();
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1050  2011-01-13 14:36  WindowsService1\WindowsService1\bin\Debug\test.txt

     文件       6656  2011-01-13 14:33  WindowsService1\WindowsService1\bin\Debug\WindowsService1.exe

     文件      14739  2011-01-13 14:36  WindowsService1\WindowsService1\bin\Debug\WindowsService1.InstallLog

     文件      19968  2011-01-13 14:33  WindowsService1\WindowsService1\bin\Debug\WindowsService1.pdb

     文件      11600  2011-01-13 14:33  WindowsService1\WindowsService1\bin\Debug\WindowsService1.vshost.exe

     文件        490  2010-03-17 22:39  WindowsService1\WindowsService1\bin\Debug\WindowsService1.vshost.exe.manifest

     文件        409  2011-01-10 15:34  WindowsService1\WindowsService1\Installer1.cs

     文件       2082  2011-01-10 16:27  WindowsService1\WindowsService1\Installer1.Designer.cs

     文件       5217  2011-01-11 10:09  WindowsService1\WindowsService1\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache

     文件       6148  2011-01-13 14:33  WindowsService1\WindowsService1\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件       8080  2011-01-13 14:33  WindowsService1\WindowsService1\obj\x86\Debug\ResolveAssemblyReference.cache

     文件       1457  2011-01-13 14:33  WindowsService1\WindowsService1\obj\x86\Debug\WindowsService1.csproj.FileListAbsolute.txt

     文件       6656  2011-01-13 14:33  WindowsService1\WindowsService1\obj\x86\Debug\WindowsService1.exe

     文件      19968  2011-01-13 14:33  WindowsService1\WindowsService1\obj\x86\Debug\WindowsService1.pdb

     文件        509  2011-01-10 15:32  WindowsService1\WindowsService1\Program.cs

     文件       1376  2011-01-10 15:32  WindowsService1\WindowsService1\Properties\AssemblyInfo.cs

     文件       1360  2011-01-13 14:28  WindowsService1\WindowsService1\Service1.cs

     文件       1090  2011-01-10 15:32  WindowsService1\WindowsService1\Service1.Designer.cs

     文件       3018  2011-01-13 14:32  WindowsService1\WindowsService1\WindowsService1.csproj

     文件        887  2011-01-13 14:28  WindowsService1\WindowsService1.sln

    ..A..H.     33280  2011-01-13 14:33  WindowsService1\WindowsService1.suo

     目录          0  2011-01-13 14:33  WindowsService1\WindowsService1\obj\x86\Debug\TempPE

     目录          0  2011-01-13 14:33  WindowsService1\WindowsService1\obj\x86\Debug

     目录          0  2011-01-13 14:36  WindowsService1\WindowsService1\bin\Debug

     目录          0  2011-01-13 14:33  WindowsService1\WindowsService1\obj\x86

     目录          0  2011-01-13 14:33  WindowsService1\WindowsService1\bin

     目录          0  2011-01-13 14:33  WindowsService1\WindowsService1\obj

     目录          0  2011-01-13 14:33  WindowsService1\WindowsService1\Properties

     目录          0  2011-01-13 14:33  WindowsService1\WindowsService1

     目录          0  2011-01-13 14:33  WindowsService1

............此处省略4个文件信息

评论

共有 条评论