2 Quick Tips to Auto Mark Specific Incoming Meetings as Private in Outlook

So as to protect your privacy, you may always need to mark some specific meetings as private. This article will introduce you 2 quick means to automatically mark the specific ones as private.

My previous article “2 Quick Tips to Batch Make Multiple Outlook Appointments Private” has taught you 2 means to mark several appointments as private in one go. But both of them cannot help you to auto mark specific incoming meetings as private. When it comes to automation, perhaps you will think of Outlook rule. But there is not a “mark as private” action by default. Fortunately, you can use a short script to create such an action. Moreover, you are permitted to directly achieve it with Outlook VBA. So here we will introduce the two tips in detail.

Auto Mark Specific Incoming Meetings as Private

Tip 1: Use Rule and a Short Script

  1. In the first place, start your Outlook program.
  2. Then press “Alt + F11” to access VBA editor.
  3. Next copy and paste the following VBA script into a new module.
Sub AutoMarkMeetingPrivate(objMeetingRequest As MeetingItem)
    Dim objMeeting As Outlook.AppointmentItem
 
    If TypeOf objMeetingRequest Is MeetingItem Then
       Set objMeeting = objMeetingRequest.GetAssociatedAppointment(True)
       objMeeting.Sensitivity = olPrivate
       objMeeting.Save
    End If
End Sub
  1. Subsequently, exit VBA editor.
  2. And then click “Rule” > “Manage Rules & Alerts” under “Home” tab.
  3. After that, click “New Rule”.
  4. Next select “Apply rule on messages I receive” and hit “Next”.
  5. Then enable the concrete conditions to restrict the specific meetings, such as with specific words in the subject or body.
  6. Moreover, you need to add “use the Meeting Request form” condition by the steps shown in the following screenshot:use meeting request form
  7. After specifying the condition, click “Next”.
  8. Later you need to specify the action.
  • Select “run a script”.
  • Click “a script” link.
  • Choose the previously added VBA script.
  • Hit “OK” and “Next”.run a script
  1. Eventually, you can follow the instructions to finish the rule setup as usual.

Apart from using Outlook rule to set the conditions of specific meeting, you can use Outlook VBA to get it as well like the followings.

Tip 2: Use Outlook VBA

  1. Firstly, press “Alt + F11” key buttons.
  2. Then open the “ThisOutlookSession” project window.
  3. Subsequently, copy and paste the following codes into it.
Public WithEvents objIncomingItems As Outlook.Items

Private Sub Application_Startup()
    Set objIncomingItems = Outlook.Application.Session.GetDefaultFolder(olFolderInbox).Items
End Sub

Private Sub objIncomingItems_ItemAdd(ByVal Item As Object)
    Dim objMeetingRequest As Outlook.MeetingItem
    Dim objMeeting As Outlook.AppointmentItem
 
    If TypeOf Item Is MeetingItem Then
       Set objMeetingRequest = Item
       Set objMeeting = objMeetingRequest.GetAssociatedAppointment(True)
       'Change the condition as per your actual needs
       If (objMeetingRequest.SenderEmailAddress = "johnsmith@datanumen.com") Or (InStr(LCase(objMeeting.Subject), "test") > 0) Then
          objMeeting.Sensitivity = olPrivate
          objMeeting.Save
       End If
    End If
End Sub

VBA Codes - Auto Mark Specific Incoming Meetings as Private

  1. After that, sign this code and change your macro settings.
  2. Finally restart Outlook to activate the new meeting.

Handle Vexing Outlook Problems

It is almost an unquestioned fact that Outlook PST is error prone. Thus you have to pay much attention to safeguard your Outlook PST data. For instance, you need to make regular backups for your PST file. In addition, you ought to prepare a reputable and remarkable repair tool, such as DataNumen Outlook Repair, which is able to fix PST errors without breaking a sweat.

Author Introduction:

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

2 responses to “2 Quick Tips to Auto Mark Specific Incoming Meetings as Private in Outlook”

  1. Hi, great job, thanks a lot. I managed to copy the script and then I changed it to also iunclude “make this time free”.

    However, I cannot make the script to work automatically, is there another thing I need to do? Restart Outlook, computer?

    BR

Leave a Reply

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