用C#无法操作系统服务
我用C#编写了一段代码,希望能够启动/停止等操作系统服务,可是每次运行都会报"无法打开计算机"."上的xxxxxx服务"的鬼错,xxxx是我要操作的服务名称下面是我的代码...
我用C#编写了一段代码,希望能够启动/停止等操作系统服务,可是每次运行都会报"无法打开计算机"."上的 xxxxxx 服务"的鬼错,xxxx是我要操作的服务名称
下面是我的代码:各位大神给看看
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.ServiceProcess;
namespace 系统服务批量处理
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
ServiceController[] s=System.ServiceProcess.ServiceController.GetServices();
foreach (ServiceController sz in s)
{
if (sz.DisplayName == "Alipay payment client security service")
{
if (sz.CanStop && sz.Status != ServiceControllerStatus.Stopped && sz.Status != ServiceControllerStatus.StopPending)
{
sz.Stop();
}
}
}
}
}
} 展开
下面是我的代码:各位大神给看看
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.ServiceProcess;
namespace 系统服务批量处理
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
ServiceController[] s=System.ServiceProcess.ServiceController.GetServices();
foreach (ServiceController sz in s)
{
if (sz.DisplayName == "Alipay payment client security service")
{
if (sz.CanStop && sz.Status != ServiceControllerStatus.Stopped && sz.Status != ServiceControllerStatus.StopPending)
{
sz.Stop();
}
}
}
}
}
} 展开
3个回答
展开全部
给你个示例,可以运行的程序。
追问
在哪里?
追答
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询