I am trying to do a LDAP Search however I keep getting the following error: Unhandled Exception: System.Runtime.InteropServices.COMException (0x80072024): T he administrative limit for this request was exceeded. at System.DirectoryServices.SearchResultCollection.ResultsEnumerator.MoveNext () at System.DirectoryServices.DirectorySearcher.FindOne() Here is the code: (The error is thrown at FindOne()) DirectoryEntry dirEntry = new DirectoryEntry("LDAP://myldap.com:1701/ou=People,o=My Company,c=CA", "", [...] read more