Exchange 2010: Allow Active Sync only for certain users
If you only want to allow Active Sync for certain users, you can let a script do the work for you. This small script initially deactivates Active Sync for all mailboxes and then only activates it for the mailboxes in the file "user_with_activesync.csv". Contents of the file "set-activesyncuser.ps1" Set-ADServerSettings -ViewEntireForest $true get-mailboxdatabase | get-mailbox | Set-CasMailbox -ActiveSyncEnabled $false ... Read more