vote up 2 vote down star
1

Using Ruby LDAP running on Linux, I can create a new Active Directory user account without a problem. Now I want to be rename a user account username. When I try to change the sAMAccountName, it doesn't work. Is it possible to change an AD user account using Ruby LDAP? If so, how?

flag
Max, have you had any luck with the modrdn command below? – Vlad Romascanu Mar 21 at 6:27

5 Answers

vote up 2 vote down

What is the error returned, when you say "doesn't work"? You should be perfectly capable to alter the value of sAMAccountName using any LDAP client or library provided that the connection was originally authenticated as an administrative user (i.e. a user who has the permission to alter the said entry and entry attribute.)


UPDATE

It would appear from the error message that, although you claim to only attempt the modification of sAMAccountName, a change of CN was also attempted, or CN is special (it is part of the DN.)

In order to change the CN you'll probably have to use modrdn to rename the CN part of the DN (the standardized equivalent of MoveHere):

conn.modrdn('CN=old-name,OU=orgunit,DC=domain', 'CN=new-name', true)
conn.modify('CN=new-name,OU=orgunit,DC=domain', 'sAMAccountName' => new-acct)

Cheers, V.

link|flag
vote up 0 vote down

Any chance you can post some of your code? Also you may want to try using the MoveHere method which is really using for moving user accounts, but can also be used to rename an account.

link|flag
vote up 0 vote down

Vlad, the error I'm getting is the following:

AdAccountModifier::UserModificationFailed: Failed to rename account of john: AdAccountModifier::UserModificationFailed AD error modifying cn, userPrincipalName, sAMAccountName on jane: LDAP::ResultError Operations error

I'm able to create a new AD account and disable the account so I know I'm authenticated as an administrative user. I just can't rename the sAMAccountName. Is there a step I'm missing?

link|flag
Are you trying to modify the CN as well? If so are you also modifying the DN, which contains the CN? – Vlad Romascanu Mar 14 at 5:02
vote up 0 vote down

mrTomahawk, isn't MoveHere a method for VBScript? I'm using Ruby LDAP running on Linux. Is there an equivalent MoveHere method for Ruby LDAP?

link|flag
vote up 0 vote down

Thanks Vlad, that works! I didn't know about conn.modify.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.