Commands › Exchange Online

Get-ThrottlingPolicyAssociation

Exchange Online ExchangeOnlineManagement Get-*

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)

ParameterTypeRequiredWhat it controls
-Identity ThrottlingPolicyAssociationIdParameter The Identity parameter specifies the throttling policy association that you want to view. You can use any value that uniquely identifies the throttling policy association. For example:
-Anr String The Anr parameter specifies a string on which to perform an ambiguous name resolution (ANR) search. You can specify a partial string and search for objects with an attribute that matches that string. The default...
-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...
-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.
-SortBy String This parameter is reserved for internal Microsoft use.
-ThrottlingPolicy ThrottlingPolicyIdParameter The ThrottlingPolicy parameter filters the results by throttling policy. You can use any value that uniquely identifies the throttling policy. For example:

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