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…
1 min read
$users = Get-ADGroupMember "AD Group with Users to be Enabled for ActiveSync" foreach ($line in $users) { $user = $line.samaccountname Set-CASMailbox $user…
Enabling ActiveSync for a Security Group using Powershell1 min read
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…
Disabling ActiveSync for a Group of Users using Powershell