I try to delete a group using the LS class NotesAdministrationProcess. While this works fine for groups of type “Multi-purpose”, “Mail” and “Server”, I get the error message “Group name not found in Domino Directory” with groups of type “ACL”.
Deleting the group immediately (by setting the second parameter to True) works fine for all types of group.
Something similar happens with the method “AddGroupMembers”. When adding members to a group of type “ACL” a new multi-purpose group is created instead. It seems that the group cannot be found neither.
Has anybody ever tried to delete a group using the adminp class? Is this a bug or do I do something wrong?
Regards,
Ruedi Berger
This is my code:
Dim session As New NotesSession
Dim agentp As NotesAdministrationProcess
Set agentp = session.CreateAdministrationProcess (“HSG2/INfoB/UNISG/CH”)
Call agentp.DeleteGroup (“INfoB Test”, False)