所以我发生的事情是我在一个特定的AD组中有超过1500个用户,当我把它们拉下来时,我受限于我得到的人。我在MSDN上看到了这篇文章(http://msdn.microsoft.com/en-us/library/ms180907%28v=vs.80%29.aspx),但它执行FindOne()
,这样做需要应用程序超过10分钟拉下用户。使用ResultsCollection
我可以在30秒内打开应用。
进行处理时
string Last_Name = userResults.Properties["sn"][0].ToString();
它返回错误:
指数超出范围。必须是非负数且小于 集合。\ r \ nParameter name:index“}
我认为这有找不到结果的问题,ResultsCollection
包含所有1000个条目。任何帮助表示赞赏。谢谢!
作为备注:这些用户的姓氏不为空,问题是resultCollection
只返回1个属性,而adpath
DirectoryEntry dEntryhighlevel = new DirectoryEntry("LDAP://OU=Clients,OU=x,DC=h,DC=nt");
DirectorySearcher dSeacher = new DirectorySearcher(dEntryhighlevel);
dSeacher.Filter = "(&(objectClass=user)(memberof=CN=Users,,OU=Clients,OU=x,DC=h,DC=nt))";
uint rangeStep = 1000;
uint rangeLow = 1;
uint rangeHigh = rangeLow + (rangeStep -1);
bool lastQuery = false;
bool quitLoop = false;
do
{
string attributeWithRange;
if (!lastQuery)
{
attributeWithRange = String.Format("member;range={0}-{1}", rangeLow, rangeHigh);
}
else
{
attributeWithRange = String.Format("member;range={0}-*", rangeLow);
}
dSeacher.PropertiesToLoad.Clear();
dSeacher.PropertiesToLoad.Add(attributeWithRange);
SearchResultCollection resultCollection = dSeacher.FindAll();
foreach (SearchResult userResults in resultCollection)
{
string Last_Name = userResults.Properties["sn"][0].ToString();
string First_Name = userResults.Properties["givenname"][0].ToString();
string userName = userResults.Properties["samAccountName"][0].ToString();
string Email_Address = userResults.Properties["mail"][0].ToString();
OriginalList.Add(Last_Name + "|" + First_Name + "|" + userName + "|" + Email_Address);
if (userResults.Properties.Contains(attributeWithRange))
{
foreach (object obj in userResults.Properties[attributeWithRange])
{
Console.WriteLine(obj.GetType());
if (obj.GetType().Equals(typeof(System.String)))
{
}
else if (obj.GetType().Equals(typeof(System.Int32)))
{
}
Console.WriteLine(obj.ToString());
}
if (lastQuery)
{
quitLoop = true;
}
}
else
{
lastQuery = true;
}
if (!lastQuery)
{
rangeLow = rangeHigh + 1;
rangeHigh = rangeLow + (rangeStep - 1);
}
}
}
while (!quitLoop);
答案 0 :(得分:3)
看来,如果添加一个PropertiesToLoad,它将不再加载任何其他属性。因此,在我的情况下,您必须指定要加载的所有属性。
dSeacher.PropertiesToLoad.Clear();
dSeacher.PropertiesToLoad.Add(attributeWithRange);
dSeacher.PropertiesToLoad.Add("givenname");
dSeacher.PropertiesToLoad.Add("sn");
dSeacher.PropertiesToLoad.Add("samAccountName");
dSeacher.PropertiesToLoad.Add("mail");
答案 1 :(得分:1)
我不会走这条路。通过针对组的基本搜索来读取成员资格比进行像这样的大型子树搜索更容易(并且更不容易出错)。
正如您所观察到的,当您尝试读取大型组的成员属性时,每次读取只能获得1500个值。通过一种通常称为“远程检索”的功能,让所有成员脱离群体的方式。 我在这里提供了相关信息的链接:Always getting 1500 member of distribution list using PowerShell