我正在使用
Windows服务.工作正常当我尝试从services.msc停止服务时,会引发以下错误:
Windows could not stop the xxx service on Local Computer.
The service did not return an error. This could be an internal Windows error or an internal service error.
If the problem persists,contact your system administrator.
如果我再次尝试停止它,它需要很多时间,然后抛出错误如下:
Windows could not stop the xxx service on Local Computer.
Error 1061: The service cannot accept control messages at this time.
此时,服务已停止.但是如果我尝试重新安装该服务,它会引发另一个错误:
Windows could not stop the xxx service on Local Computer.
Error 1001: The specified service is marked for deletion.
在关闭services.msc之后,它可以让我重新安装服务,再次,事情开始工作正常.
在OnStop()中,我做了一些冗长的操作,需要时间才能完成.
有什么想法可以让整个事情顺利进行吗?
– 编辑 –
这是我的OnStop方法的样子:
protected override void OnStop() { base.OnStop(); //Some lengthy operation }