2 Ways to Prevent Recipients from Forwarding Your Meeting Invitations to Others in Outlook

If you wish to prohibit the recipients from forwarding the meeting invitations that you send to them, you can use either of the two methods introduced in this article.

By default, if the recipients forward your meeting invitations to other people, you as the meeting organizer will receive a notification. Yet, most of time, maybe what you want is blocking recipients from forwarding your meeting invitation, instead of a simple notification. Focused on this requirement, here we will share 2 means to realize it.

Prevent Recipients from Forwarding Your Meeting Invitations to Others

Method 1: Customize a Form with “Forward” Disabled

  1. First off, launch your Outlook application.
  2. Then, create a new meeting invitation by clicking on the “New Items” button and choosing “Meeting” from the drop down list.
  3. Next, in the new Meeting window, you need to switch to “Developer” tab and hit the “Design This Form” button.
  4. After that, in the new screen, switch to the “(Actions)” tab.
  5. Subsequently, double click on the “Forward” action line.
  6. Then, in the new popup dialog box, uncheck the “Enable” option and hit “OK”.Disable Forward Action in Designing Form
  7. Later, find and click on the “Run This Form” button in the top ribbon.
  8. Now, a new meeting invitation will be created from the previously designed form.
  9. Then, you can compose this invitation as per your needs.
  10. Finally hit “Send” button to send it out.
  11. From the perspective of recipients, when they intend to forward the meeting invitation by “Forward” button, a message like the following screenshot will pop up.Forward Action is not available

Method 2: Disable “Forward” Action with Outlook VBA

  1. To start with, create and compose a new meeting invitation at will.
  2. Then, press “Alt + F11” key buttons to access Outlook VBA editor.
  3. Next, in the new window, open a module that is not being used.
  4. Later, copy and paste the following VBA code into this module.
Sub DisableForwardAction()
    Dim objMeetingInvitation As Outlook.MeetingItem
 
    If TypeOf ActiveInspector.currentItem Is MeetingItem Then
       Set objMeetingInvitation = ActiveInspector.currentItem
 
       objMeetingInvitation.Actions("Forward").Enabled = False
 
       MsgBox "Forward action is disabled!", vbInformation
    End If
End Sub

Disable Forward Action via VBA

  1. After that, click the “Run” icon in the toolbar to trigger this macro.
  2. At once, you will get a message prompting “Forward action is disabled”.
  3. Eventually, you can back to the Meeting and send it out.
  4. If the recipients want to forward your meeting invitation, they’ll receive the same warning – “That action is not available for this item”.

Restore Outlook Data after Damage

It is well-known that Outlook is vulnerable. Therefore, you need to beware of any potential risks around your Outlook. If fortunately, you meet Outlook crashes, you can firstly utilize the inbox repair tool to try repairing damaged Outlook file. If it fails, resorting to a more potent tool is your last resort, like DataNumen Outlook Repair.

Author Introduction:

Shirley Zhang is a data recovery expert in DataNumen, Inc., which is the world leader in data recovery technologies, including mdf recovery and outlook repair software products. For more information visit www.datanumen.com

Leave a Reply

Your email address will not be published. Required fields are marked *