• VS2013创建Windows服务与调试服务


    1、创建Windows服务

    说明:

      

     a)Description 服务描述,直接显示到Windows服务列表中的描述;

      b)DisplayName 服务显示名称,直接显示到Windows服务列表中的名称;

      c)ServiceName 服务进程名称,安装与卸载服务时的唯一标识。

    单击“serviceProcessInstaller1”,在其属性窗口中设置Account帐号方式,建议为LocalService(当然也可以Account属性改为 LocalSystem,这样,不论是以哪个用户登录的系统,服务总会启动)。

    编写安装和卸载脚本,并将放在bin/debug或bin/Release文件夹下。

    安装脚本

    %SystemRoot%Microsoft.NETFrameworkv4.0.30319installutil.exe %~dp0exe程序的名称.exe
    Net Start 服务名称
    sc config 服务名称 start= auto
    pause

    这里注意,在exe程序的名称前面有 %~dp0 这是代表当前位置

    服务名称 对应 上面我们创建服务时ServerName的名称

    卸载脚本

    %SystemRoot%Microsoft.NETFrameworkv4.0.30319installutil.exe /u %~dp0exe程序的名称.exe
    pause

    同时还要注意一下,本人用的.NET4.0的版本,所以Microsoft.NETFrameworkv4.0.30319installutil.exe 这一段要根据你机器安装.NET的版本来定。

    其实脚本主要是通过installutil.exe 来进行安装和卸载服务的,同时此处涉及的批处理命令不多。

    2、调试windows服务

    在项目中不用启动windows服务项目,而是直接附加进程来进行调试。

    在可用进程中,查找到你刚才通过脚本安装的服务就可以了。 

     再发一个写入服务代码的Demo

    public partial class MMSServer : ServiceBase
        {
            private Timer time = new Timer();
            public MMSServer()
            {
                InitializeComponent();
            }
    
            protected override void OnStart(string[] args)
            {
    #if DEBUG
                if (!Debugger.IsAttached)
                    Debugger.Launch();
                Debugger.Break();
    #endif
                WriteLog("服务启动,时间:" + DateTime.Now.ToString("HH:mm:ss") + "
    ");
                time.Elapsed += new ElapsedEventHandler(MethodEvent);
                time.Interval = 3 * 1000;
                time.Start();
            }
    
            protected override void OnPause()
            {
    #if DEBUG
                if (!Debugger.IsAttached)
                    Debugger.Launch();
                Debugger.Break();
    #endif
                WriteLog("服务暂停,时间:" + DateTime.Now.ToString("HH:mm:ss") + "
    ");
                base.OnPause();
            }
            protected override void OnContinue()
            {
    #if DEBUG
                if (!Debugger.IsAttached)
                    Debugger.Launch();
                Debugger.Break();
    #endif
                WriteLog("服务恢复,时间:" + DateTime.Now.ToString("HH:mm:ss") + "
    ");
                base.OnContinue();
            }
    
            protected override void OnShutdown()
            {
                WriteLog("计算机关闭,时间:" + DateTime.Now.ToString("HH:mm:ss") + "
    ");
                base.OnShutdown();
            }
    
            private void MethodEvent(object source, System.Timers.ElapsedEventArgs e)
            {
                time.Enabled = false;
                string result = string.Empty;
                try
                {
                    //.........
                    result = "执行成功,时间:" + DateTime.Now.ToString("HH:mm:ss") + "
    ";
                }
                catch (Exception ex)
                {
                    result = "执行失败,原因:" + ex.Message + "
    ";
                }
                finally
                {
                    WriteLog(result);
                    time.Enabled = true;
                }
            }
            protected override void OnStop()
            {
    #if DEBUG
                if (!Debugger.IsAttached)
                    Debugger.Launch();
                Debugger.Break();
    #endif
                WriteLog("服务停止,时间:" + DateTime.Now.ToString("HH:mm:ss") + "
    ");
            }
            /// <summary>
            /// 日志记录
            /// </summary>
            /// <param name="logInfo"></param>
            private void WriteLog(string logInfo)
            {
                try
                {
                    string logDirectory = AppDomain.CurrentDomain.BaseDirectory + "\Logs";
                    if (!Directory.Exists(logDirectory))
                    {
                        Directory.CreateDirectory(logDirectory);
                    }
                    string filePath = logDirectory + "\" + DateTime.Now.ToString("yyyy-MM-dd") + ".txt";
                    File.AppendAllText(filePath, logInfo);
                }
                catch
                {
    
                }
            }
        }
  • 相关阅读:
    谷歌浏览器中安装JsonView扩展程序
    谷歌浏览器中安装Axure扩展程序
    PreferencesUtils【SharedPreferences操作工具类】
    Eclipse打包出错——提示GC overhead limit exceeded
    IntentActionUtil【Intent的常见作用的工具类】
    DeviceUuidFactory【获取设备唯一标识码的UUID(加密)】【需要运行时权限的处理的配合】
    AndroidStudio意外崩溃,电脑重启,导致重启打开Androidstudio后所有的import都出错
    DateTimeHelper【日期类型与字符串互转以及日期对比相关操作】
    ACache【轻量级的开源缓存框架】
    WebUtils【MD5加密(基于MessageDigest)】
  • 原文地址:https://www.cnblogs.com/yunfeng83/p/6375078.html
Copyright © 2020-2023  润新知