Active Directory Groups - more than 1000 members

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Active Directory Groups - more than 1000 members

    I?ve been polling the ?member? attribute of Active Directory (AD) groups for
    some time and I came across a new obstacle. Groups with more than 1000 members
    suddenly change the ?member? attribute to ?member;range=0-999?. At least,
    that?s how it appears in Softerra?s LDAP Browser. I also noticed that the
    members turn a blue color when you look at the members using the AD
    Administrator on the AD server.

    Searching around, I found an explanation on Microsoft?s website:
    J.C. Guest

  2. Similar Questions and Discussions

    1. using OpenQuery to get GROUPS in Active Directory
      Can any body advice on how to use OpenQuery to get GROUPS from Active Directory? Any samples are welcomed? *** Sent via Developersdex...
    2. Problem with Searching Groups in Active Directory
      Hi All, I am trying to use DirectorySearch and it is just not working for me. I have the following ActiveDirectory structure: TestGroup...
    3. CFLDAP - Active Directory Groups
      I want to add/delete users to an Active Directory group using CFLDAP? Does anyone know how to do this? Thank you very much!
    4. Active Directory Search fails ("The directory service is unavailab
      Hi all, I'm having one of those nerve wrecking errors, when trying to perform a simple search in an Active Directory. The objective of the code...
    5. Retrieving User's Groups from Active Directory using ASP.NET
      I'm using forms based authentication and LDAP to authenticate a user against Active Directory. This is working fine. The point where I'm stuck...
  3. #2

    Default Re: Active Directory Groups - more than 1000 members

    J.C.
    Did you ever figure this issue out? We're running into the same exact problem. Any information would help.

    Thanks,
    Christian
    conanbarb Guest

  4. #3

    Default Re: Active Directory Groups - more than 1000 members

    Nope, I'm still clueless.
    J.C. Guest

  5. #4

    Default Re: Active Directory Groups - more than 1000 members

    J.C.

    We had the same problem. It is the MAXPAGESIZE attribute in AD. It is defaulted to 1000 we changed this to allow for a much larger recordset from AD to CF.

    Hope this helps!
    CF_DAWG Guest

  6. #5

    Default Re: Active Directory Groups - more than 1000 members

    Where do I find this MAXPAGESIZE attribute? Please, more detail!

    Thanks!
    J.C. Guest

  7. #6

    Default Re: Active Directory Groups - more than 1000 members

    I found where to set the MaxPageSize attribute in this Microsoft article:


    [url]http://www.microsoft.com/technet/prodtechnol/exchange/EXBPA/77521496-b2c7-41af-8[/url]
    340-8d857453fe5a.mspx

    I look at my settings and MaxPageSize is set to 5000. Why isn't it working?
    Is there something else to this, CF_DAWG?

    JC

    J.C. Guest

  8. #7

    Default Re: Active Directory Groups - more than 1000 members

    J.C.

    I am getting the documentation from my NT guy. There is one more setting to change in AD and he is sending me that info shortly.

    Thanks!
    CF_DAWG Guest

  9. #8

    Default Re: Active Directory Groups - more than 1000 members

    This is from MicroSoft on AD. I have starred what are changes are:

    ? MaxPageSize - This value controls the maximum number of objects that are
    returned in a single search result, independent of how large each returned
    object is. To perform a search where the result might exceed this number of
    objects, the client must specify the paged search control. This is to group the
    returned results in groups that are no larger than the MaxPageSize value. To
    summarize, MaxPageSize controls the number of objects that are returned in a
    single search result.

    *****We have this set to 20000 (the default was 1000)

    ? MaxValRange - This value controls the number of values that are returned for
    an attribute of an object, independent of how many attributes that object has,
    or of how many objects were in the search result. In Windows 2000 this control
    is "hard" coded at 1,000. If an attribute has more than the number of values
    that are specified by the MaxValRange value, you must use value range controls
    in LDAP to retrieve values that exceed the MaxValRange value. MaxValueRange
    controls the number of values that are returned on a single attribute on a
    single object.

    ***** We have this set to 5000 (the default was 1000)

    Hope this helps!


    CF_DAWG Guest

  10. #9

    Default Re: Active Directory Groups - more than 1000 members

    Ah, yes! I see the fix!

    Looks like I need to upgrade to 2003...

    DAWG U RAWK!
    J.C. Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139