用VS制作的windows服务安装包 安装完后如何让服务自动启动

时间:2023-02-22 11:36:47
vs 服务做成安装包,如何安装以后启动服务,只要在类名为 projectinstaller的类中重写 commit事件即可
    
   public override void Commit(IDictionary savedState)
        {
            base.Commit(savedState);

            ServiceController sc = new ServiceController("HttpProviderService");
            if (sc.Status.Equals(ServiceControllerStatus.Stopped))
            {
                sc.Start();
            }
        } 

 

 

用VS制作的windows服务安装包 安装完后如何让服务自动启动