CFLDAP - Active Directory Groups

Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default 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!
    Reeseatwsu Guest

  2. Similar Questions and Discussions

    1. using CFLDAP to set passwords in Active Directory
      Hi Im using CFLDAP to create users in an active directory. This is working fine however im creating accounts with blank passwords. When i try...
    2. Change Active Directory Password via CFLDAP - HELP!!
      Hello all! Has anyone successfully made CFLDAP change an Active Directory user password? I've been hitting the wall for the past week, searched...
    3. Use CFLDAP to Add user onto Active Directory
      How do you change a password? What I found out so far was that the password must be: - enclosed in quotes - converted to unicode then base64 -...
    4. CFLDAP and Active Directory
      :frown; I'm attempting to write an application in CF which reads a SQL database and then verifies that the information in a MS Exchange address...
    5. 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...
  3. #2

    Default Re: CFLDAP - Active Directory Groups

    It's been a while since this issue has popped up, but I think you must rebuild
    the group completely each time. Basically, if you have 10 members and want to
    remove one member, you must rebuild the group with the 9 remaining members.
    You will need their DNs to do this.

    You also get into the issue of needing to specify either the SEPARATOR or
    DELIMITER attribute in CFLDAP. I forget which. AD expects a comma-separated
    list of members. However, your DNs contain commas as well. Therefore, you
    must specify another character, such as the pipe "|" to separate, or delimit,
    each DN.

    If you have the software and knowledge, I would suggest creating a COM object,
    using VB6+, and let CF use that object. VB COMs handle AD tasks much more
    gracefully than CF's LDAP support.

    Michael 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