Active Directory memberOf LDAP syntax
I want to add a user (from LDAP to Active Directory) to more than one group.
The commandmemberOf: CN=AAA,OU=AAA,DC=AAA,DC=AAA
is for only one and I want to add a second one immediatly after the first; e.g.: memberOf: CN=AAA,OU=AAA,DC=AAA,DC=AAA
and CN=BBB,OU=BBB,DC=BBB,DC=BBB开发者_JS百科
If you are using LDIF, you have multiple lines in your modify, with multiple values:
memberOf: CN=AAA,OU=AAA,DC=AAA,DC=AAA
memberOf: CN=BBB,OU=BBB,DC=BBB,DC=BBB
memberOf: CN=CCCC,OU=CCC,DC=CCCC
精彩评论