Listing All Active Directory Groups

前端 未结 6 1253
挽巷
挽巷 2020-12-13 20:16

The following code lists some, but not all, Active Directory Groups. Why?

I am trying to list all security groups, distribution groups, computer groups etc. Have I

6条回答
  •  眼角桃花
    2020-12-13 20:32

    To retrieve a set of results that is larger than 1000 items, you must set SizeLimit to its default value (zero) and set PageSize to a value that is less than or equal to 1000.

    objSearchADAM.PageSize = 1000;

提交回复
热议问题