Get-BrokerAccessPolicyRule -Name “Delivery Group Name_Direct” | Select -expandproperty IncludedUsers | select-object Name > C:direct.txt // Saves the list of users assigned to Direct Policy
Get-BrokerAccessPolicyRule -Name “Delivery Group Name_AG” | Select -expandproperty IncludedUsers | select-object Name > C:ag.txt // Saves the list of users assigned to AG policy
Compare the list of users in the two files and add the missing users by running the following command :
Set-BrokerAccessPolicyRule -Name “Delivery Group Name_Direct” -AddIncludedUsers DomainNameUserName // adds “UserName” to the list of users
Set-BrokerAccessPolicyRule -Name “Delivery Group Name_AG” -AddIncludedUsers DomainNameUserName // adds “UserName” to the list of users
Refresh Studio and try accessing ‘Edit Delivery Group’ wizard again