How to find which activesync policies are applied to an user in Ex2010?
Asked
Active
Viewed 1,659 times
1 Answers
1
Right click the user mailbox in the EMC and choose properties, then Mailbox Features, highlight Exchange ActiveSync and choose Properties.
Exchange Powershell:
Get-CASMailbox -Identity <mailboxID> | fl name, active*
that will provide you "better" info, but if you want just the policy
Get-CASMailbox -Identity <mailboxID> | fl name, ActiveSyncMailboxPolicy

TheCleaner
- 32,627
- 26
- 132
- 191