控制Windows服务

时间:2013-09-30 12:48:48

标签: c# windows-services

我们需要使用.net应用程序远程控制Windows服务。示例:我们在不同的服务上有10个Windows服务。现在我想创建应用程序(我想它也是一个Windows服务)来远程启动和停止这些服务,并通过命令行安装或卸载它们。

首先要收集这些服务名称。然后使用循环或if / else我猜。在此之前,我想确保安装所有服务。我不想访问服务管理器来安装服务,我想在代码中实现它。 我从某个地方得到了一个提示,但仍然不确定。

ServiceInstaller.InstallService("\"" + _applicationPath + "\\" + _applicationName + ".exe\" -service", _applicationName, _applicationName, autoInstall, autoRun);
internal static bool InstallService(string svcPath, string svcName, string svcDispName, bool autoStart, bool startNow)
    {
        #region Constants declaration.
        int SC_MANAGER_CREATE_SERVICE = 0x0002;
        int SERVICE_WIN32_OWN_PROCESS = 0x00000010;
        int SERVICE_DEMAND_START = 0x00000003;
        int SERVICE_ERROR_NORMAL = 0x00000001;
        int STANDARD_RIGHTS_REQUIRED = 0xF0000;
        int SERVICE_QUERY_CONFIG = 0x0001;
        int SERVICE_CHANGE_CONFIG = 0x0002;
        int SERVICE_QUERY_STATUS = 0x0004;
        int SERVICE_ENUMERATE_DEPENDENTS = 0x0008;
        int SERVICE_START = 0x0010;
        int SERVICE_STOP = 0x0020;
        int SERVICE_PAUSE_CONTINUE = 0x0040;
        int SERVICE_INTERROGATE = 0x0080;
        int SERVICE_USER_DEFINED_CONTROL = 0x0100;
        int SERVICE_ALL_ACCESS = (STANDARD_RIGHTS_REQUIRED |
        SERVICE_QUERY_CONFIG |
        SERVICE_CHANGE_CONFIG |
        SERVICE_QUERY_STATUS |
        SERVICE_ENUMERATE_DEPENDENTS |
        SERVICE_START |
        SERVICE_STOP |
        SERVICE_PAUSE_CONTINUE |
        SERVICE_INTERROGATE |
        SERVICE_USER_DEFINED_CONTROL);
        int SERVICE_AUTO_START = 0x00000002;
        #endregion Constants declaration.

        try
        {
            int dwStartType = SERVICE_AUTO_START;
            if (autoStart == false) dwStartType = SERVICE_DEMAND_START;

            IntPtr sc_handle = OpenSCManager(null, null, SC_MANAGER_CREATE_SERVICE);
            if (sc_handle.ToInt32() != 0)
            {
                IntPtr sv_handle = CreateService(sc_handle, svcName, svcDispName, SERVICE_ALL_ACCESS, SERVICE_WIN32_OWN_PROCESS, dwStartType, SERVICE_ERROR_NORMAL, svcPath, null, 0, null, null, null);
                if (sv_handle.ToInt32() == 0)
                {
                    CloseServiceHandle(sc_handle);
                    return false;
                }
                else

我的问题:

1)如何收集服务?

2)如何开始/停止服务?

3)安装服务代码,没有任何线索。

3 个答案:

答案 0 :(得分:2)

您可以使用ServiceController类远程控制另一台计算机上的服务,前提是您的应用程序运行时具有必要的权限,并且没有像防火墙那样阻止连接。

  1. 在远程计算机上获取所有服务:

    var services = ServiceController.GetServices(machineName);
    
  2. 要在远程计算机上启动和停止特定服务,您可以使用LINQ从上面检索的列表中获取特定服务:

    var services = ServiceController.GetServices(machineName);
    var service = services.First(s => s.ServiceName == "MyServiceName");
    service.Start();
    ...
    service.Stop();
    

    另一个选择是在特定计算机上获取特定服务:

    var service = new ServiceController("MyServiceName", machineName);
    
  3. 要安装新服务,您有多种选择。如果您在.NET中编写自己的服务,则可以使用WiX创建MSI包。您也可以使用带有或不带ServiceInstallerInstallUtil.exe课程,也可以使用SC.exe远程安装任何服务。

    但是,要远程安装服务,您仍应将本地服务的可执行文件放在远程计算机上。因此,远程安装服务实际上涉及将服务放到远程计算机上,然后运行一些进程来执行实际安装,这将在注册表数据库中创建正确的条目。您必须决定是否要使用文件共享,WMI,远程PowerShell或Active Directory来分发软件。

答案 1 :(得分:0)

也许从shell中使用net命令是一种方法吗?它能够列出,启动,停止服务等。如果你使用它会感觉有点'脏',但是,它会起作用。

How do I restart a service on a remote machine in Windows?

是的,我建议将其包装在简单的WEB服务应用程序中。

另请阅读:Simplest way to restart service on a remote computer

答案 2 :(得分:0)

ServiceController类怎么样?

http://msdn.microsoft.com/library/system.serviceprocess.servicecontroller.aspx

如果未安装service,ServiceController.Status将抛出InvalidOperationException

ServiceController.GetServices()将为您提供服务列表。它也可以在远程计算机上运行,​​但代码必须具有正确的权限(假冒,可能?)

还有:http://www.codeproject.com/Articles/4242/Command-Line-Windows-Services-Manager

在Windows中,InstallUtil.exe可用于安装/卸载服务。但是您必须使用正确的版本:可以有多个版本,具体取决于.NET版本和系统(x64,x32)。在你自己的机器上(我不知道远程机器)正确的路径是:

 string path = Path.Combine(System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory(), "InstallUtil.exe");

您可以使用PsExec或WMI

在另一台计算机上执行进程

修改

.bat脚本在您自己的计算机上安装服务(x64版本的installutil安装x64版本的服务):

@ECHO OFF

REM The following directory is for .NET 2.0
set DOTNETFX2=%SystemRoot%\Microsoft.NET\Framework64\v2.0.50727
set PATH=%PATH%;%DOTNETFX2%

echo Installing WindowsService...
echo ---------------------------------------------------
InstallUtil /i "service path goes here"
echo ---------------------------------------------------
echo Done.