I am looking for a Windows 32 API function which gets the name of the Administrators Group. When you answer, please add a full example. The source code should work with Windows Xp and later.
问问题
137 次
1 回答
3
您可以使用该LookupAccountSid
功能来做到这一点:
BYTE bBuffer[128];
DWORD dwSize = sizeof(bBuffer);
if (CreateWellKnownSid(WinBuiltinAdministratorsSid, NULL, (PSID)bBuffer, &dwSize))
{
wchar_t wchName[128], wchDomain[128];
DWORD cchName = _countof(wchName), cchDomain = _countof(wchDomain);
SID_NAME_USE use;
if (LookupAccountSid(NULL, (PSID)bBuffer, wchName, &cchName, wchDomain, &cchDomain, &use))
{
// wchDomain will now contain something like BUILTIN
// wchName will now contain something like Administrators
}
}
于 2013-07-25T20:34:15.787 回答