0

我正在尝试使用 c++ 获取正在运行的服务的显示名称。我试图使用 GetServiceDisplayName 函数,但它似乎不起作用,不知道为什么。

TTServiceBegin( const char *svcName, PFNSERVICE pfnService, bool *svc, PFNTERMINATE pfnTerm,
int flags, int argc, char *argv[], DWORD dynamiteThreadWaitTime )
{
SC_HANDLE serviceStatusHandle;
DWORD dwSizeNeeded = 0 ;
TCHAR* szKeyName = NULL ;

serviceStatusHandle=OpenSCManager(NULL, SERVICES_ACTIVE_DATABASE ,SC_MANAGER_ALL_ACCESS);

GetServiceDisplayName(serviceStatusHandle,svcName, NULL, &dwSizeNeeded);
if(dwSizeNeeded)
{
    szKeyName = new char[dwSizeNeeded+1];
    ZeroMemory(szKeyName,dwSizeNeeded+1);
    if(GetServiceDisplayName(serviceStatusHandle ,svcName,szKeyName,&dwSizeNeeded)!=0)
    {
        MessageBox(0,szKeyName,"Got the key name",0);
    }


}        

当我运行此代码时,我永远无法在调试器中看到 szKeyName 的值,它进入消息框的 if 块,但从不显示消息框。不知道为什么?

无论如何要让它工作以获取服务的显示名称或任何其他/更简单的方式来完成该任务?

4

2 回答 2

2

您需要使用 WTSSendMessage 而不是 MessageBox 来与活动会话进行交互。

WTS_SESSION_INFO* pSessionInfo = NULL;          
DWORD dwSessionsCount = 0;
if(WTSEnumerateSessions(WTS_CURRENT_SERVER_HANDLE, 0, 1, &pSessionInfo, &dwSessionsCount))
{   
    for(int i=0; i<(int)dwSessionsCount; i++)
    {
        WTS_SESSION_INFO &si = pSessionInfo[i];
        if(si.State == WTSActive)
        {                                                       
            DWORD dwIdCurrentSession = si.SessionId;

            std::string strTitle = "Hello";
            std::string strMessage = "This is a message from the service";

            DWORD dwMsgBoxRetValue = 0;
            if(WTSSendMessage(
                WTS_CURRENT_SERVER_HANDLE,
                dwIdCurrentSession,
                (char*)strTitle.c_str(),
                strTitle.size(),
                (char*)strMessage.c_str(),
                strMessage.size(),
                MB_RETRYCANCEL | MB_ICONINFORMATION | MB_TOPMOST,
                60000,
                &dwMsgBoxRetValue,
                TRUE))
            {

                switch(dwMsgBoxRetValue)
                {
                    case IDTIMEOUT:
                        // Deal with TimeOut...
                        break;
                    case IDCANCEL:          
                        // Deal With Cancel....
                        break;
                }               
            }
            else
            {
                // Deal With Error
            }

            break;
        }
    }

    WTSFreeMemory(pSessionInfo);    
}
于 2012-07-11T15:45:54.887 回答
1

该消息框在 Windows Vista 和更高版本上将不可见,因为在单独的会话(会话 0 隔离)中运行服务的更改无法访问桌面,因此消息框对您不可见,已记录在用户上。

在 Window XP 及更早版本上,您需要在服务属性对话框中勾选登录Allow service to interact with desktop选项卡下的复选框,以便您的服务显示消息框。

相反,您可以将服务名称写入文件或运行接受要查询的服务名称并让它查询并显示服务名称的用户应用程序(我刚刚尝试使用发布的代码,它可以正常工作,显示消息框)。

于 2012-07-11T15:36:43.497 回答