Applies to: Exchange Server 2013, Exchange Online
Topic Last Modified: 2012-11-13
You can use the EAC or the Shell to enable or disable Microsoft Exchange ActiveSync for a user mailbox. Exchange ActiveSync is a client protocol that lets users synchronize a mobile device with their Exchange mailbox. Exchange ActiveSync is enabled by default when a user mailbox is created. To learn more, see Exchange ActiveSync.
What do you need to know before you begin?
- Estimated time to complete: 2 minutes.
- You need to be assigned permissions before you can perform this
procedure or procedures. To see what permissions you need, see the
"Exchange ActiveSync settings" entry in the Clients and Mobile
Devices Permissions topic.
- For information about keyboard shortcuts that may apply to the
procedures in this topic, see Keyboard Shortcuts in
the Exchange Admin Center.
Tip: |
---|
Having problems? Ask for help in the Exchange forums. Visit the forums at: Exchange Server, Exchange Online, or Exchange Online Protection. |
What do you want to do?
Use the EAC to enable or disable Exchange ActiveSync
- In the EAC, navigate to
Recipients > Mailboxes.
- In the list of user mailboxes, click the mailbox that you want
to enable or disable Exchange ActiveSync for, and then click
Edit .
- On the mailbox properties page, click Mailbox
Features.
- Under Mobile Devices, do one of the following:
- To disable Exchange ActiveSync click Disable Exchange
ActiveSync.
A warning appears asking if you're sure you want to disable Exchange ActiveSync. Click Yes.
- To enable Exchange ActiveSync, click Enable Exchange
ActiveSync.
- To disable Exchange ActiveSync click Disable Exchange
ActiveSync.
- Click Save to save your change.
Note: |
---|
You can enable and disable Exchange ActiveSync for multiple user mailboxes by using the EAC bulk edit feature. For more information about how to do this, see the "Bulk edit user mailboxes" section in Manage User Mailboxes. |
Use the Shell to enable or disable Exchange ActiveSync
This example disables Exchange ActiveSync for the mailbox of Yan Li.
Copy Code | |
---|---|
Set-CASMailbox -Identity "Yan Li" -ActiveSyncEnabled $false |
This example enables Exchange ActiveSync for the mailbox of Elly Nkya.
Copy Code | |
---|---|
Set-CASMailbox -Identity Ellyn@contoso.com -ActiveSyncEnabled $true |
For detailed syntax and parameter information, see Set-CASMailbox.
How do you know this worked?
To verify that you’ve successfully enabled or disabled Exchange ActiveSync for a user mailbox, do one of the following:
- In the EAC, navigate to
Recipients > Mailboxes, click the
mailbox, and then click Edit .
- On the mailbox properties page, click Mailbox
Features.
- Under Mobile Devices, verify whether Exchange ActiveSync
is enabled or disabled.
Or
- Run the following command in the Shell.
Copy Code Get-CASMailbox <identity>
True
. If Exchange ActiveSync is disabled, the value isFalse
.