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