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 }解决方法 windows服务在onstart和onstop事件中具有默认超时.通常,如果您在任何这些事件中执行耗时的 *** 作,则会启动一个新线程,并让 *** 作在后台执行.
通常,windows服务中的OnStart以及OnStop事件用于启动进程,耗时的进程将执行它在子线程中的执行.
希望这将解决您的问题..
总结以上是内存溢出为你收集整理的c# – 停止Windows服务时出错全部内容,希望文章能够帮你解决c# – 停止Windows服务时出错所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)