In a single domain forest, you can change the Group Scope from "Universal" to "Global" for a mail-enabled security group in Active Directory without significant impact.
Impact of Changing Group Scope:
Mail-Enabled Groups: In a single domain forest, changing the scope from "Universal" to "Global" is generally safe. Global groups are optimized for single-domain environments, so this change should not disrupt the functionality of the group in Active Directory or Exchange Server. The group will still function correctly for email distribution and security purposes within the domain.
Group Membership and Usage: Since you only have one domain, the restriction that Global groups can only contain members from the same domain is not an issue. The change should not affect group memberships or permissions because all users, computers, and groups reside within the same domain.
Changing Group Scope Using PowerShell:
You can change the Group Scope using PowerShell with the following steps:
- Import the Active Directory module (if not already done):
Import-Module ActiveDirectory
- Change the Group Scope:
Set-ADGroup -Identity "YourGroupName" -GroupScope Global
If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.
hth
Marcin