0

我正在尝试将 win32 应用程序转换为服务。我使用 CreateService() 将其应用程序创建为服务(使用下面的代码)。

    SC_HANDLE schService = CreateService
    ( 
        schSCManager,   /* SCManager database      */ 
        pName,          /* name of service         */ 
        pName,          /* service name to display */ 
        SERVICE_ALL_ACCESS,        /* desired access          */ 
        SERVICE_WIN32_OWN_PROCESS|SERVICE_INTERACTIVE_PROCESS , /*service type*/ 
        SERVICE_AUTO_START,      /* start type              */ 
        SERVICE_ERROR_NORMAL,      /* error control type      */ 
        pPath,          /* service's binary        */ 
        NULL,                      /* no load ordering group  */ 
        NULL,                      /* no tag identifier       */ 
        NULL,                      /* no dependencies         */ 
        NULL,                      /* LocalSystem account     */ 
        NULL
    );                     /* no password             */ 

如果实际应用程序中没有参数,我可以启动服务。如果我尝试使用参数启动服务,那么它会产生问题。

LPCTSTR apszSvcArgv[32] = {"start","passwd"};
int nSvcArgc = 2;
if(StartService(schService, nSvcArgc,apszSvcArgv))
{
  return TRUE;
}

我试图在主程序中转储传入的参数,它总是将参数的编号显示为 1。

我做错什么了吗?是否可以将这样的参数传递给 win32 控制台应用程序。

如果我错了,请纠正我..提前谢谢

4

1 回答 1

2

您需要将 args 向量定义为 const char(或 wchar),然后将向量传递给 StartService。

这是 VS 中 unicode 程序的示例

const wchar_t *args[] = { L"arg1", L"arg2", L"arg3", L"arg4" };
StartService(schService, 4, args);
于 2015-12-28T10:48:33.417 回答