• Outlook User
  • New Outlook app
  • Outlook.com
  • Outlook Mac
  • Outlook & iCloud
  • Developer
  • Microsoft 365 Admin
    • Common Problems
    • Microsoft 365
    • Outlook BCM
    • Utilities & Addins

Automatically block off time before and after meetings

Slipstick Systems

› Developer › Code Samples › Automatically block off time before and after meetings

Last reviewed on March 6, 2020     54 Comments

Applies to: Outlook (classic), Outlook 2010

I use these macros not for travel time, but to add prep and follow up time to meetings (and also in case we need a little more time to finish up) but they serve the same purpose: to block off time on the calendar so no one can invite you to a meeting too close to another meeting.

The first macro is automatic. It watches the calendar folder and when a new meeting is added, it creates busy appointments before and after the meeting to block the time off for meeting prep or travel time. This macro works only with meetings, not appointments.

If you prefer to add the time manually, the second macro on the page blocks off time before and after the selected appointment or meeting.

These macros use a set time for the added appointments, in this case 30 minutes, but you could just as easily use an input box to enter the time specific to a meeting or a userform to select from a list of times.

September 13 2018: Edited macro so it will create travel time appointments for both meetings you create and those you are invited to. Note that it will create the events when the meeting invitation arrives and is added to the calendar as Tentative. It will not remove the events if you decline the meeting.

' Add to ThisOutlookSession
Option Explicit
Private WithEvents CalendarItems As Items
Dim myCalendar As Outlook.Folder

Private Sub Application_Startup()
  Dim objNS As NameSpace
  Set objNS = Application.Session
   
  Set myCalendar = objNS.GetDefaultFolder(olFolderCalendar)
  Set CalendarItems = myCalendar.Items

  Set objNS = Nothing
End Sub

Private Sub CalendarItems_ItemAdd(ByVal Item As Object)
Dim TimeSpan As Long

'how much time do you want to block (in minutes)
 TimeSpan = 30

'If Item.MeetingStatus = olMeeting Then
If Item.MeetingStatus = olMeeting Or Item.MeetingStatus = olMeetingReceived Then
    On Error Resume Next
  
Dim oAppt As AppointmentItem
Set oAppt = Application.CreateItem(olAppointmentItem)

With oAppt
    .Subject = "Meeting Prep Time " & Item.Subject    '30 minutes before
    .StartUTC = Item.StartUTC - TimeSpan / 1440
    .Duration = TimeSpan
    .BusyStatus = olBusy
    .ReminderSet = False
    .Save
End With

Set oAppt = Application.CreateItem(olAppointmentItem)
With oAppt
    .Subject = "Meeting Review Time " & Item.Subject
    .Start = Item.End
' use number for duration if you are using a different length here
    .Duration = TimeSpan
    .BusyStatus = olBusy
    .ReminderSet = False
    .Save
End With
End If
End Sub

Manually add travel time

Add this macro the a new module and create a button for it on the Quick Access Toolbar. To use, select an appointment and click the button.

Sub BlockOffTime()
    Dim objApp As Outlook.Application
    Set objApp = Application
   ' On Error Resume Next
  
Dim oAppt As AppointmentItem
Dim cAppt As AppointmentItem
  
Set cAppt = objApp.ActiveExplorer.Selection.Item(1)
Set oAppt = Application.CreateItem(olAppointmentItem)
'      MsgBox cAppt.StartUTC
With oAppt
    .Subject = "Meeting Prep Time"
    '30 minutes before
    .StartUTC = cAppt.StartUTC - 0.020833
    .Duration = 30
    .BusyStatus = olBusy
    .ReminderSet = False
    .Save
End With

Set oAppt = Application.CreateItem(olAppointmentItem)
With oAppt
    .Subject = "Meeting Review Time"
    .Start = cAppt.End
    .Duration = 30
    .BusyStatus = olBusy
    .ReminderSet = False
    .Save
End With

Set cAppt = Nothing
  
End Sub

Remove Past 'Time Block' Appointments

While it is fairly easy to use Instant Search or a list view to remove these meeting from your calendar, a simple macro can remove all previous meetings added to block off time.

Sub DeletePasteBlockTime()
 
    Dim objOutlook As Outlook.Application
    Dim objNamespace As Outlook.NameSpace
    Dim objSourceFolder As Outlook.MAPIFolder
    Dim objDestFolder As Outlook.MAPIFolder
    Dim objVariant As Variant
    Dim lngMovedItems As Long
    Dim intCount As Integer
     
    Set objOutlook = Application
    Set objNamespace = objOutlook.GetNamespace("MAPI")
    Set objSourceFolder = objNamespace.GetDefaultFolder(olFolderCalendar)
      
    For intCount = objSourceFolder.Items.Count To 1 Step -1
        Set objVariant = objSourceFolder.Items.Item(intCount)
        DoEvents
        If objVariant.Subject = "Meeting Prep Time" Or objVariant.Subject = "Meeting Review Time" Then
            If objVariant.Start < Now Then
              objVariant.Delete
               
              'count the # of items moved
               lngMovedItems = lngMovedItems + 1
 
            End If
        End If
    Next
     
    ' Display the number of items that were moved.
    MsgBox "Moved " & lngMovedItems & " messages(s)."
Set objDestFolder = Nothing
End Sub

How to use the Macro

First: You will need macro security set to low during testing.

To check your macro security in Outlook 2010 or 2013, go to File, Options, Trust Center and open Trust Center Settings, and change the Macro Settings. In Outlook 2007 and older, it’s at Tools, Macro Security. If Outlook tells you it needs to be restarted, close and reopen Outlook. Note: after you test the macro and see that it works, you can either leave macro security set to low or sign the macro.

Now open the VBA Editor by pressing Alt+F11 on your keyboard.

To use the macro code in ThisOutlookSession:

  1. Expand Project1 and double click on ThisOutlookSession.
  2. Copy then paste the macro into ThisOutlookSession. (Click within the code, Select All using Ctrl+A, Ctrl+C to copy, Ctrl+V to paste.)

Application_Startup macros run when Outlook starts. If you are using an Application_Startup macro you can test the macro without restarting Outlook by clicking in the first line of the Application_Startup macro then clicking the Run button on the toolbar or pressing F8.

To put the code in a module:

  1. Right click on Project1 and choose Insert > Module
  2. Copy and paste the macro into the new module.

More information as well as screenshots are at How to use the VBA Editor.

Automatically block off time before and after meetings was last modified: March 6th, 2020 by Diane Poremsky
Post Views: 114

Related Posts:

  • This macro copies a meeting request to an appointment. Why would you w
    Copy meeting details to an Outlook appointment
  • Accept or decline a meeting request then forward or copy it
  • Keep Canceled Meetings on Outlook's Calendar
  • Copy Selected Occurrence to an Appointment

About Diane Poremsky

A Microsoft Outlook Most Valuable Professional (MVP) since 1999, Diane is the author of several books, including Outlook 2013 Absolute Beginners Book. She also created video training CDs and online training classes for Microsoft Outlook. You can find her helping people online in Outlook Forums as well as in the Microsoft Answers and TechNet forums.

Comments

  1. Jan says

    October 4, 2023 at 5:08 am

    Hi Diane,
    I get a run-time error and "Array index out of bounds"

    Reply
  2. Han says

    September 26, 2023 at 5:40 am

    Hi Diane - thank you so much for this, it's incredibly useful and I appreciate you sharing the script. I have a quick query if you have time to consider it.

    I'm using the first/auto version, and I find that when I receive a meeting I'm getting duplicate time blocks - so the time blocks go in when the invite is first received (and the meeting is in my diary as tentative), but then when I respond/accept the meeting, I get another two time blocks added. So I end up with four in total (two before and two after).

    Am I doing something incorrect with the script?

    Thanks in advance for your help.

    Reply
    • Diane Poremsky says

      September 26, 2023 at 3:52 pm

      I'll test it (and update) - but I'm guessing it is this line - that is causing it to do it both when it arrives and when you reply. Or when it syncs back after accepting it. The best thing might be to check the status and only create if accepted.
      If Item.MeetingStatus = olMeeting Or Item.MeetingStatus = olMeetingReceived Then

      Reply
      • Han says

        October 2, 2023 at 6:32 am

        Thanks you for your response Diane. Does this mean changing the Item.MeetingStatus = olMeetingReceived to Item.MeetingResponse = olMeetingAccepted?

      • Diane Poremsky says

        October 2, 2023 at 10:33 am

        I haven't had a chance to test it yet, but either that or check to see if accepted, then create the appointments.

  3. Remco says

    August 14, 2023 at 7:48 am

    My company don't allow to change the Marco security level, is there another option, like power automat, to achive this?

    Reply
    • Diane Poremsky says

      August 14, 2023 at 10:10 am

      Power automate might do it - I will look into it.

      Reply
  4. Amanda says

    April 26, 2023 at 8:13 am

    I want to create an appointment (manually) that is for the first available 30-min slot starting 5 days before an appointment - is this possible? I've spent about an hour googling your site and also actual google :) and I've not come up with anything I can use. I'm good at modifying existing code but I can't write my own, so if someone could point me to something similar in VBA that would also help!

    Reply
  5. Kamil Dursun says

    January 31, 2023 at 6:07 am

    Thank you, this is much better than "shorten meeting" option in Outlook.
    In real life, you need buffer times both before and after meetings. It can be due to preparation, travel, etc.

    Reply
  6. Duane says

    December 28, 2022 at 11:34 am

    Good morning,

    Diane, can you send the most updated code for Automatically block off time before and after meetings
    Duane

    Reply
    • Diane Poremsky says

      December 28, 2022 at 11:37 am

      This is only version I have. Is it not working for you?

      Reply
  7. Marco Mueller says

    December 10, 2020 at 3:28 am

    Hello Diane,

    absolutely helpful script! It's my first touch to VBA scripts but I love it from the beginning. :-)
    I splitted the TimeSpan to TimeSpanBefore and TimeSpanAfter because I want to have different slots here. Works nice. The calendar does not look nie because my time span is just 5 and 10 minutes so all looks scrambled. But this is how Outlook displays eveything and has nothing to do with your script for sure.

    The only thing which does not work is the cleanup of old entries. I made a meeting in the past and it was created with surrounding buffer. But starting the cleanup results in "moved 0 message(s)" and I don't see why. Is there anything special I have to take care for?

    Regards
    Marco

    Reply
  8. Khaled says

    August 19, 2020 at 3:21 am

    Hi Diane, thank you so much.

    My calendar now fully looks blue and it's hard to read what are actual meetings vs what is review/ prep time.

    Is it possible to add color coding/ categorisation into this which makes it easier to glance meetings/ appointments?

    Thanks

    Reply
    • Diane Poremsky says

      August 19, 2020 at 4:56 pm

      You can add .categories = "category name" to add a category to the appointments.

      With oAppt
        .Subject = "Meeting Prep Time"
        .categories = "category name"
      
      Reply
      • Khaled says

        August 20, 2020 at 1:15 am

        Thank you.

        With oAppt
         .Subject = "Meeting Prep Time" '30 minutes before
         .StartUTC = Item.StartUTC - TimeSpan / 1440
         .Duration = TimeSpan
         .BusyStatus = olBusy
         .ReminderSet = False
         .Categories = "Gap"
         .Save
        End With
        
        Set oAppt = Application.CreateItem(olAppointmentItem)
        With oAppt
         .Subject = "Meeting Review Time"
         .Start = Item.End
        ' use number for duration if you are using a different length here
         .Duration = TimeSpan
         .BusyStatus = olBusy
         .ReminderSet = False
         .Categories = "Gap"
         .Save
        
  9. Jacqui Davis says

    July 14, 2020 at 2:27 pm

    Can you use this for a calendar you have edit privileges on and not your default calendar? If so how

    Reply
    • Diane Poremsky says

      August 19, 2020 at 8:40 pm

      Yes, you just need to pull in the correct calendar. https://www.slipstick.com/developer/working-vba-nondefault-outlook-folders/

      Reply
  10. Alan says

    June 9, 2020 at 8:42 am

    Also I cant seem to add blocking off time for recurruring appointments

    Reply
    • Diane Poremsky says

      June 9, 2020 at 11:19 am

      Yeah,
      I never added support for recurring, in part because its more complicated. If i have time, i will add it - basically, you need to check it see if its recurring and then copy the pattern. But this will not copy exceptions.

      Reply
  11. Alan says

    June 9, 2020 at 8:38 am

    Looks great though only seems to work on certain appointment types so meetings I can add block out time before and after but not appointments added to the calendar?
     

    Reply
    • Diane Poremsky says

      June 9, 2020 at 10:00 am

      If Item.MeetingStatus = olMeeting Or Item.MeetingStatus = olMeetingReceived Then
      if you remove that line and the end if that goes with it, it will apply to all appointments.

      Reply
      • Alan says

        June 9, 2020 at 12:03 pm

        Not sure where those lines are - i am using option 2 to manually add time before and after appointments and meetings
         

        Sub BlockOffTime()
            Dim objApp As Outlook.Application
            Set objApp = Application
           ' On Error Resume Next
          
        Dim oAppt As AppointmentItem
        Dim cAppt As AppointmentItem
          
        Set cAppt = objApp.ActiveExplorer.Selection.Item(1)
        Set oAppt = Application.CreateItem(olAppointmentItem)
        '      MsgBox cAppt.StartUTC
        With oAppt
            .Subject = "Meeting Prep Time"
            '30 minutes before
            .StartUTC = cAppt.StartUTC - 0.020833
            .Duration = 30
            .BusyStatus = olBusy
            .ReminderSet = False
            .Save
        End With
        
        Set oAppt = Application.CreateItem(olAppointmentItem)
        With oAppt
            .Subject = "Meeting Review Time"
            .Start = cAppt.End
            .Duration = 30
            .BusyStatus = olBusy
            .ReminderSet = False
            .Save
        End With
        
        Set cAppt = Nothing
          
        End Sub
        

         

      • Diane Poremsky says

        June 9, 2020 at 1:46 pm

        it should work on the manual macro - the automatic version checks for the items type, the manual method uses on the selected item in the calendar.

        You can try changing this link to comment out as appointmentitem
        Dim cAppt 'As AppointmentItem

      • Alan says

        June 9, 2020 at 2:39 pm

        how do i do that, can you paste the new code as i need it please

      • Diane Poremsky says

        June 10, 2020 at 8:44 am

        Your method works, but I meant like this:
        Sub BlockOffTime()
        Dim objApp As Outlook.Application
        Set objApp = Application
        ' On Error Resume Next

        Dim oAppt As AppointmentItem
        Dim cAppt 'As AppointmentItem

        Set cAppt = objApp.ActiveExplorer.Selection.Item(1)
        Set oAppt = Application.CreateItem(olAppointmentItem)
        (-- snip--)

      • Alan says

        June 10, 2020 at 7:08 am

        Ok i worked out how to comment out those two lines

        'Dim oAppt As AppointmentItem
        'Dim cAppt As AppointmentItem
        

         
        But still doesnt work but think there are two different calendar types that I can't get it to work on.
         

        1. appointments/meetings from an internet calendar
        2. recurring appointments

        Lots of my diary entries are these two types so would be really useful if I could get the code working to support them

      • Alan says

        June 10, 2020 at 8:33 am

        Update, managed to get it working now, just hadnt added it to ribbon for different calandar views. It doesn't automatically add before and after times for recurring appointments/meetings but least i can go through and manually add it.

  12. Lilian says

    April 16, 2020 at 12:46 pm

    Hi - Is there an option for O365? i followed the steps and the macro didnt work. Any ideas?

    Reply
    • Diane Poremsky says

      April 22, 2020 at 1:04 am

      This works with all version of Outlook desktop software. What happens when you try? Do you have macro security set to low?

      Reply
  13. Mike OC says

    February 29, 2020 at 11:53 pm

    Great macro, I find it very helpful in blocking off time so I don't have back-to-back meetings. One suggestion: the ability to not create duplicate meeting block if one already exist. It would be an IF statement to check if time has already been blocked with the same name, but I'm not sure what I would have it look for. Any suggestions? Thanks!

    Reply
    • Diane Poremsky says

      April 22, 2020 at 1:05 am

      You'd need to do a search for the existing event in that time period with that subject.

      Reply
  14. Mike O says

    February 6, 2020 at 10:21 am

    Great macro, Diane! I love how the first macro makes this completely hands off.

    Would there be a way to add a check to avoid duplicate placeholders being created? In other words, if the placeholder times have been created previously, then don't add them again after a change (like accepting the invite).

    With the first, automatic macro in place, as soon as I get a meeting invitation the time before and after will be blocked off, which is great. If I don't get around to accepting the invite right away and other people start booking other meetings, I like that it shows my time as already blocked off without me needing to do anything. However, if I then accept the meeting, the macro will create another set of placeholder times next to the existing ones. If I tentatively accept at first, then fully accept, it created 3 placeholders, one for when it first arrived, then when I accepted it tentatively, and then again when I accept it fully. Every time the meeting's state changes a new pair is added.

    It would be great to check if Meeting Prep/Review Time Placeholder - <Main meeting name> already exists, then skip creation.

    Again, great job and thank you for posting this!

    Reply
    • Diane Poremsky says

      March 2, 2020 at 1:12 am

      You'd need to do a look up - i have some code here I can add to it... i'll check and see if we can use conflicts to stop the creation too.

      Reply
      • Egle says

        February 3, 2022 at 8:05 pm

        Hey, is there any update on this?

  15. Jason Holmes says

    August 6, 2019 at 6:37 pm

    Hi Diane, This is Great! I've used this many times, but recently got a new laptop running O2016. I am getting a "Compile Error: Only Valid in Object Module" error. WithEvents in the line "Private WithEvents CalendarItems As Items". I have other Macros and this is the first in "ThisOutlookSession". Any thoughts?

    Reply
    • Diane Poremsky says

      October 27, 2019 at 11:43 pm

      it definitely needs to be in thisoutlooksession - that line at the top (if you had other macros in thisoutlooksession).

      Reply
  16. Jonathan DeJesus says

    September 13, 2018 at 1:46 pm

    So sorry. I know this an older post. The first Macro works great!! So thank you. But it only works when I create a meeting. Is there a way this also runs when I get invited to a meeting. I'm using Outlook 2017. Thanks again!!

    Reply
    • Diane Poremsky says

      September 13, 2018 at 4:57 pm

      It should work for both. I'll check on it.

      Ok... olMeeting is only for meetings you create. if you add a condition for olmeeting received, it works.
      If Item.MeetingStatus = olMeeting Or Item.MeetingStatus = olMeetingReceived Then

      The only issue: They are added when you receive the meeting and its on the calendar as tentative. if you decline, the travel times are not removed.

      Reply
      • Jonathan DeJesus says

        September 13, 2018 at 5:45 pm

        No worries, better to remove unneeded time later than not have the time blocked when needed.

        Thank you Thank you Thank you!!

  17. Wes says

    March 19, 2018 at 6:23 pm

    Oh my! What have you/I done? First Macro ever and I'm loving it! Thanks for teaching an old dog a new trick.

    Reply
  18. Stephanie says

    December 4, 2017 at 3:00 pm

    This is so awesome. I am using the 2nd version of the code where I've added a macro button so it only happens to select meetings.

    I'm wondering if there is a way to make these default to a category color I've already established and also show as "out of office"?

    Thank you!

    Reply
    • Diane Poremsky says

      December 5, 2017 at 12:07 am

      This is where you'd set OOF - change it to olOutOfOffice
      .BusyStatus = olBusy

      to assign a specific category, add this line after the busy status line:
      .categories = "category name"
      if you want to pick it up from the meeting or appointment, use
      .categories = item.categories

      Reply
  19. Jeffrey Suijskens says

    July 31, 2017 at 4:02 am

    Hi Diane,

    For the second part of the code - amazing - it works like a charm.
    Is there any way of adding the title of the meeting to the prep- and review time?
    As it functions double as a reminder of what to prep/review.

    Also, how can I add a timeselection for the prep/review time?

    Kind regards,
    Jeffrey

    Reply
    • Diane Poremsky says

      July 31, 2017 at 9:09 am

      For the subject, use
      .Subject = "Meeting Prep Time " & item.subject

      This sets the time you want to block -
      'how much time do you want to block (in minutes)
      TimeSpan = 30
      you could use an input box to enter the minutes.
      TimeSpan = InputBox("How much lead time do you need?")
      (move it after if item.meetingstatus... otherwise it will come up for every appointment, not just meetings)
      This will use the same time for before and after. if you want different times, add the line a second time, after the first one is created but before the second. (If you always cut the same amt off the review, say 5 min less than the prep time, you can use .Duration = TimeSpan - 5 for the review duration.)

      Reply
      • Jeffrey Suijskens says

        August 23, 2017 at 3:25 am

        Hi Diane,

        Currently I have below code and I would like to check the inputbox for "X" or "Cancel" and then kill the routine if nothing has been implemented.
        Also to stop running if value = 0 minutes.
        Also is it possible to alter the inputbox? Now its huge as opposed to the tiny input there is to provide.
        Thanks in advance for your feedback!

        Sub BlockOffTravelTime()
        Dim objApp As Outlook.Application
        Set objApp = Application
        ' On Error Resume Next

        Dim oAppt As AppointmentItem
        Dim cAppt As AppointmentItem

        Set cAppt = objApp.ActiveExplorer.Selection.Item(1)
        Set oAppt = Application.CreateItem(olAppointmentItem)
        TimeSpan = InputBox("How much travel time is required?")

        ' MsgBox cAppt.StartUTC
        With oAppt
        .Subject = "Reistijd: heenreis " & cAppt.Subject
        .Body = cAppt.Body
        .Location = cAppt.Location

        ' 1440 makes sure the prep appointment is before the selected appointment
        .StartUTC = cAppt.StartUTC - TimeSpan / 1440
        .Duration = TimeSpan
        .BusyStatus = olOutOfOffice
        .Categories = "Travel Time"
        .ReminderSet = False
        .Save
        End With

        Set oAppt = Application.CreateItem(olAppointmentItem)
        With oAppt
        .Subject = "Reistijd: Terugreis " & cAppt.Subject
        .Location = cAppt.Location
        .Start = cAppt.End
        .Duration = TimeSpan
        .BusyStatus = olOutOfOffice
        .Categories = "Travel Time"
        .ReminderSet = False
        .Save
        End With

        Set cAppt = Nothing

        End Sub

      • Diane Poremsky says

        August 23, 2017 at 11:39 am

        Try this - after the timespan line:
        TimeSpan = InputBox("How much travel time is required?", 0)
        Add
        If TimeSpan is "" or TimeSpan = 0 Then
        Exit sub
        End if

        or this:
        TimeSpan = InputBox( "How much travel time is required?", "Block Time", 0)
        If TimeSpan = 0 Then
        Exit Sub
        End If

      • Diane Poremsky says

        August 23, 2017 at 11:43 am

        Also, you can't change the size of the inputbox.

      • Jeffrey Suijskens says

        August 24, 2017 at 4:16 am

        The first one worked perfectly. Thank you!

  20. Dwayne Baraka says

    February 7, 2017 at 6:40 am

    Hi Diane,

    I'm having trouble with that code, and I'd really like it to work! Are you expecting that to work with the latest version of Outlook?

    I'm getting the following error from the second line of the code (at "WithEvents CalendarItems As Items") when I try to drop it into ThisSessionOutlook.

    Compile Error

    Invalid attribute in Sur or Function

    Any hints?

    Best Regards,

    Dwayne.

    Reply
    • Diane Poremsky says

      February 13, 2017 at 12:18 am

      I have tested all of the code in 2013, and much of the code in 2016. If you have other macros, thatline needs to be at the top of ThisOutlookSession.

      Reply
  21. YRobins says

    November 30, 2016 at 3:10 pm

    Hi Diane,
    is there any existing code to bring out the map it tool to a tool bar that I created. It has all my quick access icons plus vb macros.
    thank you
    Yvonne

    Reply
    • Diane Poremsky says

      February 13, 2017 at 12:17 am

      No, I'm not aware of any. Sorry.

      Reply
  22. YRobins says

    November 30, 2016 at 3:06 pm

    Hi Diane when I try print articles from your website, they always cut of at least one half inch on the left margin. Any suggestions on how to remedy this/

    Reply
    • Diane Poremsky says

      February 6, 2017 at 1:43 am

      I'm assuming it's dropping the side bars and the actual article is being cut off... i will need to check it. I know it works correctly when i send to onenote but i never print to paper. :)

      Reply

Leave a Reply Cancel reply

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

Visit Slipstick Forums.
What's New at Slipstick.com

Latest EMO: Vol. 31 Issue 7

Subscribe to Exchange Messaging Outlook






Support Services

Do you need help setting up Outlook, moving your email to a new computer, migrating or configuring Office 365, or just need some one-on-one assistance?

Our Sponsors

CompanionLink
ReliefJet
  • Popular
  • Latest
  • Week Month All
  • Use Classic Outlook, not New Outlook
  • How to Remove the Primary Account from Outlook
  • Reset the New Outlook Profile
  • Disable "Always ask before opening" Dialog
  • How to Hide or Delete Outlook's Default Folders
  • Change Outlook's Programmatic Access Options
  • Removing Suggested Accounts in New Outlook
  • Understanding Outlook's Calendar patchwork colors
  • This operation has been cancelled due to restrictions
  • Shared Mailboxes and the Default 'Send From' Account
  • Sync Issues and Errors with Gmail and Yahoo accounts
  • Error Opening iCloud Appointments in Classic Outlook
  • Opt out of Microsoft 365 Companion Apps
  • Mail Templates in Outlook for Windows (and Web)
  • Urban legend: Microsoft Deletes Old Outlook.com Messages
  • Buttons in the New Message Notifications
  • Move Deleted Items to Another Folder Automatically
  • Open Outlook Templates using PowerShell
  • Count and List Folders in Classic Outlook
  • Google Workspace and Outlook with POP Mail
Ajax spinner

Recent Bugs List

Microsoft keeps a running list of issues affecting recently released updates at Fixes or workarounds for recent issues in classic Outlook (Windows).

For new Outlook for Windows: Fixes or workarounds for recent issues in new Outlook for Windows .

Outlook for Mac Recent issues: Fixes or workarounds for recent issues in Outlook for Mac

Outlook.com Recent issues: Fixes or workarounds for recent issues on Outlook.com

Office Update History

Update history for supported Office versions is at Update history for Office

Outlook Suggestions and Feedback

Outlook Feedback covers Outlook as an email client, including Outlook Android, iOS, Mac, and Windows clients, as well as the browser extension (PWA) and Outlook on the web.

Outlook (new) Feedback. Use this for feedback and suggestions for Outlook (new).

Use Outlook.com Feedback for suggestions or feedback about Outlook.com accounts.

Other Microsoft 365 applications and services




New Outlook Articles

Sync Issues and Errors with Gmail and Yahoo accounts

Error Opening iCloud Appointments in Classic Outlook

Opt out of Microsoft 365 Companion Apps

Mail Templates in Outlook for Windows (and Web)

Urban legend: Microsoft Deletes Old Outlook.com Messages

Buttons in the New Message Notifications

Move Deleted Items to Another Folder Automatically

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Google Workspace and Outlook with POP Mail

Newest Code Samples

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Insert Word Document into Email using VBA

Warn Before Deleting a Contact

Use PowerShell to Delete Attachments

Remove RE:, FWD:, and Other Prefixes from Subject Line

Change the Mailing Address Using PowerShell

Categorize @Mentioned Messages

Send an Email When You Open Outlook

Delete Old Calendar Events using VBA

VBA Basics

How to use the VBA Editor

Work with open item or selected item

Working with All Items in a Folder or Selected Items

VBA and non-default Outlook Folders

Backup and save your Outlook VBA macros

Get text using Left, Right, Mid, Len, InStr

Using Arrays in Outlook macros

Use RegEx to extract message text

Paste clipboard contents

Windows Folder Picker

Custom Forms

Designing Microsoft Outlook Forms

Set a custom form as default

Developer Resources

Developer Resources

Developer Tools

VBOffice.net samples

SlovakTech.com

Outlook MVP David Lee

Repair PST

Convert an OST to PST

Repair damaged PST file

Repair large PST File

Remove password from PST

Merge Two Data Files

Sync & Share Outlook Data

  • Share Calendar & Contacts
  • Synchronize two computers
  • Sync Calendar and Contacts Using Outlook.com
  • Sync Outlook & Android Devices
  • Sync Google Calendar with Outlook
  • Access Folders in Other Users Mailboxes

Diane Poremsky [Outlook MVP]

Make a donation

Mail Tools

Sending and Retrieval Tools

Mass Mail Tools

Compose Tools

Duplicate Remover Tools

Mail Tools for Outlook

Online Services

Calendar Tools

Schedule Management

Calendar Printing Tools

Calendar Reminder Tools

Calendar Dates & Data

Time and Billing Tools

Meeting Productivity Tools

Duplicate Remover Tools

Productivity

Productivity Tools

Automatic Message Processing Tools

Special Function Automatic Processing Tools

Housekeeping and Message Management

Task Tools

Project and Business Management Tools

Choosing the Folder to Save a Sent Message In

Run Rules on messages after reading

Help & Suggestions

Submit Outlook Feature Requests

Slipstick Support Services

Buy Microsoft 365 Office Software and Services

Visit Slipstick Forums.

What's New at Slipstick.com

Home | Outlook User | Exchange Administrator | Office 365 | Outlook.com | Outlook Developer
Outlook for Mac | Common Problems | Utilities & Addins | Tutorials
Outlook & iCloud Issues | Outlook Apps
EMO Archives | About Slipstick | Slipstick Forums
Submit New or Updated Outlook and Exchange Server Utilities

Send comments using our Feedback page
Copyright © 2026 Slipstick Systems. All rights reserved.
Slipstick Systems is not affiliated with Microsoft Corporation.