C#实现操作windows系统服务(service)的方法
更新时间:2015年04月28日 11:35:59 作者:igoo
这篇文章主要介绍了C#实现操作windows系统服务(service)的方法,可实现系统服务的启动和停止功能,非常具有实用价值,需要的朋友可以参考下
本文实例讲述了C#实现操作windows系统服务(service)的方法。分享给大家供大家参考。具体如下:
这段C#代码可以控制启动和停止系统服务
/// <summary> /// 停止服务 /// </summary> private bool StopService(string StopServiceName) { ServiceController service = new ServiceController(StopServiceName); try { service.Stop(); service.WaitForStatus(ServiceControllerStatus.Stopped); } catch(Exception) { return false; } return true; } /// <summary> /// 开启服务 /// </summary> private bool StartService(string StartServiceName) { ServiceController service = new ServiceController(StartServiceName); try { service.Start(); service.WaitForStatus(ServiceControllerStatus.Running); } catch (Exception) { return false; } return true; }
希望本文所述对大家的C#程序设计有所帮助。
相关文章
Unity的AssetPostprocessor之Model函数使用实战
这篇文章主要为大家介绍了Unity的AssetPostprocessor之Model函数使用实战,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2023-08-08
最新评论