1 min read Enabling ActiveSync for a Security Group using Powershell $users = Get-ADGroupMember "AD Group with Users to be Enabled for ActiveSync" foreach ($line in $users) { $user = $line.samaccountname Set-CASMailbox $user… Read more Enabling ActiveSync for a Security Group using Powershell
1 min read Disabling ActiveSync for a Group of Users using Powershell I have tested this only in a Hybrid environment. Create a Universal AD Security Group called O365_Disabled_ActiveSync_Users. Add all the members to… Read more Disabling ActiveSync for a Group of Users using Powershell