You are not logged in.
Pages: 1
Hi!
How do we delete all groups with a given name in script?
May we do so via brute force by deleting from rs_group?
Delete from rs_group where Name = "Technical" ?
Thanks!
Offline
Hi wonky,
you can use the UserManagerService's method public void remove(AbstractUserManagerNode node);
The node can be a User node, OU, or group. For a group, you can check it's name before removing it with getName() or getId() for its ID.
Cheers,
Eduardo
Offline
Pages: 1