1. 准备工作:
  2. .电脑->管理->本地用户和组->组->Administrator双击->隶属->添加Network service->确定
  3. .启动windows服务Windows Installer
  4. .创建winform项目 WindowsFormsApplication1
  5. .添加windows服务 service1
  6. .添加代码
  7. protected override void OnStart(string[] args)
  8. {
  9. if (args != null && args.Length > )
  10. {
  11. if (args[] == "")
  12. {
  13. string path = $@"d:\kxbbbb{DateTime.Now.ToLongDateString()}.txt";
  14. File.Create($"{path}");
  15. }
  16. else if (args[] == "")
  17. {
  18. string path = $@"d:\kxqqq{DateTime.Now.ToLongDateString()}.txt";
  19. File.Create($"{path}");
  20.  
  21. }
  22. }
  23.  
  24. // TODO: 在此处添加代码以启动服务。
  25. }
  26. .Main函数启动
  27. /// <summary>
  28. /// 应用程序的主入口点。
  29. /// </summary>
  30. [STAThread]
  31. static void Main()
  32. {
  33. //Application.EnableVisualStyles();
  34. //Application.SetCompatibleTextRenderingDefault(false);
  35. //Application.Run(new Form1());
  36. ServiceBase[] serviceRun;
  37. serviceRun = new ServiceBase[] { new Service1() };
  38. ServiceBase.Run(serviceRun);
  39. }
  40.  
  41. .service1.cs右键查看设计器,再右键添加安装程序,默认添加两个
  42. serviceInstaller1serviceProcessInstaller1
  43. .serviceInstaller1右键属性修改Description 为这是一个测试服务
  44. .serviceProcessInstaller1右键属性 Account修改为NetworkService
  45. .管理员打开cmd
  46. cd C:\Windows\Microsoft.NET\Framework(64)\v4.0.30319 InstallUtil.exe复制到要发布的EXEdebug目录里面,命令切换等到该DEBUG目录
  47. .安装服务
  48. InstallUtil.exe WindowsFormsApplication1.exe
  49. .webform调用
  50. protected void Page_Load(object sender, EventArgs e)
  51. {
  52. ServiceController service = new ServiceController("Service1");
  53. //if (service.Status == System.ServiceProcess.ServiceControllerStatus.Stopped)
  54. //{
  55. // service.Start();//打开服务
  56. //}
  57. //停止服务
  58. service.Stop();//这行报错:无法打开计算机“.”上的 Service1 服务。
  59. service.WaitForStatus(ServiceControllerStatus.Stopped);
  60. //启动服务
  61. string[] args = { "" };
  62. service.Start(args);
  63. service.WaitForStatus(ServiceControllerStatus.Running);
  64. }

webform调用windows服务的更多相关文章

  1. Windows服务调用Quartz.net 实现消息调度

    Quartz.NET是一个开源的作业调度框架,是OpenSymphony 的 Quartz API的.NET移植,它用C#写成,可用于winform和asp.net应用中.它提供了巨大的灵活性而不牺牲 ...

  2. .net MVC, webAPI,webForm集成steeltoe+springcloud实现调用服务中心服务的总结

    开始之前,如果没接触过Autofac的,可以移步到Autofac官方示例学习一下怎么使用:https://github.com/autofac/Examples .net 下集成steeltoe进行微 ...

  3. 使用C#创建及调用WCF完整实例 (Windows服务宿主)

    关于WCF的概念.原理.优缺点等,在这里就不多说了,网上很多,可以自行搜索,比我解释的要专业的多. 这里直接说使用Windows 服务(Windows Service)作为宿主如何实现,其它方式不在此 ...

  4. windows服务是如何被调用的?

    1.服务介绍 操作系统在启动的时候,会启动一些不需要用户交互的进程.这些进程被称为服务.当操作系统启动后它就自动被运行. 2.组成 服务程序.服务控制程序(SCP,service control pr ...

  5. C#使用windows服务定时调用api接口

    使用VS创建windows服务项目: 创建好项目  会出现一个设计界面 右键弹出对话框 选择添加安装程序 名字什么的自己可以改: 项目目录: 打开项目中的ProjectInstaller.Design ...

  6. Windows服务的新建,安装,卸载,调试以及调用!

    一.前言: 写这篇博文之前,我正顶着压力在尝试着调试我一无所知的Windows自建服务.历经千辛万苦,找了无数零散文档拼凑关于VisualStudio2015中怎样创建和调试服务程序!最后终于调试成功 ...

  7. Python搭建调用本地dll的Windows服务(浏览器可以访问,附测试dll64位和32位文件)

    一.前言说明 博客声明:此文链接地址https://www.cnblogs.com/Vrapile/p/14113683.html,请尊重原创,未经允许禁止转载!!! 1. 功能简述 (1)本文提供生 ...

  8. 以 Console 方式运行、调试、编译 .Net 编写的 Windows 服务

    经常看到一些人在调试 Windows 服务时,很执著的在附加进程后调试!其实 .Net 编写的 Windows 应用程序,包括 Windows 服务都可以编译成 Console 程序!甚至于 ASP. ...

  9. 基于SignalR实现B/S系统对windows服务运行状态的监测

    通常来讲一个BS项目肯定不止单独的一个BS应用,可能涉及到很多后台服务来支持BS的运行,特别是针对耗时较长的某些任务来说,Windows服务肯定是必不可少的,我们还需要利用B/S与windows服务进 ...

随机推荐

  1. Error in WCF client consuming Axis 2 web service with WS-Security UsernameToken PasswordDigest authentication scheme

    13down votefavorite 6 I have a WCF client connecting to a Java based Axis2 web service (outside my c ...

  2. 利用Web Services开发分布式应用

    一.引言 在前面文章中分别介绍了MSMQ和.NET Remoting技术,今天继续分享.NET 平台下另一种分布式技术——Web Services 二.Web Services 详细介绍 2.1 We ...

  3. C# 4.0中的动态类型和动态编程

    # 4.0的主题就是动态编程(Dynamic Programming).虽然C#仍然是一种静态语言,但是对象的意义开始变得越来越“动态”.它们的结构和行为无法通过静态类型来捕获,或者至少编译器在编译程 ...

  4. StringUtils.isEmpty()和isBlank()的区别

    一.概述 两种判断字符串是否为空的用法都是在程序开发时常用的,相信不少同学在这种简单的问题上也吃过亏,到底有什么区别,使用有什么讲究,带着问题往下看. 二.jar包 commons-lang3-3.5 ...

  5. java的static研究

    (1)static关键字:可以用于修饰属性.方法和类. 1,属性:无论一个类生成了多少个对象,所有这些对象共同使用唯一的一份静态的成员变量(不能修饰临时变量 2,方法:static修饰的方法叫做静态, ...

  6. 由spring的工厂构造bean想到的

    被Spring管理的bean可以是直接创建实例,还可以通过工厂模式来进行创建.例如brave的tracing bean定义: <bean id="tracing" class ...

  7. 冒泡排序算法-Python实现

    #-*- coding: UTF-8 -*- import numpy as np def BubbleSort(a): for i in xrange(0, a.size): for j in xr ...

  8. 【monkeyrunner】monkeyrunner脚本录制和回放

    脚本录制 1.连接你已经打开调试模式的ANDROID设备或模拟器,输入adb devices 2.运行录制脚本.在cmd窗口输入 monkeyrunner recorder.py #recorder. ...

  9. NPOI-Excel系列-1002.创建带有Document Summary Information和Summary Information的Excel文件

    1. using NPOI.HSSF.UserModel; using NPOI.HPSF; using NPOI.POIFS.FileSystem; using Microsoft.VisualSt ...

  10. 编译安装php-5.4.44

    编译安装php-5.4.44 1. 首先,安装必要的库文件,一面编译被打断: yum install -y gcc gcc-c++  make zlib zlib-devel pcre pcre-de ...