How to increase the maximum number of ActiveSync Devices for a User

Exchange ActiveSync devices are popping up everywhere, from being the only way to connect to Exchange from the new Surface RT tablet, an option in the new Outlook 2013, to the preferred way to connect just about every Android tablet, phone and i-Device on the market.

One component of Exchange, throttling policies by default limits users to a maximum number of device relationships and concurrent devices. And there’s a difference between the two – it’s feasible a user might have a couple of Windows 8 PCs, and rarely use one connected to Exchange, replaces their devices fairly regularly and doesn’t remove older devices immediately, or simply upgrades the firmware on their Android device at every opportunity and re-creates the device relationship. Whatever the reason, you might want to consider increasing the maximum number of devices for these users.

We can increase this limit by creating a new Throttling Policy with non-default settings and assigning it to the user (or multiple users) via the Exchange Management Shell.

To create the new policy, we’ll use the New-ThrottlingPolicy cmdlet and increase the number of devices and concurrent devices to 20:

New-Throttlingpolicy "Increased ActiveSync Devices" -EasMaxDevices 20 -EasMaxConcurrency 20              Set-Mailbox steve -ThrottlingPolicy "Increased ActiveSync Devices"

Once in place, the user can now have up to 20 devices connected to Exchange, and you can re-use the policy against other users. If you later decide to increase or decrease this limit, you can simply change the single policy we’ve created and set the number of and concurrent devices to a different number:

Set-Throttlingpolicy "Increased ActiveSync Devices" -EasMaxDevices 25 -EasMaxConcurrency 25

So with the help of a little Throttling policy modifications, an increase in ActiveSync devices can both be controlled and you can avoid an administrative headache.

About The Author

Leave a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Scroll to Top