/// <summary>
/// 启动服务
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void button1_Click(object sender, EventArgs e)
{
ServiceController sc = new ServiceController("WindowsService1");
if (sc.Status.Equals(ServiceControllerStatus.Stopped))
{
sc.Start();
}
}
/// <summary>
/// 停止服务
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void button2_Click(object sender, EventArgs e)
{
ServiceController sc = new ServiceController("MSSQLSERVER");
用C#代码来安装、卸载、启动、关闭服务
最新推荐文章于 2024-09-13 22:29:17 发布
这篇博客介绍了如何使用C#代码来控制Windows服务,包括启动服务、停止服务、安装服务和卸载服务。通过示例代码详细展示了ServiceController类的使用方法以及安装和卸载服务的实现过程。
摘要由CSDN通过智能技术生成