In a corporate setting, having a FOCUSED INBOX will frequently be used as an excuse by staff for not responding. IT will receive a never ending stream of complaints and requests to tweak the algorithm which they can’t and would not want to do. As such most companies will want to set the Focused Inbox to off by default.
In the video below we demonstrate how to turn off the Focused Inbox using PowerShell because there is no GPO for it.
The Office 365 hosted Exchange Management Console does not provide a toggle to disable the Focused Inbox. However, you can relatively easily make the change through a set of PowerShell command:
Set-ExecutionPolicy RemoteSigned
$UserCredential = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $Session -DisableNameChecking
Set-OrganizationConfig -FocusedInboxOn $false
Remove-PSSession $Session
This website uses cookies.
View Comments
Thank you for the article. After disabling it for org, does the Yellow prompt show up only on the next launch or would it be there on every launch until the user X out of it?
Does this disable or simply toggle everyone to off?
The toggling is helpful but I would ideally like to prevent its use all together.
Hi Brian;
It just toggles is off. Users can re-enable it :(
Agreed. It can also blindside you if you move O365 tenants and only realize months later you've been missing out on important emails.
Also I personally still hate the Ribbon bar.
focused inbox was among the dumbest idea's MS ever had, ranks right up there with "removing the start menu" in windows 8. It makes one wonder who would have greenlit such an idiotic change.
Sometimes hear people say, "just give it a chance" - yeah tell that to the IT admin that is already overworked, and starts getting tickets for this idiocy.
nice post