Commands › Exchange Online

Get-SmtpDaneInboundStatus

Exchange Online ExchangeOnlineManagement Get-*

View information about SMTP DNS-based Authentication of Named Entities (DANE) for inbound mail to accepted domains in Exchange Online.

Quick start script

# Get-SmtpDaneInboundStatus — 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-SmtpDaneInboundStatus -DomainName <String> | Format-List

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

Syntax

Get-SmtpDaneInboundStatus [-DomainName] <String> [<CommonParameters>]

Parameters (1)

ParameterTypeRequiredWhat it controls
-DomainName String yes The DomainName parameter specifies the accepted domain in the Exchange Online organization where you want to view information about DANE (for example, contoso.com).

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