Commands › Exchange Online

Get-ThrottlingPolicy

Exchange Online ExchangeOnlineManagement Get-*

View the user throttling settings for one or more throttling policies.

Quick start script

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

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

Syntax

Get-ThrottlingPolicy [[-Identity] <ThrottlingPolicyIdParameter>]
 [-DomainController <Fqdn>]
 [-Diagnostics]
 [-Explicit]
 [-ThrottlingPolicyScope <ThrottlingPolicyScopeType>]
 [<CommonParameters>]

Parameters (5)

ParameterTypeRequiredWhat it controls
-Identity ThrottlingPolicyIdParameter The Identity parameter identifies the name of the throttling policy that you want to return settings for.
-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...
-Diagnostics SwitchParameter The Diagnostics switch specifies whether you want the output to include the diagnostics string. You don't need to specify a value with this switch.
-Explicit SwitchParameter The Explicit switch specifies whether to return only the policy settings that have been directly assigned using this policy. You don't need to specify a value with this switch.
-ThrottlingPolicyScope ThrottlingPolicyScopeType The ThrottlingPolicyScope parameter specifies the scope of the throttling policy. You can use the following values:

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