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

Use a Rule to delete older messages as new ones arrive

Slipstick Systems

› Developer › Use a Rule to delete older messages as new ones arrive

Last reviewed on August 29, 2018     48 Comments

A security update disabled the Run a script option in the rules wizard in Outlook 2010 and all newer Outlook versions. See Run-a-Script Rules Missing in Outlook for more information and the registry key to fix restore it.

I want to delete an older email when a new message comes in (they have the same subject line).

This run a script sample is perfect to use with status reports and similar messages where you really only need to keep the most recent copy. For it to work, the messages need to have the same subject line (and the subject should be unique, because all messages matching the condition will be deleted.)

To use, create a Rule that checks the message subject and choose Run a Script as the action, selecting this script. The macro checks the Item.Subject, so if you need to run it on messages with different subjects you can use one rule.

While it only runs if Outlook is open, old messages won't pile up, as it deletes all older messages that meet the conditions when Outlook is open.

Use a script to delete older messages

See Outlook's Rules and Alerts: Run a Script for more information on using Run A Script rules.

Sub DeleteOlderMessages(Item As Outlook.MailItem)

Dim objInbox As Outlook.MAPIFolder
Dim intCount As Integer
Dim objVariant As Variant

Set objInbox = Session.GetDefaultFolder(olFolderInbox)

' Remove these lines if you don't want to add a category
Item.Categories = "Delete Older"
Item.Save

For intCount = objInbox.Items.Count To 1 Step -1
 Set objVariant = objInbox.Items.Item(intCount)
 If objVariant.MessageClass = "IPM.Note" Then
    If objVariant.Subject = Item.Subject And objVariant.SentOn < Item.SentOn Then
     objVariant.Delete
     Else
    End If
 End If
Next

Set objInbox = Nothing
End Sub

 

ItemAdd macro version

This version of the macro watches a specific folder for new items, in this example it is watching a subfolder under the Inbox. See Working with VBA and non-default Outlook Folders for code samples to use other folders.

This macro goes into ThisOutlookSession.

Option Explicit
Private objNS As Outlook.NameSpace
Private WithEvents objItems As Outlook.items

Private Sub Application_Startup()
 
Dim objWatchFolder As Outlook.Folder
Set objNS = Application.GetNamespace("MAPI")

'Set the folder and items to watch:
Set objWatchFolder = objNS.GetDefaultFolder(olFolderInbox).Folders("My Folder")
Set objItems = objWatchFolder.items

Set objWatchFolder = Nothing
End Sub


Private Sub objItems_ItemAdd(ByVal Item As Object)
Dim intCount As Integer
Dim objVariant As Variant

For intCount = objItems.Count To 1 Step -1
 Set objVariant = objItems.Item(intCount)
   If objVariant.Subject = Item.Subject And objVariant.SentOn < Item.SentOn Then
     objVariant.Delete
     Else
    End If
Next
End Sub

How to use macros

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.

After you test the macro and see that it works, you can either leave macro security set to low or sign the macro.

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

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

More Information

More Run a Script Samples:

  • Autoaccept a Meeting Request using Rules
  • Automatically Add a Category to Accepted Meetings
  • Blocking Mail From New Top-Level Domains
  • Convert RTF Messages to Plain Text Format
  • Create a rule to delete mail after a number of days
  • Create a Task from an Email using a Rule
  • Create an Outlook Appointment from a Message
  • Create Appointment From Email Automatically
  • Delegates, Meeting Requests, and Rules
  • Delete attachments from messages
  • Forward meeting details to another address
  • How to Change the Font used for Outlook's RSS Feeds
  • How to Process Mail After Business Hours
  • Keep Canceled Meetings on Outlook's Calendar
  • Macro to Print Outlook email attachments as they arrive
  • Move messages CC'd to an address
  • Open All Hyperlinks in an Outlook Email Message
  • Outlook AutoReplies: One Script, Many Responses
  • Outlook's Rules and Alerts: Run a Script
  • Process messages received on a day of the week
  • Read Outlook Messages using Plain Text
  • Receive a Reminder When a Message Doesn't Arrive?
  • Run a script rule: Autoreply using a template
  • Run a script rule: Reply to a message
  • Run a Script Rule: Send a New Message when a Message Arrives
  • Run Rules Now using a Macro
  • Run-a-Script Rules Missing in Outlook
  • Save all incoming messages to the hard drive
  • Save and Rename Outlook Email Attachments
  • Save Attachments to the Hard Drive
  • Save Outlook Email as a PDF
  • Sort messages by Sender domain
  • Talking Reminders
  • To create a rule with wildcards
  • Use a Macro to Copy Data in an Email to Excel
  • Use a Rule to delete older messages as new ones arrive
  • Use a run a script rule to mark messages read
  • Use VBA to move messages with attachments
Use a Rule to delete older messages as new ones arrive was last modified: August 29th, 2018 by Diane Poremsky
Post Views: 184

Share this:

  • Share on Facebook (Opens in new window) Facebook
  • Share on X (Opens in new window) X
  • Share on Reddit (Opens in new window) Reddit
  • Share on Bluesky (Opens in new window) Bluesky
  • Share on Mastodon (Opens in new window) Mastodon
  • Email a link to a friend (Opens in new window) Email

Related Posts:

  • Receive a Reminder When a Message Doesn't Arrive?
  • A simple run a rule script marks Outlook messages read when the messag
    Use a run a script rule to mark messages read
  • Convert RTF Messages to Plain Text Format
  • Creating an AND rule in Outlook Rules

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. Carly says

    May 2, 2024 at 10:15 pm

    Is there a video on how to do this?

    Reply
    • Diane Poremsky says

      May 14, 2024 at 11:36 am

      No, but I will make one.

      Reply
  2. Steven says

    July 24, 2023 at 5:00 am

    Can this be done without the user of macros?

    Reply
    • Diane Poremsky says

      August 15, 2023 at 7:55 am

      No, rules don't support this on their own.

      Reply
  3. Mark says

    February 3, 2023 at 1:33 pm

    This is the only working solution I have found so far without installing any add ons! thanks!. Would it be possible to delete the new ones instead of keeping the latest?

    Reply
  4. J.A. Clark says

    June 26, 2022 at 5:47 pm

    Hello - Appreciate all the macros and the work it took to compile all these. Nice that these macros work after 5+ years of being posted:-)

    I have implemented the version called by an Outlook rule as well as the ItemAdd macro version and both work until they encounter an email that has the same date and time (which occasionally happens when I receive emails generated by an inhouse application). I've tried to modify the if statement controlling what emails are deleted based on the subject and time and can't seem to find the correct combination. What happens is neither email is deleted as neither email would match the if statement.

    How can the macro (preferably the macro run by a rule) delete one of the matching emails with the same date and time?

    Any assistance would be appreciated.

    Reply
  5. Pramod says

    March 30, 2018 at 4:05 pm

    I m trying to use this script and it doesnt work. my current rule is set to move mails from a group to a folder(say group1) same level as Inbox.

    i want to run this rule on group1 and my expectation are , it should delete an older email when a new message comes with the same Subject

    Reply
    • Diane Poremsky says

      April 3, 2018 at 12:41 am

      Rules only run on the inbox. You can run it on the folder later and it should work. If you want it to work as the messages arrive, you need to move the message using the script - you cant mix actions and scripts.

      you'll need to change this line to watch the folder:
      Set objInbox = Session.GetDefaultFolder(olFolderInbox).parent.folders("group1")

      to move the message, use this after the search:
      item.move objInbox

      Reply
      • Pramod says

        April 3, 2018 at 5:52 pm

        Thanks , I use outlook 2016 . I have another question.

        I have a folder called group1 , which has about 500 mails a day .

        can you help me with a script which can keep the latest mail based on the subject.

      • Diane Poremsky says

        April 3, 2018 at 10:02 pm

        I added an itemadd macro to the page - it will work better with high volume. You can use a rule to move mail into the folder and the itemadd will do the search. If there are a lot of messages in the folder to search, it will be slow - to speed it up, you can limit the search to the newest 50 messages or so.

      • Pramod says

        April 4, 2018 at 11:45 am

        when I run the script it gives me an error script ** doesn't exist or is invalid

      • Diane Poremsky says

        April 4, 2018 at 11:44 pm

        are you using the run a script version or the new itemadd version?

        The itemadd macro runs on its own, not in a rule.

      • Pramod says

        April 5, 2018 at 3:45 pm

        I did a copy / paste of your Code "ItemAdd macro version" using ALT + F11 and saved them under "This OutlookSession" but I don't see any mails getting deleted. Do I need to do something else to make this work.

        when I try to add it in rule I get the error mentioned in the previous post.

      • Diane Poremsky says

        April 6, 2018 at 12:01 am

        you either need to restart outlook or click in the application_startup macro and press Run.

      • Pramod says

        April 5, 2018 at 4:00 pm

        Just to add, when I restart outlook

        run-time error '-2147221233(8004010f)': The attempted operation failed. An object could not be found.

        Debug pointing to
        Set objWatchFolder = objNS.GetDefaultFolder(olFolderInbox).Folders("My Folder")

      • Diane Poremsky says

        April 6, 2018 at 12:02 am

        Do you have a subfolder of the Inbox called My Folder? If it can't find the folder, it definitely will error.

      • Pramod says

        April 6, 2018 at 1:02 am

        Yes I have them but it doesn't work.

      • Diane Poremsky says

        April 6, 2018 at 11:38 am

        if you get errors after restarting outlook... then its not macro security settings.

        i don't know what to say - it is working on my test system.

      • Pramod says

        April 6, 2018 at 3:25 pm

        Yes I fixed it , I added it as parent.folders but its not deleting mails on the folder.

      • Diane Poremsky says

        April 7, 2018 at 2:02 pm

        Are the subjects identical and sent at an earlier time? If there are a lot of messages in the folder and high traffic, it can be overwhelming for the macro - you'll need to limit it to like the last 30 or 50.

        I think this is how i did it when i had 3000+ messages and needed to limit it to recent messages (that macro is on my office computer) -
        For intCount = objItems.Count To objItems.Count - 50 Step -1

      • Pramod says

        April 8, 2018 at 12:47 pm

        Do I need to restart outlook everytime or does it run at the backend always?

        Just wanted to thank you for all the help.

      • Diane Poremsky says

        April 8, 2018 at 11:50 pm

        it runs in the background - but if you are editing it, you either need to restart outlook or click in the application run macro then click Run to kick start it with the changes.

      • Pramod says

        April 9, 2018 at 11:57 am

        Thanks, Last Query :

        Can you do this for 2-3 Folders in Parallel ?

      • Diane Poremsky says

        April 9, 2018 at 9:40 pm

        You can - you need to reference each folder in the application startup macro and create an itemadd macro for each. You can do it something like this and to share the macro that does the work -

        Private Sub objItems_ItemAdd(ByVal Item As Object)
        FindDuplicates item
        End sub

        Private Sub objItemsFolder_ItemAdd(ByVal Item As Object)
        FindDuplicates item
        End sub

        Private Sub FindDuplicates(ByVal Item As Object)
        Dim intCount As Integer
        Dim objVariant As Variant

        For intCount = objItems.Count To 1 Step -1
        Set objVariant = objItems.Item(intCount)
        If objVariant.Subject = Item.Subject And objVariant.SentOn < Item.SentOn Then objVariant.Delete Else End If Next End Sub

  6. Arun says

    March 30, 2018 at 1:30 am

    Rule in Outlook: Mail from Public Group Move to Folder say Time.

    Need a Script to run on the Folder (Time) which will keep latest mail on a particular Subject and move the remaining one to a new folder(say Time1)

    Reply
    • Diane Poremsky says

      April 3, 2018 at 12:44 am

      This assumes the Time and time1 folders are a subfolder of the inbox:
      Set objInbox = Session.GetDefaultFolder(olFolderInbox).folders("Time")
      Set objTime1 = Session.GetDefaultFolder(olFolderInbox).folders("Time1")

      then change objVariant.Delete to
      objVariant.move objTime1

      objVariant.Delete

      Reply
  7. Carlo Borreo says

    June 29, 2017 at 6:06 am

    I am not sure I understand. Is your script:

    a) Deleting all emails with the same subject of a newer email, whatever is the subject

    OR

    b) Deleting all emails with the same specific subject X of a newer email

    Reply
    • Diane Poremsky says

      July 2, 2017 at 12:05 am

      It's a run a script rule, so you'd use whatever condition you want to limit the messages that are touched by the script - it can be sender, subject - any available rule condition. If an incoming message meets the conditions in the rule, the macro looks for older messages matching the subject of the new message.

      If you want it to apply to all messages, leave the rule conditions blank.

      Reply
  8. Kim says

    July 27, 2016 at 4:14 pm

    Thanks for all your scripts! Very helpful!

    Hoping you can give me some guidance ...

    I'm trying to use an existing script but need to make an adjustment or two ... using DeleteOlderMessages ...

    I need the script to categorize the incoming email as 'Most Recent' but then change the category to '*Disregard' when it's deleted ...

    and I'd rather move that email to another folder instead of deleting it ... i'm having the biggest issue with changing the category upon moving/deleting ...

    any suggestions?

    Reply
    • Diane Poremsky says

      July 28, 2016 at 1:10 am

      you may need to change it before moving and may need to save the message after setting the category.

      ' Remove these lines if you don't want to add a category
      Item.Categories = "Most Recent"
      Item.Save

      and

      If objVariant.Subject = Item.Subject And objVariant.SentOn < Item.SentOn Then objVariant.categories = "Disregard" objvariant.save ' move code goes here

      Reply
      • Kim says

        July 28, 2016 at 11:13 am

        Perfect! thanks!

  9. Paul says

    December 31, 2015 at 9:27 am

    I'm having trouble getting this to run on a different folder, not a subfolder. When the e-mail comes in I have a rule set up to move it to a "Reports" Folder. I'd like this to run on the Reports folder instead of the inbox. Any ideas?

    Thanks,

    Paul

    Reply
    • Diane Poremsky says

      December 31, 2015 at 9:10 pm

      if its at the same level as the inbox, try using Set objInbox = Session.GetDefaultFolder(olFolderInbox).parent.folders("name")
      if that fails, you'll need to use an itemadd macro to watch the folder

      Reply
  10. Jerry Kaminsky says

    September 5, 2015 at 9:46 pm

    First let me say I appreciate all you do to make the lives or the programming challenged more pleasant. I used the above code *delete older message when new one arrive with same subject line) and for some reason my mail freezes. I am wondering if one of my add-ins like Autonomy could be causing this? Any ideas on why it would be freezing

    Reply
    • Diane Poremsky says

      September 5, 2015 at 11:19 pm

      The macro can cause outlook to freeze for a couple of seconds or so, as it searches the inbox for matches. It might hang a bit longer if the mailbox has a lot of messages to search through. It should unfreeze on it's own. I don't think the addin will affect it, but it's possible.

      Reply
  11. Ryan says

    April 23, 2015 at 3:52 pm

    Sorry Diane, You are speaking a different language than me, I appreciate you trying though.

    Reply
  12. Ryan says

    April 21, 2015 at 4:12 pm

    I don't get the option to run a script. Thanks

    Reply
    • Diane Poremsky says

      April 21, 2015 at 4:21 pm

      Scripts with names in this format:
      sub macroname (item as outlook.item)

      can only be run from other macros or using rules.

      if the name is in this format:
      public sub macroname()
      then you can run it any time in the editor or from the macro list.

      Reply
  13. Ryan says

    April 21, 2015 at 3:49 pm

    Can't believe I am so close to finding a solution to this issue. I just need a little more (step by step) detail on setting this up. I am using Office 2013. Please help. This would be a life saver

    Reply
    • Diane Poremsky says

      April 21, 2015 at 9:40 pm

      This is a script for a run a script rule - paste it into the VB Editor and create a rule. See https://www.slipstick.com/outlook/rules/outlooks-rules-and-alerts-run-a-script/ for more details and screenshots.

      Reply
  14. Peter M says

    December 1, 2014 at 3:12 am

    Hi. Thank you very much. I am using your script exactly as it is and it is very helpful. Unfortunately, in the morning and especially after the weekend (so after the computer was running without interaction for many hours) i receive this error between once and many times:

    Microsoft Visual Basic
    Run-time error '[numbers here]'
    Method 'SentOn' of object '_MailItem' failed

    and when i click on Debug it highlights this line:

    If objVariant.Subject = Item.Subject And objVariant.SentOn < Item.SentOn Then

    and it seems that objVariant is NULL at this point so he can't get the SentOn

    can you help? what can i change in the script?

    thank you very much!

    Peter

    Reply
    • Diane Poremsky says

      December 16, 2014 at 11:46 pm

      If there are a lot of messages to process, it can fail because Outlook is downloading messages and the message count changes, confusing the script. The easiest fix is to add On Error Resume Next right before the line that fails - when it errors, it should skip to the next message.

      Reply
      • Peter M says

        December 17, 2014 at 2:06 am

        Thank you very much! I will try this.

  15. Netpilot says

    June 23, 2014 at 4:40 pm

    Hi Diane,

    This script is SO close to what I've been trying to figure out how to do with new RSS items from a VBA script!

    We all know of the problem that Outlook has with receiving duplicate items from certain RSS feeds, depending on how the RSS server is configured. A new duplicate RSS item appears to have the same "From", "Subject", and date "Received" values, but has a newer date "Modified" value.

    When a new RSS item arrives, I'd like a VBA macro to delete all items in that folder which have the same From, Subject, and date Received values, but an older date Modified.

    I have had two problems figuring out how to do this:

    1) RSS items go into their own folder - this script assumes the item will be in the Inbox. Is there a way to trigger a script that processes only items in an RSS folder when a new item arrives?

    2) The script you wrote seems to iterate through and compare the new message to all of the previous items in the folder. With hundreds, or possibly thousands, of items in a folder, that could take a long time, especially when executing in real-time while new items are being received. Is there a way in Outlook VBA to iterate through the items in, say, date Received order so the iteration could stop when the compared date Received is older than the date Received of the new message?

    You would be a hero to many, many people if you came up with a script to solve this problem!

    Thanks in advance.

    Reply
    • Diane Poremsky says

      June 24, 2014 at 1:42 am

      I think the answer for both is No, but will look into it - it would be handy for me too. :) I have a feed that gets a lot of duplicates - i can stop it by setting Outlook to not treat changed items as new but I need the changed items, just not 200 copies. :)

      Reply
      • Netpilot says

        June 24, 2014 at 2:36 am

        Thanks for your reply. Yeah, the 'Don't treat changed items as new' setting doesn't do what we want. And anyone I know who uses feeds has at least one offender. :)

        Well, I've considered a workaround for #1 - Configure RSS settings to have items from all offending feeds go into a generic RSS folder named 'RSS Inbox', so you know where it lands. Then have a rule with a condition that checks for RSS items from all offending feeds by Feed Name (aka Title), then runs a script.

        The script would be hard-coded to look at the new item, and with a Select Case, based on the Feed Name, move it to its associated folder (same as the Feed Name by default), then compare older items in that folder against it, deleting as appropriate. Kind of messy, but gets the job done.

        The part I really don't know how to do is #2 - avoid iterating through all items in the associated folder. Is it possible to order, hash, or somehow sort the collection of obj[DestinationFolder].Items by date Received so that the search for duplicates can be stopped in a reasonable amount of time?

        Actually, I'm not even sure if scripts are run synchronously or asynchronously, i.e.., does Outlook wait until a script is finished before processing more rules on that item or any rules on the next incoming item? If it does not wait, the script had better be really well optimized.

  16. M.Sornamuthu says

    April 18, 2014 at 2:02 pm

    Dear Ms Diane Poremsky,

    Thanks for the above code

    Can you please give me the code which can run in all sub folders

    thanks

    M.Sornamuthu

    Reply
    • Diane Poremsky says

      May 23, 2014 at 1:05 am

      I'm sorry, I don't have a very of this that runs on all subfolders. You might be able to use the processfolder sub. You'd call it using
      processFolder (objNS.GetDefaultFolder(olFolderInbox))

      Private Sub processFolder(ByVal oParent As outlook.MAPIFolder)
      Dim oFolder As outlook.MAPIFolder

      ' do whatever here

      If (oParent.Folders.Count > 0) Then
      For Each oFolder In oParent.Folders
      Call processFolder(oFolder)
      Next
      End If
      End Sub

      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 8

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
  • Deleting Auto-Complete Entries No Longer Works
  • Use Classic Outlook, not New Outlook
  • How to Remove the Primary Account from Outlook
  • How to Hide or Delete Outlook's Default Folders
  • Reset the New Outlook Profile
  • Removing Suggested Accounts in New Outlook
  • Disable "Always ask before opening" Dialog
  • Contacts are missing when you click the To button
  • Adjusting Outlook's Zoom Setting in Email
  • Change Outlook's Programmatic Access Options
  • Deleting Auto-Complete Entries No Longer Works
  • 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
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

Deleting Auto-Complete Entries No Longer Works

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

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.