Forum Discussion
Brian_H
May 19, 2021Brass Contributor
Guest permissions under settings in a Team
Is there a way to shut down the guest permissions under settings for a team or at least org wide? The Team owner(s) have access to the settings for their team and can adjust permissions for members ...
- May 20, 2021
Brian_H Ah I see, unfortunately not something that can be done via a setting. If it's a hard requirement then you could potentially use a scheduled Graph query to set the option to off:
Update team - Microsoft Graph v1.0 | Microsoft Docs
You would need to update the Guest Permissions with something like:
"guestSettings": { "allowCreateUpdateChannels": false }
Unfortunately it's not bullet proof but could be run on a schedule through Azure Automation or similar
May 20, 2021
Also available using Set-Team cmdlet as you probably already know.
SeanMcAvinue
May 20, 2021MVP
This too 🙂