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?
|
1
|
|||
|
|
|
What is the error returned, when you say "doesn't work"? You should be perfectly capable to alter the value of UPDATE It would appear from the error message that, although you claim to only attempt the modification of In order to change the
Cheers, V. |
|||
|
|
|
|
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. |
||
|
|
|
|
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? |
||
|
|
|
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? |
||
|
|
|
|
Thanks Vlad, that works! I didn't know about conn.modify. |
||
|
|
