Error deleting group with NotesAdministrationProcess

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)

Subject: Error deleting group with NotesAdministrationProcess

Hi Ruedi

I just found out, that the AdminP cannot handle groups with “special” characters like Slash ( / ) when triggered by the Lotus Script backend class. Don’t know, if this problem also occurs on groups containing a space as in your case - but perhaps it’s just the same weird behaviour.

Regards

Lars