Is it possible to get a list of members of a group?
Something like:
...
if getObjectType(name) == "Group":
groupMembers = getGroupMembers(name)
# Do something with groupMembers
...
I'm hoping to avoid having to store the group's attributes, explode the group, (do something), then reassemble the group and restore the attributes.