Commands › Exchange Online
Get-ThrottlingPolicyAssociation
View existing throttling policy associations in your organization. Throttling policies can be associated with mailboxes, user accounts, mail contacts, mail users, and Exchange server computer accounts.
Quick start script
# Get-ThrottlingPolicyAssociation — 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-ThrottlingPolicyAssociation | Format-List
# 3. Export for evidence / drift tracking
Get-ThrottlingPolicyAssociation | Export-Clixml .\ThrottlingPolicyAssociation-$(Get-Date -Format yyyyMMdd).xml
Syntax — 2 parameter sets
AnrSet
Get-ThrottlingPolicyAssociation [-Anr <String>]
[-DomainController <Fqdn>]
[-ResultSize <Unlimited>]
[-SortBy <String>]
[-ThrottlingPolicy <ThrottlingPolicyIdParameter>]
[<CommonParameters>]
Identity
Get-ThrottlingPolicyAssociation [[-Identity] <ThrottlingPolicyAssociationIdParameter>]
[-DomainController <Fqdn>]
[-ResultSize <Unlimited>]
[-SortBy <String>]
[-ThrottlingPolicy <ThrottlingPolicyIdParameter>]
[<CommonParameters>]
Parameters (6)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.