Enable focus folder for all users in Tenant

Ajit Terdalkar 96 Reputation points
2022-02-14T11:03:45.377+00:00

Hello,

Could you please check and advise what is the impact if we enable focus folder for all users.

We need to enable focussed inbox for all users in Tenant and need to understand impact if any.

The current configuration is

174034-image.png

Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,604 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Kael Yao-MSFT 37,636 Reputation points Microsoft Vendor
    2022-02-15T02:24:22.627+00:00

    Hi @Ajit Terdalkar

    Whether the focused inbox feature is enabled for users on Exchange side depends two cmdlets:

    For organization: Get-OrganizationConfig | fl FocusedInboxOn
    For specific users: Get-FocusedInbox -Identity <tim@Company portal .com> | fl FocusedInboxOn

    In Outlook, whether the feature is enabled is decided on the later timestamp of two cmdlets.


    By default the value of organization is null like in the screenshot, and the default value of users is true.
    This means by default the focused inbox is enabled for all users in tenant, unless you have disabled it for specific users via this command:

    Set-FocusedInbox -Identity <tim@contoso.com> -FocusedInboxOn $false  
    

    Thus if you enable focused inbox for all users via this command:

    Set-OrganizationConfig -FocusedInboxOn $true  
    

    I suppose it doesn't actually have effects since the feature is already enabled.

    In Outlook it is like:
    174150-48.png

    In OWA:
    174273-49.png


    Moreover, these settings on Exchange side can be overwritten by the settings on clients (Outlook, OWA) side.

    Though you have disabled/enabled this feature in tenant or for specific users, users can still enable/disable it on their email clients.
    How to turn on/off this feature on Outlook side: Focused Inbox for Outlook


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have 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.


Your answer

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