Posted in
Exchange Server,
Windows Powershell |
No Comment | 7,519 views | 29/11/2014 15:48
You may need get distribution group list by their sender authentication status.
If sender authentication is disabled:
Get-DistributionGroup | where RequireSenderAuthenticationEnabled -eq $false |
Get-DistributionGroup | where RequireSenderAuthenticationEnabled -eq $false
If sender authentication is enabled:
Get-DistributionGroup | where RequireSenderAuthenticationEnabled -eq $true |
Get-DistributionGroup | where RequireSenderAuthenticationEnabled -eq $true
That will output distribution groups.