Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to: Exchange Server 2013
You can control how individual users consume resources in your Exchange organization by changing the default throttling settings.
Controlling how individual users consume resources was possible in Exchange Server 2010, and Exchange Server 2013 expands this capability. The policy named GlobalThrottlingPolicy defines the default throttling settings for every new and existing user in your organization unless you customized the throttling policies. In many typical Exchange deployment scenarios, the policy named GlobalThrottlingPolicy is adequate to manage users.
To customize throttling settings to apply only to specific users in your organization, create a new throttling policy with the scope assignment Regular. You can only change the default throttling settings by using the Shell.
What do you need to know before you begin?
Estimated time to complete: 10 minutes.
You need to be assigned permissions before you can perform this procedure or procedures. To see what permissions you need, see the "User throttling" entry in the Server health and performance permissions article.
In new Regular-scope policies, you should set only the throttling settings that are different from those in the policy named GlobalThrottlingPolicy and any other organization policies. This way, the rest of the policy settings from the policy named GlobalThrottlingPolicy will be inherited, as will any updates to throttling policies that are added in future Exchange updates. We recommend that you review the section "Manage throttling policies using scopes" in the article Exchange workload management before following this procedure.
For information about keyboard shortcuts that might apply to the procedures in this article, see Keyboard shortcuts in the Exchange admin center.
Tip
Having problems? Ask for help in the Exchange forums. Visit the forums at Exchange Server.
Use the Shell to change the way specific users in your entire organization can use resources
This example creates a nondefault user throttling policy named ITStaffPolicy that can be associated with specific users. Any parameters that you omit inherit the values from the default throttling policy GlobalThrottlingPolicy. After you create this policy, you must associate it with specific users.
New-ThrottlingPolicy -Name ITStaffPolicy -EwsMaxConcurrency 4 -ThrottlingPolicyScope Regular
This example associates a user with the username tonysmith with the throttling policy ITStaffPolicy (which has higher limits).
Set-ThrottlingPolicyAssociation -Identity tonysmith -ThrottlingPolicy ITStaffPolicy
You don't need to use the Set-ThrottlingPolicyAssociation cmdlet to associate a user with a policy. The following commands show another way to associate tonysmith with the throttling policy ITStaffPolicy.
$b = Get-ThrottlingPolicy ITStaffPolicy
Set-Mailbox -Identity tonysmith -ThrottlingPolicy $b
For more information about syntax and parameters, see New-ThrottlingPolicy and Set-ThrottlingPolicyAssociation.
How do you know this procedure worked?
To verify that you successfully created the Regular throttling policy, do the following steps:
Run the following command.
Get-ThrottlingPolicy | Format-ListVerify that the Regular throttling policy you just created is listed in the column that shows the GlobalThrottlingPolicy object.
Run the following command.
Get-ThrottlingPolicy | select *
Verify that the properties for the new Regular policy match the value or values you configured.
Run the following command.
Get-ThrottlingPolicyAssociationVerify that the new Regular policy is associated with the user or users you associated it with.