我正在使用以下代码从活动目录中获取用户详细信息
DirectoryEntry Entry = new DirectoryEntry("LDAP://dc=" + Domainname + ",dc=directoryname,dc=com", username, password, AuthenticationTypes.Secure);
DirectorySearcher DS = new DirectorySearcher(Entry);
List<string> lstPath = new List<string>();
DS.Filter = "(sAMAccountName=*)";
//DS.Filter = "(sAMAccountName=umbarglp)";
//DS.Filter = "(sAMAccountName=Adminumbarglp)";
SearchResultCollection ResultsCollection = DS.FindAll();
在这段代码中,我只返回了 20000 条记录,不超过这个。我需要使用什么来获取 AD 的所有条目。
提前致谢。埃什维尔