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

Assign a custom form to existing Outlook items

Slipstick Systems

› Developer › Assign a custom form to existing Outlook items

Last reviewed on February 11, 2026     28 Comments

One of my favorite (and free!) little utilities is DocMessageClass as it makes it easy to change the message class on existing items to use a new published form. Unfortunately, it doesn't work with 64-bit versions of Outlook (which is the default install for new computers.) If you have 32-bit Office installed, you can use DocMessageClass.

Although not quite as easy to use as DocMessageClass, you can use a macro or PowerShell script to change the message class in all versions, including Outlook 2013 and newer.

Note: these methods work for any Outlook item, not just contacts.

Using PowerShell to change the message class

You can use PowerShell to change the message class. The first example changes the message class of all Contact items, while the second one changes a specific message class.

# Change the message class of all contacts
$olApp = new-object -comobject outlook.application
$namespace = $olApp.GetNamespace("MAPI")

# Default Contacts folder
$Contacts = $namespace.GetDefaultFolder(10)

foreach ($Contact in $Contacts.Items)
{

# Don't change distribution lists
    if ($Contact.messageclass -notlike "*distlist*")
    {
              
   $Contact.messageclass  = "IPM.Contact.form-name"  
   $Contact.Save()

    }
}

$olApp.Quit | Out-Null
[GC]::Collect()

Change specific message classes

Use this macro to change specific message classes to another message class.

# Change the message class of all contacts
$olApp = new-object -comobject outlook.application
$namespace = $olApp.GetNamespace("MAPI")

# Default Contacts folder
$Contacts = $namespace.GetDefaultFolder(10)

foreach ($Contact in $Contacts.Items)
{

# Don't change distribution lists, change specific class
    if ($Contact.messageclass -notlike "*distlist*" -or $Contact.messageclass -like "*new*")
    {
	
   $Contact.messageclass  = "IPM.Contact.form-name"  
   $Contact.Save()

    }
}

$olApp.Quit | Out-Null
[GC]::Collect()

Run on a non-default folder

This code sample is from Kenny in our forum.
can't get custom form to update multiple contacts using VBA

To use, enter the name of the folder in the code. The folder does not need to be selected before running the PowerShell.

# Change the message class of all contacts
$olApp = new-object -comobject outlook.application
$namespace = $olApp.GetNamespace("MAPI")
$Contacts = $namespace.GetDefaultFolder(10)
# Specify target folder
$myNewFolder = $Contacts.Folders("subfolder name")

foreach ($Contact in $myNewFolder.Items)
{
# Don't change distribution lists
if ($Contact.messageclass -notlike "*distlist*")
{
# specify new message subclass
$Contact.messageclass = "IPM.Contact.custom-form-name"
$Contact.Save()
}
}
$olApp.Quit | Out-Null
[GC]::Collect()

 

Change the message class of the selected folder

This version of the PowerShell works with the selected folder. Select a folder then run the macro.

# Change the message class of all contacts
$olApp = new-object -comobject outlook.application
$Contacts = ($olApp.ActiveExplorer()).CurrentFolder

Write-Host "Current folder is $Contacts"
foreach ($Contact in $Contacts.Items) {
# Don't change distribution lists
if ($Contact.messageclass -notlike "*distlist*")
{
# Specify new message subclass
$Contact.messageclass = "IPM.Contact.custom-form-name"
$Contact.Save()
}
}
$olApp.Quit | Out-Null
[GC]::Collect()

Change message class on selected items

This PowerShell will change the message class on the select items.

# Change the message class of all contacts
$olApp = new-object -comobject outlook.application
$namespace = $olApp.GetNamespace("MAPI")

$currentExplorer = ($olApp.ActiveExplorer())
$Selection = $currentExplorer.Selection

write-host $selection.count

foreach ($Contact in $Selection)
{
# Don't change distribution lists
if ($Contact.messageclass -notlike "*distlist*")
{
# specify new message subclass
$Contact.messageclass = "IPM.Contact"
$Contact.Save()
}
}
$olApp.Quit | Out-Null
[GC]::Collect()

Using PowerShell Scripts

To use, right-click on the Start menu in Windows 10 and click on the Windows PowerShell entry. Paste the entire script in the PowerShell window and press Enter.
bulk change contact fields

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.

 

Using VBA to change the message class

This first macro is based off of a macro provided by Microsoft, intended to be used in a template (see the KB article for details if you want to run it from a template.

Sub ChangeContactMessageClass()
 
  ' Change the following line to your new Message Class
   NewMC = "IPM.Contact.Test"
 
   Set CurFolder = Application.ActiveExplorer.CurrentFolder
   Set AllItems = CurFolder.Items
   NumItems = CurFolder.Items.count
 
   ' Loop through all of the items in the folder
   For i = 1 To NumItems
 
      Set CurItem = AllItems.Item(i)
       
' Test for a distlist
 If CurItem.Class = olContact Then
  
      ' Test to see if the Message Class needs to be changed
      If CurItem.MessageClass <> NewMC Then
 
         ' Change the Message Class
         CurItem.MessageClass = NewMC
 
         ' Save the changed item
         CurItem.Save
 
      End If
 End If
   Next
 
   MsgBox "Done."
 
End Sub

To use the code above with non-contact folders, remove the If CurItem.Class = olContact Then line and the second End If.

Macro alternative to DocMessageClass

This alternative to DocMessageClass was posted by chaplaindoug in Outlook Forums: How to Set Existing Contacts to Custom Form

This macro shows how to use change the message class of Public Folder contacts.

Sub ChangeMessageClass()
UName = Environ("UserName")
Set olNS = Application.GetNamespace("MAPI")
Set ContactsFolder = olNS.Folders("Public Folders - " + UName + "@goodnewsjail.org")
Set ContactsFolder = ContactsFolder.Folders("All Public Folders")
Set ContactsFolder = ContactsFolder.Folders("Good News Contacts")

'to use on the default contacts folder instead, uncomment this line
'Set ContactsFolder = olNS.GetDefaultFolder(olFolderContacts)

Set ContactItems = ContactsFolder.Items

For Each itm In ContactItems

If itm.MessageClass = "IPM.Contact" Then
itm.MessageClass = "IPM.Contact.Good News Contact"
itm.Save
End If

Next
End Sub

Change message class as item is saved

If you need to change the message class on some items, you can use an ItemAdd macro to change the message class when the new item is saved.

This could be used with an If statement to change the message class according to a value in a field (for example, If item.country = "Canada"), or when a new item is created in such a way that the custom form is not used.

Option Explicit
Private WithEvents newContacts As Outlook.Items
  
Private Sub Application_Startup()
 Set newContacts = Session.GetDefaultFolder(olFolderContacts).Items
End Sub


Private Sub newContacts_ItemAdd(ByVal Item As Object)
If Item.Class = "IPM.Distlist" Then Exit Sub

 Dim NewMC As String
NewMC = "IPM.Contact.MapIt"
    
 If Item.Class = olContact Then
      If Item.MessageClass <> NewMC Then
         Item.MessageClass = NewMC
         Item.Save
      End If
 End If

End Sub

Change the message class when a contact is edited

This macro changes the message class when you edit and save a contact.

Public WithEvents cItems As Outlook.Items

Public Sub Initialize_handler()
    Set cItems = Application.ActiveExplorer.CurrentFolder.Items 
End Sub

Sub cItems_ItemChange(ByVal Item As Object)
 
  ' Change the following line to your new Message Class
   NewMC = "IPM.Contact.robert-form"
   
 If Item.Class = olContact Then
      If Item.MessageClass <> NewMC Then
         Item.MessageClass = NewMC
         Item.Save
      End If
 End If
  
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 and newer, 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 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

How to update existing items in an Outlook folder to use a new custom form This code works in all versions of Outlook and can be run using Run This Form from the forms designer. However, if you use it on Contacts, it does not detect Distribution lists and turns them into contacts. The first code on the page above uses the same code and adds a check for distribution lists.

Assign a custom form to existing Outlook items was last modified: February 11th, 2026 by Diane Poremsky
Post Views: 49

Related Posts:

  • Change the Mailing Address Using PowerShell
  • Use PowerShell to Bulk Change Contacts
  • Create new Outlook folders using PowerShell
  • How to Set a Custom Form as the Default for a Folder

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. Andrew Juby says

    February 7, 2022 at 3:41 am

    Hello,
    I am changing my IPM.contacts for a custom form, so that all my old items open on the custom form. I have not used VBA before, have done some programming 30 years ago.
    I've had a few problems.
    I've just found out that my Outlook is 32bit, so have run the Doc Message program. This has reset my icons again and now I can open all items again with my custom form.
    I have lost my Distribution lists because of some incorrect programming. Is there a way I can change a particular Item back to a distribution list... IPM.Contact.DistList. Do it one by one? I've appreciated the help received going through your forum. Wish I had some time to do some VBA learning...
    Thanks for all your help. Andrew

    Reply
  2. Biagio Lucci says

    October 16, 2019 at 1:14 pm

    Hello there
    Help me out please.
    Outlook 2016 32 bit and need to apply a form when an item is saved. The item is a task and I don't know how to switch the wording in the macro for that.
    please help

    thanks

    Reply
    • Diane Poremsky says

      October 17, 2019 at 12:04 am

      yoiu'd use IPM.Tasks.form-name

      To find the form name, if you have an item saved using the form, add the message class field to the view. if the form is published, you can get the form name in File > options > advanced > custom forms.

      Reply
  3. Carlos says

    June 9, 2016 at 6:12 pm

    Outlook 2016
    HELP PLEASE
    I used the first macro... by mistake... I was trying to open the code to edit it but instead it ran with the default IPM.Contact.Test as the NewMC. I was able to abort it, but it changed about half of my calendar items to contacts. Next, I changed the NewMC to IPM.Schedule_Production_3, which is the custom form which I wanted to convert everything to in the first place, but the macro will not run. I enabled macros and tried again with no luck. If it is a custom form do I need to specify a path? Any advice would be greatly appreciated.

    Reply
    • Diane Poremsky says

      June 9, 2016 at 11:02 pm

      Did it not run or just not make any changes?
      Is that the right form name? If it's based on an appointment form, it should be IPM.Appointment.Schedule_Production_3

      Reply
  4. Kevin says

    April 11, 2016 at 2:03 pm

    I've successfully set up a new form for a Calendar (Outlook 2013, non-profit E1 Office 365 Exchange) and made it the default. Works well however if recurrence is used the original form is opened. Any suggestions about changing this to open the form I created instead of the default?

    Reply
    • Diane Poremsky says

      June 16, 2016 at 12:07 am

      This happens only when you are opening the recurring event to view it, not when composing?

      Reply
  5. Oliver says

    October 15, 2015 at 4:09 pm

    thanks. I understand I have just to use your last script.
    where should I add my form name, which is fxtest

    Reply
  6. Oliver says

    October 14, 2015 at 5:38 pm

    in case it does no work and that creates a mess, can you help me out to go back...? I'm afraid I can mess something that is very valuable to me.
    I also understand that I keep all the blue stuff. I delete those three lines, and the ' before the other line, then I create a module and Paste the script and then I run the script. And then if it works when I open an old contact I'll see my form

    are my presumptions ok?

    Reply
    • Diane Poremsky says

      October 14, 2015 at 9:11 pm

      Correct, you'll use this code on the default contacts folder (using the name of your form) and when it's finished, when you open a contact it will use your custom form.

      Sub ChangeMessageClass()
      Set olNS = Application.GetNamespace("MAPI")
      Set ContactsFolder = olNS.GetDefaultFolder(olFolderContacts)
      Set ContactItems = ContactsFolder.Items

      For Each itm In ContactItems
      If itm.MessageClass = "IPM.Contact" Then
      itm.MessageClass = "IPM.Contact.Good News Contact"
      itm.Save
      End If

      Next
      End Sub

      Reply
  7. Oliver says

    October 14, 2015 at 12:45 pm

    If I want to use the chaplingdoug's macro after following your suggested deletions, should I also change whatever is in blue font, user name. Also somewhere should I add the name of my custom form.
    Sorry but I want to be completely sure that I'm doing the right stuff. I tried at another contact folder and now I don't know how to fix it, I mean I cannot open correctly the contacts.

    Reply
    • Diane Poremsky says

      October 14, 2015 at 3:48 pm

      if you are using your default contacts folder this is all you need to identify the folder to use:
      Set ContactsFolder = olNS.GetDefaultFolder(olFolderContacts)

      the blue text part is used to identify an Exchange public folder contacts list.

      Reply
  8. Oliver says

    October 13, 2015 at 9:04 pm

    I have Outlook 2016 x64 not exchange
    I'm not an expertise.
    which would be the macro to assign my form to all existing contacts.
    I saw here posted a macro created by chaplaindoug however I don't know in which way should I tweak it in order to have it work. I tried a couple of tweaks and I couldn't. thanks

    Reply
    • Diane Poremsky says

      October 13, 2015 at 11:13 pm

      If you aren't using Exchange, use the first macro on the page or to use chaplindoug's macro, delete the first 3 "Set ContactsFolder" lines and remove the apostrophe from in front of Set ContactsFolder = olNS.GetDefaultFolder(olFolderContacts) - the macro will work on the default contacts folder.

      Reply
  9. Jack W says

    March 31, 2015 at 2:37 pm

    Hi Diane,

    I've cobbled together some code to populate some Outlook Appointment (calendar form) from a web-form produced standard email. The form uses the default add appointment form. I've tried lots and lost of ways to try and force the code to use a customized add appointment form (stored in the Personal Forms Library) but I can't get the code to use the custom form.

    If I can get that to work I want to populate some custom fields on the customized form from data extracted from the web-form produced standard email.

    In theory this should be easy!

    Any help to solve this would be much appreciated as I've been banging my head against a brick wall trying! :-/

    Reply
  10. Dominik says

    March 12, 2015 at 11:13 am

    Hello,

    Our infrastructure:

    •Exchange Server 2010
    •Outlook 2010
    •Outlook 2013
    •Windows 7 Pro, Windows 8 Pro and Windows 8.1 Pro

    The situation:
    1.We've used an old custom form for contacts, worked perfectly fine
    2.I've updated the form (adding some new custom fields and checkboxes) using Outlook 2013 and publishing the form (with a new name) to the Exchange folder
    3.I've set the form as default form in our contacts folder
    4.I've used this Script to set the new form for the existing contacts and the name of the new form is saved correctly
    5.BUT if I open a contact in our Exchange contacts folder, Outlook 2013 (Outlook 2010) still shows the old form

    Steps I've taken so far:
    •Cleared Outlook forms cache
    •Repeated the above steps 1-4 in Outlook 2010
    •Switched Cached Exchange Mode off and back on
    •Allowed Scripts in Trust Center Settings
    •Used a new clean Windows installation with a new Outlook 2013 installation
    •Used different Exchange users on different systems, but some behavior when opening contacts

    I'm out of options I can think of, so maybe somebody else has some new view on this problem.

    Thank you very much in advance!

    Greetings,

    Karl

    Reply
    • Diane Poremsky says

      April 16, 2015 at 12:56 pm

      The mailbox is an account, not a shared mailbox? There are issues with custom forms and shared mailboxes - data in custom fields isn't lose, but the contact may display on the standard form.

      Reply
  11. Dominik says

    March 3, 2015 at 9:12 am

    hey diane, I wrote a piece of vba code to change the message class of all my contact items in a specific folder to display them in a custom form I've created. The code works fine and correctly but if I open a contact it is still displayed in a form I used before.

    Reply
    • Diane Poremsky says

      March 4, 2015 at 9:24 pm

      Then it didn't work correctly. :) Do you get any error messages when you open it? Like one stating the form is not available. Have you tried deleting the Forms cache?

      Reply
  12. abishek sharma says

    January 13, 2015 at 9:00 am

    Hey Diane is it possible to modify just the global address list window which appears when we click the 'To' button on message window. We have a new requirement where the business wants to add some custom search and sorting functionality in the global address list.

    Reply
    • Diane Poremsky says

      January 13, 2015 at 9:29 am

      No, that is not possible. Administrators can control the fields displayed but you'd need to make a new form and intercept the call to add new features.

      Reply
      • abishek sharma says

        January 13, 2015 at 10:02 am

        Thanks Diane for your prompt reply. So you mean to say it is possible to design a new form and intercept the call from different events. Is it possible to completely replace the from with new form and hence not intercept the call from different events. In the process also replace the address list button on the ribbon of outlook home tab.

      • Diane Poremsky says

        January 14, 2015 at 1:32 am

        I'm not sure if it is possible with the address book dialog, but that is how you would need to do it, if it is possible. I believe it will require extensive programming skills and will need to be in an addin - a macro won't do it.

  13. christopher koch says

    January 23, 2014 at 4:10 pm

    I have tried DocMessageClass with Outlook 2013 and found it worked for me.

    Reply
    • Diane Poremsky says

      January 23, 2014 at 8:24 pm

      Which suite are you using? 32- or 64-bit? It could be the type of installation (click to run or MSI), bitness, or a recent Outlook update fixed it.

      Reply
  14. Robert Ogden says

    December 17, 2013 at 2:18 pm

    Greetings Diane and other. I have an odd issue involvin VBA code that changes the MessageClass of 'Sent Item' messages in Outlook 2010.
    The code wirks fine, updates when it is run and the icon for the targeted 'Sent Item's updates. However, when I open the message that had its Message Class changed, it still will show the previous MessageClass. I have to select another mail folder (switching to Calendar, Contacts and Tasks folders don't always work the forst time), then come back to Sent Items and then open the item to see the change.

    The odd thing is, the trigger doesn't seem consistent. I'll change the Message Class, click on the 'Contacts' folder, then come back and open the Sent Message, it hasn't changed. However, sometimes when I do this, I'll come back and open the Sent Item, and it has changed. I've also let it sit for several minutes, but this never seem to update.

    Are there any suggestions on what may be going on here and how i can fire the 'Refresh' activity manually?

    Thanks for any help. ~R

    Reply
  15. Rob says

    October 15, 2013 at 11:21 pm

    I've seen about a dozen of similar posts but *NOT ONE* actually addresses this issue for Outlook 2010. And almost every post refers to MS articles that ALSO do not refer to Outlook 2010. I have to do this for my existing Calendar items for Outlook 2010 (change the message class) and I cannot find a properly described procedure.

    Reply
    • Diane Poremsky says

      October 16, 2013 at 8:26 pm

      The method is the same for any Outlook items type. Most methods that work in other versions of Outlook also work with 2010. My preferred method is DocMessageClass, but it won't work with 2013. For that I use the macro.

      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 5

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.
  • 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.