Skip to content

Instantly share code, notes, and snippets.

@jkullick
Last active December 29, 2016 13:28
Show Gist options
  • Select an option

  • Save jkullick/f9a6afe1bf17a6e320b3e263fdb6e4b4 to your computer and use it in GitHub Desktop.

Select an option

Save jkullick/f9a6afe1bf17a6e320b3e263fdb6e4b4 to your computer and use it in GitHub Desktop.
Increase Maximum Number of ActiveSync Devices in Exchange 2010
  1. Create new Policy:
New-Throttlingpolicy "Increased ActiveSync Devices" -EasMaxDevices 20 -EasMaxConcurrency 20
  1. Apply Policy to Mailbox:
Set-Mailbox $MAILBOX -ThrottlingPolicy "Increased ActiveSync Devices"
  1. Increase Values
Set-Throttlingpolicy "Increased ActiveSync Devices" -EasMaxDevices 25 -EasMaxConcurrency 25

Source

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment