Turn off Focused Inbox for my company without using PowerShell

IniobongNkanga-8038 966 Reputation points
2024-08-21T17:23:15.9533333+00:00

Hello

Please i need your help on this issue.

I need to turn off Focused Inbox for all of our users without using PowerShell.

Exchange Online
Exchange Online
A Microsoft email and calendaring hosted service.
6,172 questions
Outlook | Windows | Classic Outlook for Windows | For business
Exchange | Other
{count} votes

1 answer

Sort by: Most helpful
  1. Michael Taylor 60,161 Reputation points
    2024-08-21T17:49:59.0733333+00:00

    Why can't you use Powershell? This is the approach recommended by MS. It is run once against your organization to disable focused inbox for everyone. Any admin with the necessary permissions can run it.

    The only alternative would be to use GPO to configure it but Outlook doesn't appear to include a policy for the focused inbox, because it is set at the organization level. Even if they did then it would only impact the desktop client and not outlook online I'd wager.

    Behind the scenes, at least with the current Outlook client (might not work for the new one) then it is backed by the registry. You can create a GPO to update user's registry at login. This isn't really recommended given that it slows things down and PS would be better but if you wanted to go that route then the key appears to be: HKCU\Software\Microsoft\Office\Outlook\Settings\Data. Within this key is a value called <email_address>_IsFocusedInboxEnabled. You'll have to dynamically set the value to the user's email address since it is per account. The value itself is a JSON value. You can copy an existing value as an example. Within this JSON is the actual setting value in the form: "value": true. Set it to false to disable the focused inbox.

    1 person found this answer helpful.
    0 comments No comments

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.