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

How to Hide or Delete Outlook's Default Folders

Slipstick Systems

› Outlook › How to Hide or Delete Outlook’s Default Folders

Last reviewed on January 8, 2025     112 Comments

I get a lot of questions asking how to delete the default folders, such as Junk Email, RSS, Conversation History, Archive, and Suggested Contacts. Microsoft Outlook creates these folders in the default data files. While I don't recommend deleting the default folders, anyone who really wants to delete default folders can delete them using MFCMAPI or OutlookSpy.

You can rename the defaults folders using the method at Rename default folders.

Deleting folders using these tools is usually not permanent: at some point in the future, Outlook may decide to recreate the folder. It may be weeks, it may be months, but it often comes back. Exactly how long it stays gone depends on the folder, Outlook recreates some folders fairly quickly.

PowerShell script to hide folders is here. A macro to hide folders is at the end of this article. Add it to the QAT to easily re-hide folders when Outlook unhides them. To hide a number of folders at once, in all data files, see Hide Extra Folders in Outlook.com

In most cases, it's better to hide the folder. Outlook seems less inclined to remove the Hidden tag from the folder (although lately it is removing the hidden tag from calendar folders within a couple of hours.). However, hiding a folder does not stop Outlook from using it. If you hide Junk email, RSS, or Suggested Contacts folders, you need to disable the features that use those folders.

Before using MFCMAPI or OutlookSpy, you should make a copy of your data file! While these steps are safe to use, it is very easy to have an "Oops, did I do that?" moment and lose your data.

Which folders are candidates for deletion or hiding? Junk Mail (only if its disabled first), RSS and Suggested Contacts (after disabling it in File, Options, Contacts).

Using scanpst or the /resetfolder switch may recreate the folders.

To use either method, get MFCMAPI. You'll need the 32-bit version if you use Outlook 2007, or Outlook 2010 and up in 32 bit. The 64-bit version is for use with Outlook 64-bit (NOT 64-bit Windows).

These instructions remove or hide default folders in a PST file. The process is similar with Exchange mailboxes, however, the missing folders are more likely to be recreated and removing them is not recommended.

Tools | More Information

Delete the Folder

  1. After downloading MFCMAPI, unzip it then double click to run.
  2. Click Session > Logon and choose your profile (if you have more than one)
  3. Double click on your data file. If you have more than one data file, the top one should be your default. (It will have True in the Default Store column.)
  4. Expand Root Container (or Root - Mailbox if using Exchange)
  5. Expand Top of Outlook Store. Exchange users will choose IPM_SUBTREE
  6. Select the folder you wish to delete.
  7. Right click and choose Delete Folder.
    Use MFCMAPI to delete a folder
  8. Click OK. (Don't tick Hard Deletion, it doesn't work on most folders.)
  9. Close the dialogs and return to Outlook.

 

Hide the Folder

The macro at the end of this article automates these steps to hide the selected folder. If you accidentally hide the wrong folder, you'll need to use MFCMAPI to unhide it. Find the Hidden property and remove the tick from the Boolean field.

  1. After downloading MFCMAPI, unzip it then double click to run.
  2. Click Session > Logon and choose your profile (if you have more than one)
  3. Double click on your data file. If you have more than one data file, the top one should be your default. (It will have True in the Default Store column.)
  4. Expand Root Container (or Root - Mailbox)
  5. Expand Top of Outlook Store (or IPM_SUBTREE)
    Right click and choose Copy to copy the hidden property tag
  6. Select Quick Step Settings folder
  7. Select "PR_ATTR_HIDDEN, PidTagAttributeHidden, ptagAttrHidden" entry (near the top)
  8. Right click and choose Copy Property
  9. Select the folder you wish to hide.
  10. Right click and choose Paste...
    Paste the property on the folder you wish to hide
  11. Click OK twice to add the property to the folder.
    add-the-hidden-property
  12. Close the dialogs and return to Outlook.

This screenshot shows the PR_ATTR_HIDDEN, PidTagAttributeHidden, ptagAttrHidden property added to the folder's property as well as the folder list without the Suggested Contacts folder (deleted) and Junk mail folder (hidden).

The hidden property is added and the folder is not visible in the folder list

Use OutlookSpy

You can hide folders using OutlookSpy in 5 clicks:

  1. Select the Clutter folder
  2. Click IMAPIFolder button on the OutlookSpy ribbon
  3. Click “Add Property” button
  4. Type PR_ATTR_HIDDEN in the tag edit box and true in the value edit box
  5. Click OK

 

Restore a hidden folder

If you hid a folder and now need to unhide, you'll need to use MFCMAPI or OutlookSpy to remove the hidden folder. (If you are using Exchange cached mode and the folder appears in OWA, you can delete the ost file to restore the folder.)

  1. Open MFCMAPI.
  2. Go to Session, Logon.
  3. Double-click on the email account then Tools, Options and select “Use the MDB_ONLINE flag when calling OpenMsgStore”.
  4. Close then reopen the dialog box and Expand ‘Root Container’
  5. Expand “Top of Information Store”.
  6. Click on folder you need to unhide then Double-click “PR_ATTR_Hidden…” attribute.
  7. Check “Boolean” then OK
  8. If using Exchange or Office 365, verify that OWA did not display the folder.
  9. Then uncheck ‘Boolean’ and click OK to hide again. Check OWA.
  10. Start Outlook.

Manually Add the Property Tag using MFCMAPI

While it's easier for many people to copy and paste the property tag or use the macro, you can add the Hidden property tag to any folder using MFCMAPI.

  1. Get the property tag (0x10F4000B)
  2. Open MFCMAPI to the folder you want to hide
  3. Right-click an choose Edit Given Property
  4. Type or Paste the property into the Property name field and click Ok.
  5. Click Boolean then click OK to finish.

 

Tools

HideOutlookFolders

Utility hide unused folders in Outlook data files, include RSS, Calendar and Contacts in other .pst files.

MFCMapi

MFCMAPI uses Microsoft's published APIs to provide access to MAPI stores through a graphical user interface. Its purpose is to facilitate investigation of Exchange and Outlook issues and to provide developers with a canonical sample for MAPI development. Updated frequently.


 

Use PowerShell to Hide or Unhide a Folder

This PowerShell sample will hide or show a folder.

$Outlook = New-Object -comobject Outlook.Application
$ns = $Outlook.GetNameSpace("MAPI")

$PropName = "http://schemas.microsoft.com/mapi/proptag/0x10F4000B"

#hide the selected folder
#$Folder =($Outlook.ActiveExplorer()).CurrentFolder

#hide or unhide a default folder (Journal in this case)
$Folder = $ns.GetDefaultFolder(11)

# hide or unhide a folder at the same level as the inbox
#$Folder = $ns.GetDefaultFolder(6).Parent.Folders.Item(".Test")

# hide or unhide a subfolder of inbox
#$Folder = $ns.GetDefaultFolder(6).Folders.Item(".Test")

write-host $($Folder.Name)
$oPA = $Folder.PropertyAccessor
$value = $oPA.GetProperty($PropName)
write-host $Indent$($Folder.Name)" ("$($Folder.Items.Count)")" $value

# true = hidden, false = visible
# check to see if hidden and change to visible
If ($value -eq $true)
   {
   write-host "changing prop"
    $oPA.SetProperty($PropName, $false)
    }

$value = $oPA.GetProperty($PropName)
write-host $Indent$($Folder.Name)" ("$($Folder.Items.Count)")" $value

 

Hide Calendar and Contacts folders in Shared Mailboxes

This version of the script hides the Calendar or Contacts folders in Exchange shared Mailboxes. To get a list of mailboxes it will apply to before running the script, remove or comment out this line.
$oPA.SetProperty($PropName, $true)

$Outlook = New-Object -comobject Outlook.Application
$ns = $Outlook.GetNameSpace("MAPI")

$PropName = "http://schemas.microsoft.com/mapi/proptag/0x10F4000B"

#Get all shared mailboxes
$mailboxes = $Outlook.GetNameSpace('MAPI').Stores | Where-Object {$_.ExchangeStoreType -eq 1}

#$mailboxes | Select DisplayName, SmtpAddress

foreach ($mailbox in $mailboxes) {

$mailboxname = $mailbox.displayname
write-host $mailboxname

$store=$ns.Stores.Item($mailboxname)

#calendar = 9, contacts = 10
$HideFolder = $store.GetDefaultFolder(9)

write-host $($HideFolder.parent.Name)

$oPA = $HideFolder.PropertyAccessor

$value = $oPA.GetProperty($PropName)

# true = hidden, false = visible
# check to see if hidden and change to visible
If ($value -eq $false)
   {
   write-host "changing prop"
    $oPA.SetProperty($PropName, $true)
    }

$value = $oPA.GetProperty($PropName)

}

Valid ExchangeStoreType Enumeration values:

ExchangeStoreTypeValueDescription
olAdditionalExchangeMailbox4Specifies an additional Exchange mailbox store.
olExchangeMailbox1Specifies an Exchange delegate mailbox store.
olExchangePublicFolder2Specifies an Exchange Public Folder store.
olNotExchange3Specifies that the store is not an Exchange store.
olPrimaryExchangeMailbox0Specifies a primary Exchange mailbox store.

 

Using PowerShell Scripts

To use PowerShell scripts with Outlook, start typing PowerShell on the start menu and open Windows PowerShell when it comes up. Windows PowerShell ISE has a script pane at the top, which is useful if you want to edit the script.

Paste the entire script in the PowerShell window and press Enter or the Run button if using PowerShell ISE.
powershell hide or unhide folder

Note: PowerShell scripts will not work with the Windows Store version of Office. You'll need to use a VBA macro version if you have the Windows store version of Office installed.

Saving PowerShell Scripts

If you want to save the script as a .ps1 file, paste it into Notepad and save it with the extension .ps1. To open it in the PowerShell IDE, type powershell on the start menu and click on Windows PowerShell IDE when the PowerShell app is found. Paste the script in the editing window.

To use it, you need to allow local scripts by running this command:

Set-ExecutionPolicy RemoteSigned

To run your saved .ps1 file, right-click on the script and choose Run with PowerShell.

Default Folder Enumeration Values

NameValueDescription
olFolderCalendar9Calendar folder
olFolderConflicts19Conflicts folder. (Business Exchange server only)
olFolderContacts10Contacts folder
olFolderDeletedItems3Deleted Items folder
olFolderDrafts16Drafts folder
olFolderInbox6Inbox folder
olFolderJournal11Journal folder
olFolderJunk23Junk E-Mail folder
olFolderLocalFailures21Local Failures folder. (Business Exchange server only)
olFolderManagedEmail29Top-level folder in Managed Folders group. (Business Exchange server only)
olFolderNotes12Notes folder
olFolderOutbox4Outbox folder
olFolderSentMail5 Sent Mail folder
olFolderServerFailures22Server Failures folder. (Business Exchange server only)
olFolderSuggestedContacts30Suggested Contacts folder
olFolderSyncIssues20Sync Issues folder. (Business Exchange server only)
olFolderTasks13Tasks folder
olFolderToDo28To Do folder
olPublicFoldersAllPublicFolders18All Public Folders folder in Exchange Public Folders. (Business Exchange server only)
olFolderRssFeeds25RSS Feeds folder

 

Use VBA to Hide Folders

To use this macro, paste it into the VBA editor, select the folder you want to hide and run the macro. If you need help using the VB Editor, see How to use the VBA Editor for more information and screenshots.

Option Explicit
  
Public Sub HideFolders()

Dim oFolder As Outlook.Folder
Dim oPA As Outlook.propertyAccessor
Dim PropName, Value, FolderType As String

PropName = "http://schemas.microsoft.com/mapi/proptag/0x10F4000B"
Value = True
 
Set oFolder = Application.ActiveExplorer.CurrentFolder
Set oPA = oFolder.propertyAccessor

oPA.SetProperty PropName, Value
 
Set oFolder = Nothing
Set oPA = Nothing
End Sub

To unhide a folder, change
Set oFolder = Application.ActiveExplorer.CurrentFolder to use a specific folder and change the Value line to False.
For example, if you accidently hid the Calendar, you'll use this for the oFolder line to unhide it.
Set oFolder = Session.GetDefaultFolder(olFolderCalendar)
More information on folder paths and other default folder names is available in the following article:
Working with All Items in a Folder or Selected Items

Option Explicit
  
Public Sub UnHideFolders()

Dim oFolder As Outlook.Folder
Dim oPA As Outlook.propertyAccessor
Dim PropName, Value As String

PropName = "http://schemas.microsoft.com/mapi/proptag/0x10F4000B"
Value = False
 
' for default folder:
Set oFolder = Session.GetDefaultFolder(olFolderCalendar)

' for subfolder you created:
' Set oFolder = Session.GetDefaultFolder(olFolderInbox).Folders("folder name")

' for a folder at the same level as the inbox:
' Set oFolder = Session.GetDefaultFolder(olFolderInbox).Parent.Folders("folder name")

Set oPA = oFolder.propertyAccessor

oPA.SetProperty PropName, Value
 
Set oFolder = Nothing
Set oPA = Nothing
End Sub

Unhide folder in a secondary mailbox

You need to use the GetFolderPath function from https://www.slipstick.com/developer/working-vba-nondefault-outlook-folders/#GetFolderPath

To use, enter the account name and folder you need to unide.
Set oFolder = GetFolderPath("mailbox name\Deleted Items")

Public Sub ShowHiddenFolder()

Dim oFolder As Outlook.Folder
Dim oPA As Outlook.PropertyAccessor
Dim PropName, Value As String

PropName = "http://schemas.microsoft.com/mapi/proptag/0x10F4000B"
Value = False
 
Set oFolder = GetFolderPath("mailbox name\Deleted Items")

Set oPA = oFolder.PropertyAccessor

oPA.SetProperty PropName, Value
 
Set oFolder = Nothing
Set oPA = Nothing
End Sub

If you accidentally hid a folder and can't recall which folder it was, use this macro to create a list of folder names and the Hidden property value.
This macro is based on the macro at Print a list of your Outlook folders

To use, select the root of the data file you want to check and run the GetFolderHiddenState macro.

When finished, the macro creates a new email message containing all of the folders as shown in the very small sample below.

\\account name\Inbox - 5075 items.  Is Hidden: False 
\\account name\Inbox\Test - 9 items.  Is Hidden: False 
\\account name\Sync Issues\Server Failures - 0 items.  Is Hidden: none 
\\account name\Contacts\Recipient Cache - 1206 items.  Is Hidden: True 
\\account name\Need Replies\test - 2 items.  Is Hidden: False 

Warning: the list will contain a lot of folders you never knew existed. These are folders Outlook uses to store information it needs to work correctly, do not unhide them. "Is Hidden: none" means the folder does not have the Hidden property.

Public strFolders As String
 
Public Sub GetFolderHiddenState()
    Dim olApp As Outlook.Application
    Dim olSession As Outlook.NameSpace
    Dim olStartFolder As Outlook.MAPIFolder
    Dim lCountOfFound As Long
 
    lCountOfFound = 0
      
    Set olApp = New Outlook.Application
    Set olSession = olApp.GetNamespace("MAPI")
      
' Allow the user to pick the folder in which to start the search.
    Set olStartFolder = olSession.PickFolder
      
' Check to make sure user didn't cancel PickFolder dialog.
    If Not (olStartFolder Is Nothing) Then
         ' Start the search process.
        ProcessFolder olStartFolder
    End If
     
' Create a new mail message with the folder list inserted
Set ListFolders = Application.CreateItem(olMailItem)
  ListFolders.Body = strFolders
  ListFolders.Display
      
' clear the string so you can run it on another folder
  strFolders = ""
End Sub
  
Sub ProcessFolder(CurrentFolder As Outlook.MAPIFolder)
         
    Dim i As Long
    Dim olNewFolder As Outlook.MAPIFolder
    Dim olTempFolder As Outlook.MAPIFolder
    Dim olTempFolderPath As String
 Dim oPA As Outlook.propertyAccessor
Dim PropName, value, FolderType As String

' Loop through the items in the current folder.
    For i = CurrentFolder.Folders.count To 1 Step -1
          
    Set olTempFolder = CurrentFolder.Folders(i)
          
    olTempFolderPath = olTempFolder.FolderPath

' Get the count of items in the folder
    olCount = olTempFolder.Items.count

'prints the folder path and name in the VB Editor's Immediate window
    Debug.Print olTempFolderPath & " " & olCount & " " & value
         
' Get the Hidden property value:
    PropName = "http://schemas.microsoft.com/mapi/proptag/0x10F4000B"
    Set oPA = olTempFolder.propertyAccessor
    On Error Resume Next
    value = oPA.GetProperty(PropName)
' if the property does not exist:
 If value = "" Then value = "none"
 
 ' create the string
    strFolders = strFolders & vbCrLf & olTempFolderPath & " Contains " & olCount & " items.  Is Hidden: " & value
         
    lCountOfFound = lCountOfFound + 1
          
    Next
' Loop through and search each subfolder of the current folder.
    For Each olNewFolder In CurrentFolder.Folders
            
        ProcessFolder olNewFolder

    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 and up, 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

Discussion in TechNet forum
How to disable Outlook's Junk Email folder

How to Hide or Delete Outlook's Default Folders was last modified: January 8th, 2025 by Diane Poremsky

Related Posts:

  • Hide Extra Folders in Outlook.com
  • Delete Empty Folders using PowerShell
  • Outlook Folders Appear Empty after Exporting an IMAP Account
  • Use PowerShell or VBA to get Outlook folder creation date

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.

Subscribe
Notify of
112 Comments
newest
oldest most voted
Inline Feedbacks
View all comments

John
January 7, 2025 3:45 pm

This did not work for me because I could not find either PR_ATTR-HIDDEN or IPM_SUBTREE while in MFCMAPI

0
0
Reply
Diane Poremsky
Author
Reply to  John
January 8, 2025 7:36 am

What type of email account do you have in classic Outlook? Did you expand the folders and find the inbox and other default folders?

0
0
Reply
Jeroen Gusdorff
September 4, 2024 9:15 am

I have used the VBA code above in a slightly adapted form to create a sub that can be called with two arguments: one to pass an Outlook folder object and the other to pass a boolean value for either hiding (TRUE) or showing (FALSE) the specified Outlook folder.

I have also created a Function that takes an Outlook Folder object as argument and returns the current hidden status of the specified folder as a boolean value. It uses the GetProperty method on the PropertyAccessor to retrieve the current setting of the hidden property.

The function seems to work fine as long as it is used on a folder that has previously been hidden and/or unhidden with the SetProperty method of the PropertyAccessor.

Am I therefore correct to assume that the "Hidden" property ("http://schemas.microsoft.com/mapi/proptag/0x10F4000B") does not actually exist for any specific folder until the SetProperty method is used on that specific folder?

0
0
Reply
Diane Poremsky
Author
Reply to  Jeroen Gusdorff
January 8, 2025 7:45 am

Correct, its not used on 'normal' folders - that's why you need to copy and paste from a hidden folder instead of just changing the value.

0
0
Reply
Jeroen Gusdorff
September 4, 2024 8:58 am

Hi,
The VBA code directly under the heading "Use VBA to Hide Folders" for hiding/showing Outlook folders includes a Dim statement for a string variable named "FolderType". However, this variable does not seem to be used anywhere in the rest of the code, or am I missing something?

0
0
Reply
Diane Poremsky
Author
Reply to  Jeroen Gusdorff
January 8, 2025 7:40 am

You're correct. The code was repropused from another macro where it was used. Sorry.

0
0
Reply
John Hough
November 1, 2023 10:06 am

I don't think this works in the new version of Outlook, at least with the MFCMapi program. When you right click and paste, nothing happens. The PR_ATTR_HIDDEN property of the folder i'm trying to hide (Archive) never changes from False to True. The box you show that pops up and then you're supposed to click Ok twice as you instruct, never happens. I'm using MFCMAPI.x64.exe.23.0.23089.01, and outlook version is 1.2023.1018.300

0
0
Reply
Diane Poremsky
Author
Reply to  John Hough
January 8, 2025 7:39 am

This is new Outlook: 1.2023.1018.300

This does not work with NEW OUTLOOK, only with the classic Outlook. It works in all versions of classic Outlook - these are the ones with year or 365 in their name and have a version number in this format: 16.0.12345.12345

0
0
Reply
Bannd
July 25, 2023 2:22 am

Thank you Diane for sharing your expertise.
This works great, and yes, will remove anything, including subfolders of Public Folders; and subfolders of the Favorites of the Public Folders.
Not so great, is I inadvertently ran the script not meaning to. :-(

So, I unintentionally hid a subfolder called "Watch Items" that was in the Favorites folder.
The "Watch Items" subfolder is still showing in the "Public Folders" and works there, but does not show in Favorites.
(There are about 115 subfolders in Public Folders, so a nuisance to have to scroll thru to find what you want, Favorites is a good feature).
Going to Public Folders and 're-adding' "Watch Items" to Favorites does not cause it to show.
Oh, and yes, we are fully closing, then restarting Outlook 2016 each time.

What modification to the 'unhide' script to find the correct hierarchy and etc?
It is a terminal session (HP ThinPro/Citrix) Outlook 2016 on MSserver 2012R2 , MSExchange, on Outlook365
We can only use VBA. powershell, etc is not available.

We welcome your suggestions for repair.
Thank you.

0
0
Reply
Chipy
November 4, 2022 2:33 am

Thanks for your great instructions, Diane!

In my Outlook, I have two accounts configured:

  1. my main account / inbox: chipy@mail.com
  2. a shared mailbox: shared@mail.com

So there are two different mailboxes.

Following your VBA instructions, I could hide some default folders using VBA in both mailboxes. But now I want to unhide a default folder in the shared mailbox shared@mail.com.

I used your suggested code from above.
This works totally fine for the first mailbox account / inbox chipy@mail.com, but I can't get it to work for the second account / shared mailbox shared@mail.com.

How do I have to change the above code to unhide folders in the second account / shared mailbox?

Thanks in advance for your support!

A somehow desperate Chipy

0
0
Reply
Spok
August 17, 2022 9:21 am

Worked for me with Mapi 64 bits to delete unneeded folders in an imported pst files. Thanks!

0
0
Reply
Eric
January 26, 2022 12:37 pm

Hi Diane,
Trying to use MFCMapix64.exe to hide folders in Outlook; Notes and Tasks. Unfortunately I cannot set the hide attribute. I can copy from the Quick Step Settings, but it does not give me the ability to paste (grayed out). If I try the manual steps, I can create it, but after I click 'ok', it does not add it. Any insight?
Thank you

0
0
Reply
Rck
Reply to  Eric
October 19, 2022 7:55 am

Hello Eric, I had exactly the same problem.
The solution for me was to downgrade MFCMapi.exe version to v21.2.21062.01 :)

0
0
Reply

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

Latest EMO: Vol. 30 Issue 29

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
  • Jetpack plugin with Stats module needs to be enabled.
  • 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
  • Import EML Files into New Outlook
  • Opening PST files in New Outlook
  • New Outlook: Show To, CC, BCC in Replies
  • Insert Word Document into Email using VBA
  • Delete Empty Folders using PowerShell
  • Warn Before Deleting a Contact
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

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

Import EML Files into New Outlook

Opening PST files in New Outlook

New Outlook: Show To, CC, BCC in Replies

Insert Word Document into Email using VBA

Delete Empty Folders using PowerShell

Warn Before Deleting a Contact

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 © 2025 Slipstick Systems. All rights reserved.
Slipstick Systems is not affiliated with Microsoft Corporation.

:wpds_smile::wpds_grin::wpds_wink::wpds_mrgreen::wpds_neutral::wpds_twisted::wpds_arrow::wpds_shock::wpds_unamused::wpds_cool::wpds_evil::wpds_oops::wpds_razz::wpds_roll::wpds_cry::wpds_eek::wpds_lol::wpds_mad::wpds_sad::wpds_exclamation::wpds_question::wpds_idea::wpds_hmm::wpds_beg::wpds_whew::wpds_chuckle::wpds_silly::wpds_envy::wpds_shutmouth:
wpDiscuz

Sign up for Exchange Messaging Outlook

Our weekly Outlook & Exchange newsletter (bi-weekly during the summer)






Please note: If you subscribed to Exchange Messaging Outlook before August 2019, please re-subscribe.

Never see this message again.

You are going to send email to

Move Comment