error 1083 the executable program that this service is configured to run does not implemented the service

前端 未结 4 481
轮回少年
轮回少年 2020-12-20 12:07

getting error while try to start service

4条回答
  •  不知归路
    2020-12-20 12:25

    I've got same problem. My solution for this was to check the service name and service installer service name. Both must be the same.

    private void InitializeComponent()
    {
        components = new System.ComponentModel.Container();
        this.ServiceName = "EmailService";
    }
    

提交回复
热议问题