使用c#System.DirectoryServices检索组注释

时间:2014-10-17 13:47:36

标签: c# directoryservices active-directory-group

我需要创建一个过程来检索AD组Notes字段

Is it possible to get Group Notes from Active Directory?

How to access the notes field on a GroupPrincipal object

我看了上面的问题,他们似乎没有回答我的问题

我只需要在组名中读取和搜索数据,然后就可以访问Notes以进行进一步的工作。

var context = new PrincipalContext(ContextType.Domain, "???", "???", "???");

var insGroupPrincipal = new GroupPrincipal(context) { Name = "-ppcontrol-*-Global" };

var insPrincipalSearcher = new PrincipalSearcher { QueryFilter = insGroupPrincipal };

var results = insPrincipalSearcher.FindAll();

foreach (var p in results)
{
    Console.WriteLine(p);
}

0 个答案:

没有答案