The membership of the Symantec Administrators Role does not match on the Parent and Child servers.
For other roles this resolved by changing the core setting “SyncRoleMembershipExactlyDuringReplication” to false, but the Symantec Administrators role ignores this setting.
This is the designed behavior to avoid the risk that all access is inadvertently removed from the child NS.
The workaround to this would be to use another role for the membership then add it to the Symantec Administrators. That way membership can be controlled through the additional role.
There may also need to be some cleanup that needs to occur on the Child to remove any undesired membership that will not be cleaned up automatically.
On the Parent Notification Server
On each Child Notification Server do the following step
From the Parent Server initiate a Differential Replication to all Child Servers or wait for the schedule to run.
Optional Step – After replication has completed and the new role with appropriate membership has been replicated the Symantec Administrators role membership can be cleaned up on the Child Notification Server following the Steps Below.
select p.Name as RoleName, c.Name Membership, ra.*
from ResourceAssociation ra
join vRM_Security_Resource_Item p on p.Guid = ra.ParentResourceGuid
join vRM_Security_Resource_Item c on c.Guid = ra.ChildResourceGuid
join ItemImportMethod piim on piim.Guid = p.Guid
and piim.ImportMethod = 3
join ItemImportMethod ciim on ciim.Guid = c.Guid
and ciim.ImportMethod = 3
where ra.ResourceAssociationTypeGuid = '63468F04-6751-448D-891C-B59906360A27'--Role Trustee
and ra.ChildResourceGuid <>(select Value from ServerSettingGuids where Name = 'AppIdentityGuid')
and c.Name <> 'NT Authority\System' and ra.ParentResourceGuid = '2E1F478A-4986-4223-9D1E-B5920A63AB41'
and c.Name not like '%NAME OF ROLE CREATED IN STEP ONE%'
delete ra from ResourceAssociation ra
join vRM_Security_Resource_Item p on p.Guid = ra.ParentResourceGuid
join vRM_Security_Resource_Item c on c.Guid = ra.ChildResourceGuid
join ItemImportMethod piim on piim.Guid = p.Guid
and piim.ImportMethod = 3
join ItemImportMethod ciim on ciim.Guid = c.Guid
and ciim.ImportMethod = 3
where ra.ResourceAssociationTypeGuid = '63468F04-6751-448D-891C-B59906360A27'--Role Trustee
and ra.ChildResourceGuid <>(select Value from ServerSettingGuids where Name = 'AppIdentityGuid')
and c.Name <> 'NT Authority\System'
and ra.ParentResourceGuid = '2E1F478A-4986-4223-9D1E-B5920A63AB41'
and c.Name not like '%NAME OF ROLE CREATED IN STEP ONE%'