Share via

Channel meeting invitations are sent to all guest users

堀田 大輔(hottadai) 10 Reputation points
2026-02-10T09:58:04.93+00:00

When scheduling a Teams channel meeting, meeting invitations are, for some reason, sent to all guest users who belong to that team. After submitting an SR, it appears that Exchange settings may be involved, and the following improvement request has been raised:

Regarding Guest Users Invited to Microsoft 365 Groups

This behavior is causing inconvenience to guest users. If there's any way to prevent this, I'd like to find a solution. Are there any other effective workarounds you know of?

Exchange | Other
Exchange | Other

A powerful email and collaboration platform developed by Microsoft, designed to support enterprise-level communication and productivity. Miscellaneous topics that do not fit into specific categories.

0 comments No comments

2 answers

Sort by: Most helpful
  1. Steven-N 24,755 Reputation points Microsoft External Staff Moderator
    2026-02-10T12:06:58.8666667+00:00

    Hi 堀田 大輔(hottadai)

    Thank you for reaching out to Microsoft Q&A forum

    This behavior occurs because a Microsoft Teams team is backed by a Microsoft 365 Group, and that group is likely configured to subscribe to all members (including guests) for calendar events. When you schedule a Channel meeting, it is technically an event for that underlying group.

    In this case, I think you could try some of the following workarounds:

    1. Create a new group with only internal members, then create a meeting invitation to avoid sending invitations to all members. This is the easiest way to do it.
    2. You can try using PowerShell as shown below to forcibly unsubscribe everyone using Exchange Online PowerShell. This requires an IT Admin.

    Run this script to remove only Guest users from the subscriber list of that specific group.

    $Group = "YourTeamName"
    $Guests = Get-UnifiedGroupLinks -Identity $Group -LinkType Members | Where-Object {$_.RecipientTypeDetails -eq "GuestUser"}
    ForEach ($Guest in $Guests) {
        Remove-UnifiedGroupLinks -Identity $Group -LinkType Subscribers -Links $Guest.PrimarySmtpAddress
        Write-Host "Unsubscribed $($Guest.Name)"
    }
    

    You can try the above approach, kindly let me know in the comments for further support.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".     

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    1 person found this answer helpful.

  2. Q&A Assist
    2026-02-10T09:58:13.21+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    When scheduling a Teams channel meeting, it is indeed the case that meeting invitations are sent to all guest users who belong to that team. This behavior is tied to how Microsoft 365 Groups and Exchange settings manage guest access and notifications. Unfortunately, there is no direct setting in Microsoft Teams that allows you to prevent invitations from being sent to guest users automatically when a meeting is scheduled in a channel.

    As a workaround, you might consider the following options:

    1. Schedule Meetings in Private Chats: Instead of scheduling meetings in a channel, consider scheduling them in private chats with only the intended participants. This way, only those invited will receive the meeting invitations.
    2. Use Meeting Policies: Review the meeting policies applied to your organization. While this may not directly prevent invitations to guests, ensuring that your policies are aligned with your needs can help manage how meetings are conducted and who is invited.
    3. Communicate with Guests: If certain guests should not receive invitations, communicate with them beforehand to set expectations about the meetings they will be invited to.

    If this issue is causing significant inconvenience, it may be beneficial to monitor the feedback portal you mentioned for any updates or changes regarding guest user management in Teams.


    References:

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.