向Windows服务添加说明

时间:2014-03-26 14:06:59

标签: c# windows-services registry

我通过以下代码安装了Windows服务。

 #region Private Variables

    #endregion Private Variables
    #region DLLImport
    [DllImport("advapi32.dll")]
    public static extern IntPtr OpenSCManager(string lpMachineName, string lpSCDB, int scParameter);
    [DllImport("Advapi32.dll")]
    public static extern IntPtr CreateService(IntPtr SC_HANDLE, string lpSvcName, string lpDisplayName,
    int dwDesiredAccess, int dwServiceType, int dwStartType, int dwErrorControl, string lpPathName,
    string lpLoadOrderGroup, int lpdwTagId, string lpDependencies, string lpServiceStartName, string lpPassword);
    [DllImport("advapi32.dll")]
    public static extern void CloseServiceHandle(IntPtr SCHANDLE);
    [DllImport("advapi32.dll")]
    public static extern int StartService(IntPtr SVHANDLE, int dwNumServiceArgs, string lpServiceArgVectors);
    [DllImport("advapi32.dll", SetLastError = true)]
    public static extern IntPtr OpenService(IntPtr SCHANDLE, string lpSvcName, int dwNumServiceArgs);
    [DllImport("advapi32.dll")]
    public static extern int DeleteService(IntPtr SVHANDLE);
    [DllImport("kernel32.dll")]
    public static extern int GetLastError();
    #endregion DLLImport
    public static bool  InstallService(string svcPath, string svcName, string svcDispName)
    {
        #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
        {
            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, SERVICE_AUTO_START, SERVICE_ERROR_NORMAL, svcPath, null, 0, null, null, null);
                if (sv_handle.ToInt32() == 0)
                {
                    CloseServiceHandle(sc_handle);
                    return false;
                }
                else
                {
                    //now trying to start the service
                    int i = StartService(sv_handle, 0, null);
                    // If the value i is zero, then there was an error starting the service.
                    // note: error may arise if the service is already running or some other problem.
                    if (i == 0)
                    {
                        Console.WriteLine("Couldnt start service");
                        return false;
                    }
                    Console.WriteLine("Service started successfully");
                    CloseServiceHandle(sc_handle);
                    return true;
                }
            }
            else
            {
                Console.WriteLine("SCM not opened successfully");
                return false;
            }
        }
        catch (Exception e)
        {
            throw e;
        }
    }

但是SCM中的描述是空白的,请不要使用ServiceInsatller,因为我想修改生产中的现有代码。感谢代码贡献。

更新

如果忘记上面的代码并使用ManagedInstallerClass或其他方法,怎么做?

2 个答案:

答案 0 :(得分:6)

已回答的代码不起作用。这是一个适合我的版本:

const int SERVICE_CONFIG_DESCRIPTION = 0x01;

[DllImport("advapi32.dll", SetLastError=true, CharSet=CharSet.Auto)]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool ChangeServiceConfig2(IntPtr hService, int dwInfoLevel, [MarshalAs(UnmanagedType.Struct)] ref SERVICE_DESCRIPTION lpInfo);

[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct SERVICE_DESCRIPTION
{
    public string lpDescription;
}

var pinfo = new SERVICE_DESCRIPTION
{
    lpDescription = "My Service Description"
};

ChangeServiceConfig2(service, SERVICE_CONFIG_DESCRIPTION, ref pinfo);

答案 1 :(得分:1)

原始答案位于here,为方便起见,在此处重复。

  

调用ChangeServiceConfig2传递SERVICE_CONFIG_DESCRIPTION作为   dwInfoLevel参数。您还需要一个服务句柄,但是   CreateService为您提供其中一个。

DllImport为止,您可以找到ChangeServiceConfig2 here的规范。

修改

如果您想完全放弃现有方法,使用ManagedInstallerClass不是正确的方法,因为MSDN明确表示不在您的代码中使用它。在我的估计中,正确的方法是使用ServiceInstaller组件,但您的原始问题表示您不想使用该方法。

让我们说你没有使用ServiceInstaller。然后我建议按照我在答案here中提供的说明进行操作,特别注意步骤6-9。在步骤#8中,您可以向属性网格中的ServiceInstaller组件添加您喜欢的任何描述。

如果你仍然不想这样做,那么我原来的答案就是。它看起来像这样(请注意,我没有测试过这个):

[DllImport("advapi32.dll", SetLastError=true, CharSet=CharSet.Auto)]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool ChangeServiceConfig2(
    IntPtr hService, 
    int dwInfoLevel,
    IntPtr lpInfo);

int SERVICE_CONFIG_DESCRIPTION = 0x01;
ChangeServiceConfig2(sv_handle, SERVICE_CONFIG_DESCRIPTION, "a test description");