Windows服务不会停止/启动

时间:2010-10-25 15:45:14

标签: c#

我正在使用以下代码片段来停止服务。但是,Console.Writeline语句都表明服务正在运行。为什么服务不会停止?

class Program
{
    static void Main(string[] args)
    {
        string serviceName = "DummyService";
        string username = ".\\Service_Test2";
        string password = "Password1";

        ServiceController sc = new ServiceController(serviceName);

        Console.WriteLine(sc.Status.ToString());

        if (sc.Status == ServiceControllerStatus.Running)
        {
            sc.Stop();
        }

        Console.WriteLine(sc.Status.ToString());
    }
}

6 个答案:

答案 0 :(得分:6)

您需要致电sc.Refresh()来刷新状态。有关详细信息,请参阅http://msdn.microsoft.com/en-us/library/system.serviceprocess.servicecontroller.stop.aspx

此外,服务停止可能还需要一些时间。如果方法立即返回,将关闭更改为以下内容可能很有用:

// Maximum of 30 seconds.

for (int i = 0; i < 30; i++)
{
    sc.Refresh();

    if (sc.Status.Equals(ServiceControllerStatus.Stopped))
        break;

    System.Threading.Thread.Sleep(1000);
}

答案 1 :(得分:2)

在检查状态之前调用sc.Refresh()。它也可能需要一段时间才能停止。

答案 2 :(得分:1)

尝试致电:

sc.Refresh();

在你打电话给状态之前。

答案 3 :(得分:1)

我相信你应该使用sc.stop然后刷新 http://msdn.microsoft.com/en-us/library/system.serviceprocess.servicecontroller.refresh(VS.80).aspx

   // If it is started (running, paused, etc), stop the service.
// If it is stopped, start the service.
ServiceController sc = new ServiceController("Telnet");
Console.WriteLine("The Telnet service status is currently set to {0}", 
                  sc.Status.ToString());

if  ((sc.Status.Equals(ServiceControllerStatus.Stopped)) ||
     (sc.Status.Equals(ServiceControllerStatus.StopPending)))
{
   // Start the service if the current status is stopped.

   Console.WriteLine("Starting the Telnet service...");
   sc.Start();
}  
else
{
   // Stop the service if its status is not set to "Stopped".

   Console.WriteLine("Stopping the Telnet service...");
   sc.Stop();
}  

// Refresh and display the current service status.
sc.Refresh();
Console.WriteLine("The Telnet service status is now set to {0}.", 
                   sc.Status.ToString());

答案 4 :(得分:1)

尝试以下方法:

 while (sc.Status != ServiceControllerStatus.Stopped)
 {
     Thread.Sleep(1000);
     sc.Refresh();
 }

答案 5 :(得分:0)

您是否拥有停止/启动服务的正确权利?

您在运行控制台应用的帐户是什么?管理员权限?

你试过sc.WaitForStatus吗?可能是服务正在停止,但是当你到达你的写作线时却没有。