Forum Discussion
DominikCap
Jul 17, 2020Copper Contributor
List of e-mail addresses in the organization to which external users can send e-mails.
Hello, I would like to export somehow list of e-mail addresses (GROUPS) which can be used by external users. I know how to export all groups or users, but I need just those where option "allo...
- Jul 17, 2020
That's pretty easy to do with PowerShell, all you need to do is filter Groups by the RequireSenderAuthenticationEnabled property:
Get-UnifiedGroup | ? {$_.RequireSenderAuthenticationEnabled -eq $false}
VasilMichev
Jul 17, 2020MVP
That's pretty easy to do with PowerShell, all you need to do is filter Groups by the RequireSenderAuthenticationEnabled property:
Get-UnifiedGroup | ? {$_.RequireSenderAuthenticationEnabled -eq $false}
DominikCap
Jul 20, 2020Copper Contributor
VasilMichev Great, thank you!