• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

LDAP

LEGEND ,
Jul 09, 2007 Jul 09, 2007

Copy link to clipboard

Copied

I am attempting to write a <cfldap> to change the password in our Active
Directory. I am getting this error:

An error has occured while trying to execute modifyDN :cn=rhbork,ou=Faculty
and Staff,ou=Email Exchange ADC,dc=avemarialaw,dc=edu: [LDAP: error code
64 - 00000057: LdapErr: DSID-0C09080A, comment: Error in attribute
conversion operation, data 0, v893 ].

Can anyone see what I am doing wrong. Other than the dc and username and
password, all information is how it appears in our directory (as best I
know)

Anything glaring?

<cfldap action="ModifyDN"
DN="cn=rbork,ou=Faculty and Staff,ou=Email Exchange
ADC,dc=avemarialaw,dc=edu"
attributes="password='sweet'"
server="server.avemarialaw.edu"
username="avemaria\admin"
password="adminpassword">


TOPICS
Advanced techniques

Views

362

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jul 30, 2007 Jul 30, 2007

Copy link to clipboard

Copied

LATEST
This may not be much help, but the attribute is unicodePwd. You may need to do some conversion into a format that the unicodePwd attribute will accept. Also, I think you need to use an SSL LDAP connection before AD will allow a password change.

Regardless, you would use the modify action, not modifyDN. You are basically modifying an attribute, not the DN, itself. You use modifyDN when you want to rename the account DN or move it to a different OU in AD.

There are a couple easier ways to change a password: 1. VB COM object, 2. CFEXECUTE a bat file using the "NET USER" command.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation