Hello ADgroup4,
Thanks for posting your question in the Microsoft Q&A forum.
Here are some steps and considerations to resolve this issue:
- Ensure that the group in Domain A is a Universal group. Universal groups are designed to work across multiple domains and forests.
- Sometimes, the Active Directory Users and Computers console may not display cross-domain groups correctly. Using PowerShell can help bypass this issue. use the
Add-ADGroupMember
cmdlet with the-Server
parameter to specify the DNS name of the foreign domain. This ensures that PowerShell correctly identifies the group in the other domain.Add-ADGroupMember -Identity "GroupB" -Members "GroupA" -Server "DomainA.com"
- Confirm that the trust relationship between Domain A and Domain B is correctly configured and functioning
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful