Commands › Exchange Online

Get-FederatedDomainProof

Exchange Online ExchangeOnlineManagement Get-*

Generate a cryptographically secure string for the domain used for federated sharing in your Exchange organization.

Quick start script

# Get-FederatedDomainProof — 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-FederatedDomainProof -DomainName <SmtpDomain> | Format-List

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

Syntax

Get-FederatedDomainProof -DomainName <SmtpDomain>
 [-DomainController <Fqdn>]
 [-Thumbprint <String>]
 [<CommonParameters>]

Parameters (3)

ParameterTypeRequiredWhat it controls
-DomainName SmtpDomain yes The DomainName parameter specifies the domain name for which the cryptographically secure string is generated.
-DomainController Fqdn The DomainController parameter specifies the domain controller that's used by this cmdlet to read data from or write data to Active Directory. You identify the domain controller by its fully qualified domain name...
-Thumbprint String The Thumbprint parameter specifies the thumbprint of an existing certificate.

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