我正在尝试获取有关该组的SID的组的名称。例如,本地管理员组的SID是 S-1-5-32-544 。我使用函数 ConvertStringSidToSid 和 LookupAccountSid 获得组Administrator的名称,但该函数返回0。
有什么建议吗?
#ifndef UNICODE
#define UNICODE
#endif
#include <windows.h>
#include <lmcons.h>
#include <lmaccess.h>
#include <lmerr.h>
#include <lmapibuf.h>
#include <stdio.h>
#include <stdlib.h>
#include <Sddl.h>
#include <string>
#pragma comment(lib, "netapi32.lib")
#pragma comment(lib, "Advapi32.lib")
static const DWORD MAX_BUFF_SIZE = 256;
std::wstring userNameFromSid()
{
PSID psid;
BOOL bSucceeded = ConvertStringSidToSid(TEXT("S-1-5-11"), &psid);
if (bSucceeded == FALSE) {
printf("Error Converting SID to String");
}
wchar_t buffName[MAX_BUFF_SIZE];
DWORD buffNameSize = MAX_BUFF_SIZE;
wchar_t buffDomain[MAX_BUFF_SIZE];
DWORD buffDomainSize = MAX_BUFF_SIZE;
SID_NAME_USE SidType = SidTypeGroup;
if (LookupAccountSid(NULL, &psid, buffName, &buffNameSize, NULL, &buffDomainSize, &SidType))
{
printf("group name %ws\n", buffName);
return buffName;
}
printf("Error code: %d", GetLastError());
LocalFree(psid);
/*Here some code to print error in a Message box*/
return L"";
}
int main()
{
NET_API_STATUS err = 0;
userNameFromSid();
return(0);
}
我收到以下错误:
最佳答案
LookupAccountSid()
需要PSID
,而不是PSID
的指针,因此&psid
不正确。