Dev_Language/AD (2) 썸네일형 리스트형 DirectoryEntry에서 member 수가 1500 이상 조회 방법 AD에 DirectoryEntry 로 객체를 찾은 후 해당 객체의 member 를 조회할때 보통은 group.properties["member"].value 로 검색을 하여 찾는다. 그런데 해당 member 에 할당된 객체수가 1500 건이 넘어가면 1500건 이상 조회가 되지 않는다. 아래는 1500건이 넘는경우 조회하는 방법이다. if ((group.Properties["member"].Value as object[]).Count() >= 1500) { DirectorySearcher searcher = new DirectorySearcher(group); searcher.Filter = "(objectClass=*)"; uint rangeStep = 1000; uint rangeLow = 0; ui.. LDAP search strings samples - Find all Computers that are NT4.0 BDCs (&(objectCategory=computer)(operatingSystemVersion=4*)(userAccountControl:1.2.840.113556.1.4.803:=8192)) - Find all Computers that do not have a Description Notice the "!" that means "NOT". (objectCategory=computer)(!description=*) - Find all Groups that have a Description (objCategory=group)(description=*) - Find all Groups that start with QA or HD Notic.. 이전 1 다음