How to use a macro to set up an Automatic reply (out of office reply) in Outlook on Windows desktop.
Use VBA to Scan to Email
How to scan a document or image and attach or embed into an Outlook email using VBA and the Windows Image Acquisition Library (WIA).
Delete folders using a macro or PowerShell
Use an Outlook macro or PowerShell script to bulk delete folders from Outlook.
Use PowerShell to Bulk Change Contacts
How to use PowerShell to bulk change Outlook Contact fields, including the File As and Email display name fields.
Add a date/time picker control to a custom form
The Outlook Appointment, Task and Journal forms include a drop-down calendar control on their main pages that allows the user to quickly pick a date. This built-in drop-down control is not available to programmers of legacy custom forms. (This is apparently one reason why certain pages on Outlook forms are not customizable.) Among the new
Using VBScript in Outlook Development
The code behind Microsoft Outlook forms is always written with the Microsoft Visual Basic Scripting Engine, better known as VBScript, a small portable language, which is also used in web pages and standalone scripts. VBScript does not support the built-in Outlook constants, such as olFolderContact. Only the constants built into VBScript, such as vbYes, are supported. For
Delete duplicate messages using a macro
Use a macro to clean up duplicates messages in an Outlook folder.
Resize images in an Outlook email
Use a VBA macro to resize large images in received email.
Update Folder Permissions using VBA
How to assign, change, or remove folder permissions in an Exchange mailbox using Outlook VBA and Redemption.
Move email items based on a list of email addresses
This code sample shows how to load the contents of a text file into an array then use the array to do something, in this example, to move messages to a new folder.