You need to send a meeting invitation but want to stop attendees from forwarding it to others. By default, Outlook allows any recipient to forward a meeting, which can lead to unwanted guests or security risks. This article explains the built-in meeting forward restriction feature in Outlook and Microsoft 365. You will learn how to configure it so that only the original organizer can forward the meeting invitation.
Key Takeaways: Blocking Meeting Forwarding in Outlook
- Outlook for Windows > Meeting > Tracking > Request Responses: Disabling this option does not block forwarding. Use a different method.
- Microsoft 365 Admin Center > Org Settings > Calendar: Enable the policy to block forwarding for all meetings in your tenant.
- PowerShell Set-CalendarProcessing cmdlet: Apply the restriction to a specific shared or resource mailbox.
Why Meeting Forwarding Happens and How Outlook Handles It
When you create a meeting in Outlook, the invitation is sent as an iCalendar message. Any recipient can forward that message to another person. The forwarded invitation includes the same meeting details and the recipient can accept it. Outlook does not have a per-meeting checkbox to block forwarding. The restriction must be applied at the organization level or through a policy. Microsoft 365 provides two ways to control this: a global calendar setting for all users and PowerShell commands for specific mailboxes. This restriction applies only to meetings created within your organization. Meetings from external senders are not affected.
Steps to Block Meeting Forwarding in Microsoft 365
The following method uses the Microsoft 365 Admin Center to apply a forwarding restriction to all meetings in your tenant. You must have Global Admin or Exchange Admin permissions.
- Open the Microsoft 365 Admin Center
Go to admin.microsoft.com and sign in with your admin account. - Navigate to Org Settings
In the left navigation pane, select Show all then choose Settings > Org settings. - Select Calendar
Scroll down to the Calendar section and click Calendar. This opens the calendar settings panel. - Enable the forwarding restriction
In the panel, look for the option Allow meeting attendees to forward meetings to other people. Uncheck this box. Click Save.
After saving, all meeting invitations created by users in your organization will have the forward option disabled. Attendees will see a grayed-out Forward button in the meeting invitation. This change takes effect immediately for new meetings. Existing meetings are not affected.
Using PowerShell to Block Meeting Forwarding for a Specific Mailbox
If you want to block forwarding only for a shared mailbox or a resource mailbox, use the Exchange Online PowerShell module. This method does not affect other users.
- Connect to Exchange Online PowerShell
Open Windows PowerShell as administrator and runConnect-ExchangeOnline. Sign in with your admin credentials. - Run the Set-CalendarProcessing cmdlet
Execute the following command, replacingsharedmailbox@domain.comwith the mailbox you want to restrict:Set-CalendarProcessing -Identity sharedmailbox@domain.com -AllowOrganizerToForwardMeeting $false - Verify the setting
RunGet-CalendarProcessing -Identity sharedmailbox@domain.com | fl AllowOrganizerToForwardMeeting. The value should beFalse.
This setting prevents anyone other than the original organizer from forwarding meetings that are created on that mailbox. Attendees will not see a forward option for those meetings.
What Happens When You Block Meeting Forwarding
When the restriction is active, the Forward button is removed from the meeting invitation in Outlook. Attendees cannot forward the meeting to anyone. If an attendee tries to forward the meeting using a workaround such as dragging the meeting to a new email, Outlook will prevent the action. The restriction applies to all clients including Outlook for Windows, Outlook on the web, and Outlook mobile. The meeting organizer can still forward the meeting. The organizer can also add new attendees by editing the meeting and sending an update.
Common Issues When Blocking Meeting Forwarding
Attendees can still forward the meeting by copying the iCalendar attachment
Blocking the Forward button does not remove the iCalendar attachment from the invitation. An attendee can detach the .ics file and attach it to a new email. To prevent this, you must also configure a mail flow rule in Exchange Online to block messages containing the .ics file type. Go to Exchange Admin Center > Mail flow > Rules and create a rule that rejects messages with attachments ending in .ics sent from internal users to external users. This is a separate policy and not part of the meeting restriction.
The setting does not apply to existing meetings
The calendar setting only affects meetings created after the change. Existing meetings retain their original forwarding permissions. To apply the restriction to an existing meeting, the organizer must cancel the meeting and create a new one.
External meeting attendees are not affected
If a user receives a meeting from an external sender, the forwarding restriction does not apply. The external sender controls their own organization’s settings. You cannot block forwarding of meetings from outside your tenant.
Meeting Forward Restriction: Admin Setting vs PowerShell Method
| Item | Admin Center Setting | PowerShell Method |
|---|---|---|
| Scope | All users in the organization | Single mailbox |
| Permissions required | Global Admin or Exchange Admin | Exchange Admin |
| Effect on existing meetings | No | No |
| Works for shared mailboxes | Yes | Yes |
| Works for user mailboxes | Yes | Yes |
| Reversibility | Recheck the box | Run Set-CalendarProcessing with $true |
You now know how to block meeting forwarding using the Microsoft 365 Admin Center or PowerShell. Choose the Admin Center method for a tenant-wide policy. Use PowerShell for granular control over specific mailboxes. After applying the restriction, test by sending a meeting to a colleague and verifying the Forward button is disabled. Consider adding a mail flow rule to block .ics attachments for full protection.