Commands › Exchange Online

Get-InboundConnector

Exchange Online ExchangeOnlineManagement Get-*

View the settings for an Inbound connector in your cloud-based organization.

Quick start script

# Get-InboundConnector — 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-InboundConnector | Format-List

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

Syntax

Get-InboundConnector [[-Identity] <InboundConnectorIdParameter>]
 [-ResultSize <Unlimited>]
 [<CommonParameters>]

Parameters (2)

ParameterTypeRequiredWhat it controls
-Identity InboundConnectorIdParameter The Identity parameter specifies the name or GUID of the Inbound connector. If the Identity name contains spaces, enclose the name in quotation marks ("). You can omit the Identity parameter label.
-ResultSize Unlimited The ResultSize parameter specifies the maximum number of results to return. If you want to return all requests that match the query, use unlimited for the value of this parameter. The default value is 1000.

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