Share via

How to uncheck hide this group from outlook

Eric Freelove 0 Reputation points
2026-05-19T19:52:23.8066667+00:00

When I look at a group it is marked as hidden from outlook. If i try to uncheck it on admin.exchange.microsoft it gives me the error and I cant find the setting to change it in intuneUser's image

Microsoft 365 and Office | Install, redeem, activate | For business | Other

2 answers

Sort by: Most helpful
  1. Ruby-N 11,730 Reputation points Microsoft External Staff Moderator
    2026-05-19T21:18:05.13+00:00

    Dear @Eric Freelove

    Thank you for sharing your concern.  

    This error usually occurs because your admin account doesn’t have an Exchange Online license required to manage group mail settings, or the group was just created and is still being set up, so changes can’t be saved yet. 

    Note: This setting isn’t managed through Intune, as the hide or unhide option in Outlook is configured through Exchange Online group settings. 

    Please see the following steps that will help you verify the issue:  

    Step 1: Allow time for group provisioning 

    If the group was created recently, the configuration may still be in progress and changes might not be saved yet. 

    Wait approximately 60 minutes after the group creation. 

    Try updating the setting again in the Exchange admin center
    Step 2: Verify your Exchange Online license 

    This setting is managed through Exchange Online, so your account must have a license that includes Exchange Online. 

    Go to Microsoft 365 admin center > Go to Users > Active users, select your account, then check Licenses and apps to ensure it has a license that includes Exchange Online, such as Microsoft 365 Business Basic, Standard, Premium, or Exchange Online Plan 1. 

    If the license is already assigned, remove it and assign it again, wait up to 60 minutes for the update, then clear your browser cache and sign in again. 

    Step 3: Use PowerShell to unhide the group 

    If the issue still occurs in the UI, you can update the setting directly using Exchange Online PowerShell: 

    Install-Module -Name ExchangeOnlineManagement
    
    • Connect to Exchange Online PowerShell: 
    Connect-ExchangeOnline 
    
    • Unhide the group from Outlook: 
    Set-UnifiedGroup -Identity "<Group Name>" -HiddenFromExchangeClientsEnabled:$false
    
    • Verify the change: 
    Get-UnifiedGroup -Identity "<Group Name>" | Format-List HiddenFromExchangeClientsEnabled 
    
    • (Optional) If you also want the group to appear in the Global Address List: 
    Set-UnifiedGroup -Identity "<Group Name>" -HiddenFromAddressListsEnabled $false 
    

    Additional information is available in the following resource: Set-UnifiedGroup (ExchangePowerShell) | Microsoft Learn 

    Step 4: Retry in Microsoft 365 admin center 

    After confirming that the license and provisioning are complete, try updating the group settings again in the Exchange online admin portal. 

    Step 5: Contact Microsoft Support 

    If the issue still persists after trying these steps, I recommend creating a support ticket via the Microsoft 365 Admin Center > Support > Help & Support for further investigation.  

     A technical support engineer can perform a remote session to investigate the situation, verify the backend configurations, and run any necessary synchronization tools to resolve the problem. If the issue requires further attention, they can escalate it to a specialized team for deeper analysis.    

    As community moderators, we kindly ask for your understanding that our access to internal development details is limited. Our primary role is to guide users toward the appropriate resources and support channels. While we may not have visibility into performing deeper backend analysis, we’ll continue doing our best to support you within the scope of our responsibilities.  

    I hope this information is helpful. If you have any questions or need further support, please don’t hesitate to reach out at any time. 

    Thank you for your patience and understanding. 


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have any extra questions about this answer, please click "Comment".            

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread. 

    Was this answer helpful?

    0 comments No comments

  2. AI answer

    2026-05-19T19:52:36.51+00:00

    Use Exchange Online PowerShell to unhide the group; this bypasses the admin center error.

    1. Connect to Exchange Online PowerShell.
    2. Run these commands, replacing <group name> or <UnifiedGroup ID> with the group’s name/ID:
    Set-UnifiedGroup -Identity "<group name>" -HiddenFromAddressListsEnabled:$false
    Set-UnifiedGroup -Identity "<group name>" -HiddenFromExchangeClientsEnabled:$false
    

    This unhides the Microsoft 365 group from Outlook/OWA and the GAL so it and its calendar become visible.

    If the group is associated with a team, it is hidden by default; the same commands apply.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.