Forum Discussion
JakobRohde
Oct 22, 2018Iron Contributor
List of Groups wit Guest Users?
Is it possible somehow to list all Office 365 Groups that have Guest Users?
- Oct 22, 2018
Thanks for the shout out adam deltinger :)
The script can certainly be used for that scenario, although it will require some filtering, as this is not its primary use. Perhaps an easier method is to just check the value of the GroupExternalMemberCount parameter:
Get-UnifiedGroup -ResultSize Unlimited -Filter {GroupExternalMemberCount -gt 0} | select DisplayName,GroupExternalMemberCount
VasilMichev
Oct 22, 2018MVP
Thanks for the shout out adam deltinger :)
The script can certainly be used for that scenario, although it will require some filtering, as this is not its primary use. Perhaps an easier method is to just check the value of the GroupExternalMemberCount parameter:
Get-UnifiedGroup -ResultSize Unlimited -Filter {GroupExternalMemberCount -gt 0} | select DisplayName,GroupExternalMemberCount
Oct 22, 2018
Awesome :)