Forum Discussion

JakobRohde's avatar
JakobRohde
Iron Contributor
Oct 22, 2018

List of Groups wit Guest Users?

Is it possible somehow to list all Office 365 Groups that have Guest Users?

  • VasilMichev's avatar
    VasilMichev
    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

     

     

Resources