On Being a Responsible Outlook user

October 29, 2009JPNo CommentsRate This ArticlenewLinks to this article


Reply To All

    The Microsoft Exchange Team Blog has a two part series on how to disable the Reply To All functionality using MS Exchange. Yikes.

    To me, it seems like an organizational disease or culture problem when you have to resort to blocking the feature at the Exchange level.

    This function can be disabled at the single user message level with a bit of VBA:

ActiveInspector.CurrentItem.Actions("Reply to All").Enabled = False

(from Redirect Messages)

    You can disable the Reply function as well, for "announce only" messages:

ActiveInspector.CurrentItem.Actions("Reply").Enabled = False

    And you can even stop messages from being forwarded:

ActiveInspector.CurrentItem.Actions("Forward").Enabled = False

    Here's what happens when you try the menu option, press the hotkey combination, or click the toolbar button for any of these three choices:

Reply Enabled set to False

    For ease of use, this code should be assigned to a toolbar, either in Outlook or on an individual message. As far as I can tell, you can not disable these options without programming code.

    So save your co-workers from the e-mail storm: if your message does not need a reply, or you want to avoid the Reply To All issue, use these codes to manage your email.

About JP
I'm just an average guy who writes VBA code for a living. This is my personal blog. Excel and Outlook are my thing, with a sprinkle of Access and Word here and there. Follow this space if you want to learn more about VBA. Keep Reading »

↑ Scroll to top
Previous Post:

Next Post:

2 Response(s) to On Being a Responsible Outlook user ↓

  1. Ken Puls says:

    "To me, it seems like an organizational disease or culture problem when you have to resort to blocking the feature at the Exchange level."

    To me it seems like a training issue and lack of common sense. It's amazing how often you see it though.

Speak Your Mind

Tell us what you're thinking...

Certain comments (including first-time comments) are subject to moderation and will not appear immediately. Please view the Comment Policy for more information. To post VBA code in your comment, use tags like this: [cc lang='vb']Code goes here[/cc].




Site last updated August 24, 2010 @ 5:56 pm