Posts

Showing posts with the label Focused Inbox

Focused Mailbox not shown - solution

Image
You might have experienced two issues related with not having the FOCUSED MAILBOX shown on your Outlook client. - Either its not shown on all client - or its shown one one client but on another not First you need to have activated Outlook with an account related to a dedicated Office 365 tenant where focused mailbox is enabled on a Organization Level. Even if one client shows up focused mailbox and another not, simply changing the accounts to the same subscription account will not activate the focused mailbox. It all comes back to the same solution: To check whether your focused inbox is turned on, please run powershell commands referring to the steps below and send us a screenshot. Please be informed that you need to involve your admin to perform this. 1.  Connect to Exchange Online PowerShell . 2.  Run the following commands: Get-FocusedInbox –Identity “user@domain.com email address” Get-OrganizationConfig | fl *focus* You must activate it on you...

Enable Exchange Online for modern authentication for Focused Inbox Outlook 2016

Image
Modern Authentication is required for Focused Inbox in Outlook 2016. Outlook 2016 must be installed via Click-2-Run The focused inbox in Outlook 2016 look like this: and in OWA: Microsoft Online Login Set-ExecutionPolicy RemoteSigned $credential = Get-Credential Connect-MsolService -Credential $credential Login to Exchange $exchangeSession = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri " https://outlook.office365.com/powershell-liveid/ " -Credential $credential -Authentication "Basic" -AllowRedirection Import-PSSession $exchangeSession -DisableNameChecking Enable Modern Authentication in Exchange Online Set-OrganizationConfig -OAuth2ClientProfileEnabled $true Get-OrganizationConfig | Format-Table -Auto Name,OAuth* Author: Thomas Poett MVP, Business Unit Lead Microsoft Unified Communication