How To Exclude a User from a Dynamic Distribution Group in Office 365

First open PowerShell and connect to the exchange system. $LiveCred = Get-Credential (then enter your Office 365 email address and password in the box that pops up) $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic –AllowRedirection Import-PSSession $Session   Then, run Get-DynamicDistributionGroup -Name “Group Name” | fl Name,RecipientFilter  Name           : Full Time … Continue reading “How To Exclude a User from a Dynamic Distribution Group in Office 365”

Read More >>