Hello,
I need to give the help desk the ability to add users to eDirectory groups from Adaxes.
I can bind to the eDir tree, read attributes of objects, but I cannot add user to a group.
On Novell eDirectory, to add a member to a group we need to add it to "Members" attributes and "Security Equal to Me".
Is there a way to do it?
Example :
#Add user to Group
$context.LogMessage("Add User $TrgtUserDN to Group $GroupName", "Information")
$DomainGroup.PSBase.Invoke('Add',$DomainEntry.PSBase.Path)
$DomainGroup.psbase.commitchanges()
$context.LogMessage("User now in the Group $GroupName", "Information")