Commands › Exchange Online

Get-FocusedInbox

Exchange Online ExchangeOnlineManagement Get-*

View the Focused Inbox configuration for mailboxes in your organization.

Quick start script

# Get-FocusedInbox — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-ExchangeOnline -CertificateThumbprint $thumb -AppId $appId -Organization $org

# 2. Run and inspect
Get-FocusedInbox -Identity <MailboxIdParameter> | Format-List

# 3. Export for evidence / drift tracking
Get-FocusedInbox | Export-Clixml .\FocusedInbox-$(Get-Date -Format yyyyMMdd).xml

Syntax

Get-FocusedInbox -Identity <MailboxIdParameter>
 [-UseCustomRouting]
 [<CommonParameters>]

Parameters (2)

ParameterTypeRequiredWhat it controls
-Identity MailboxIdParameter yes The Identity parameter specifies the mailbox that you want to view. You can use any value that uniquely identifies the mailbox. For example:
-UseCustomRouting SwitchParameter {{ Fill UseCustomRouting Description }}

Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.