Powershell with Office 365

Using powershell to change users in group
$groups = Get-DistributionGroup | Where-Object {$_.Name -like "area*"} $results = @() foreach ($group in $groups) {     $members = Get-Di...
Thu, 11 Jan, 2024 at 4:03 PM