Hi All,
I want to check with powershell if a specific team has allow external user turned on. How do i check this in powershell? If i use Get-Team I only see this info DisplayName/ Visibility / Archived/ MailNickName/ Description but no allow external users only on tenant level, but i want it on team level.
I hope to hear soon
@officedocsbot assign @yogkumgit
Hello @LindaSchaar How are you?
You have to leverage the use of another cmdlet and another module, as teams in Microsoft Teams are essentially Office 365 Groups.
For example Get-UnifiedGroup | Where-Object {$_.AllowAddGuests -eq $true}
Other than that, I don't recognize further issues with the documentation. I hope the information helps you.
@get-itips Thank you very much for the contribution and sharing this explanation. @LindaSchaar
Hope this comment is helpful for you. If you see a documentation update is required, please feel free to open an issue for the same. We proceed here to close it. Thanks for taking out some time to open the issue. Appreciate and encourage you to do the same in future also.
Hello @get-itips ,
Thank you for the help. Yes i am fine. I will try this command.
Linda