Jul 17 2020
05:51 AM
- last edited on
Feb 01 2023
11:48 AM
by
TechCommunityAP
Jul 17 2020
05:51 AM
- last edited on
Feb 01 2023
11:48 AM
by
TechCommunityAP
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 "allow external senders" is ticked.
Can someone help me please?
Thank you!
D.
Jul 17 2020 08:57 AM
SolutionThat's pretty easy to do with PowerShell, all you need to do is filter Groups by the RequireSenderAuthenticationEnabled property:
Get-UnifiedGroup | ? {$_.RequireSenderAuthenticationEnabled -eq $false}
Jul 19 2020 11:27 PM
@Vasil Michev Great, thank you!