我正在尝试编写一个 C++ 代码来枚举当前工作站在 Active Directory 设置中所属的组。我能够想出以下 Visual Basic 脚本,它完全符合我的需要:
'DN for the workstation
cCN = "CN=WorkstationName,CN=Computers,DC=mydomain,DC=local"
Set objComputer=GetObject("LDAP://" & cCN)
Dim strAll
Dim colGroups, objGroup
strAll = ""
Set colGroups = objComputer.Groups
For Each objGroup In colGroups
strAll = strAll & objGroup.distinguishedName & vbLf
Next
Wscript.Echo strAll
我收到这样的输出:
CN=Group1,OU=SomeOU,DC=mydomain,DC=local
CN=Group2,OU=SomeOU,DC=mydomain,DC=local
问题是我似乎无法将 LDAP 内容转换为 C++。
如果有人可以帮助我,我真的很感激?
编辑: 以下是我从我的 C++ 知识和 COM 中收集到的尽可能多的内容:
// Initialize COM.
CoInitialize(NULL);
LPCTSTR pwszContainerDN = L"CN=WorkstationName,CN=Computers,DC=mydomain,DC=local";
CComBSTR strADsPath = L"LDAP://";
strADsPath += pwszContainerDN;
IADs *objComputer;
HRESULT hr;
hr = ADsGetObject(strADsPath,
IID_IADs,
(void**) &objComputer);
if(SUCCEEDED(hr))
{
//Now how do you do "objComputer.Groups"?
//Then later "For Each" enumeration, etc.?
}
// Uninitialize COM.
CoUninitialize();