zoukankan      html  css  js  c++  java
  • Windows服务安装后自动启动

    在服务上添加安装程序,在serviceProcessInstaller1控件的Committed事件当中添加代码:

                System.ServiceProcess.ServiceController     controller     =     new     System.ServiceProcess.ServiceController("MyService");  
                controller.Start();  

    MyService为服务名


    此操作之前要先设置下两个控件

    设置serviceProcessInstaller1控件的Account属性为“LocalSystem
    设置serviceInstaller1控件的StartType属性为"Automatic"

    以上代码有误,待解决后再修改

    ----------------华丽的分割线--------------------------

    在服务器上添加安装程序,在private void ProjectInstaller_AfterInstall(object sender, InstallEventArgs e)事件中,添加以下代码:

    Process p = new Process();
    p.StartInfo.FileName 
    = "cmd.exe";
    p.StartInfo.UseShellExecute 
    = false;
    p.StartInfo.RedirectStandardInput 
    = true;
    p.StartInfo.RedirectStandardOutput 
    = true;
    p.StartInfo.RedirectStandardError 
    = true;
    p.StartInfo.CreateNoWindow 
    = true;
    p.Start();
    string Cmdstring = "sc start myservice"//CMD命令
    p.StandardInput.WriteLine(Cmdstring);
    p.StandardInput.WriteLine(
    "exit");

    即可在安装服务后立刻启动windows服务

    注: 引用using System.Diagnostics;//调用Process

    以上代码,亲测成功! 欢迎点评(在网上找了n久解决方案,最后还是自己搞定,转载请注明出处)

  • 相关阅读:
    论文阅记 YOLOv4: Optimal Speed and Accuracy of Object Detection
    【项目实战】yolov3-tiny人脸数据模型训练
    面试题54. 二叉搜索树的第k大节点
    102. 二叉树的层序遍历
    107. 二叉树的层次遍历 II
    连续子数组的最大和
    172. 阶乘后的零
    26 进制
    405. 数字转换为十六进制数
    504. 七进制数
  • 原文地址:https://www.cnblogs.com/wfwup/p/1375382.html
Copyright © 2011-2022 走看看