Skip navigation

Exchange & Outlook UPDATE, Outlook Edition, April 29, 2005

This email newsletter comes to you free and is supported by the following advertisers, which offer products and services in which you might be interested. Please take a moment to visit these advertisers' Web sites and show your support for Exchange & Outlook UPDATE.

Keep Users Continuously Connected to Exchange

http://www.neverfailgroup.com/products/default.asp?promo=ExchangeOutloook4-29-05

Managing and Securing IM in the Enterprise: Why It Should Be a Top Priority

http://www.windowsitpro.com/whitepapers/akonix/securingim/index.cfm?code=e&osec_429

===============

1. Commentary

- Restricting "Reply to All"

2. Resources

- Outlook Tip: Outlook Fixes in Office 2003 SP1

3. New and Improved

- Convert Outlook Messages

==========

~~~~ Sponsor: Neverfail ~~~~

100% application availability is not impossible, nor impossibly expensive. Keep your users continuously connected to working applications, no matter whether a failure occurs in the operating system, a hardware component, a software application, or somewhere within the network. Neverfail's high availability and DR solutions are a clustering alternative designed to eliminate downtime, and provide a simple, cost-effective solution for business continuity. To view a demo or access a free whitepaper:

http://www.neverfailgroup.com/products/default.asp?promo=ExchangeOutloook4-29-05

==========

Editor's note: Share Your Exchange Discoveries and Get $100 Share your Exchange Server and Outlook discoveries, comments, or problems and solutions for use in the Exchange & Outlook Administrator print newsletter's Reader to Reader column. Email your contributions (500 words or less) to [email protected]. We edit submissions for style, grammar, and length. If we print your submission, you'll get $100.

==========

==== 1. Commentary: Restricting "Reply to All" ====

by Sue Mosher, News Editor, [email protected]

Surely this has happened to you: You receive an email message in which you are one of a long list of recipients. Over the next few days, your Inbox fills up with a series of follow-up messages with the same subject line, but with content that gradually drifts off-topic as one recipient or another brings up a tangential issue and hits "Reply to All". Getting stuck in this endless cycle is annoying and can be a drain on productivity when it happens to many users in an organization. As a result, some organizations want to ban the use of "Reply to All" and force users to use only the Reply button to respond directly to the original sender of a message.

Can you accomplish this task through Outlook? Yes, by using two Group Policy settings: one for the toolbar and menu "Reply to All" commands and one for the Ctrl+Shift+R shortcut key. I'll walk through the procedure for Microsoft Office Outlook 2003; the steps for Outlook 2002 or Outlook 2000 are similar. I assume that you're already familiar with the concept of using Group Policy Objects (GPOs) to control the settings available to users and computers. If not, the Office 2003 Editions Resource Kit (ORK) article "Managing Users' Configurations by Policy" (see the first URL below) is a great place to start. It explains how to work with the Administrative Template (.adm) files for Office, which tell Group Policy Editor (GPE) which settings you can manage for a given application. If you've deployed Office 2003 Service Pack 1 (SP1), a new set of .adm files is available from http://www.microsoft.com/office/orkarchive/2003ddl.htm . Look under "Office 2003 Policy Template Files and Deployment Planning Tools" for the self-extracting file named Office-2003-SP1-ADMs-OPAs-and-Explain- Text.exe. After you extract the .adm files, open the GPO you want to modify and, in GPE, right-click User Configuration\Administrative Templates, then choose Add/Remove Templates and add the newly extracted Outlk11.adm file. This file contains the Outlook 2003 Group Policy settings. (If you're using an earlier version of Outlook, you'll need to download and use the .adm file appropriate for that version, along with the other ORK downloads for that version.)
After you add the Administrative Template for Outlook, navigate (in GPE) to User Configuration\Administrative Templates\Microsoft Office Outlook 2003\Disable items in user interface\Custom. Display the first policy setting--"Disable command bar buttons and menu items". Select Enabled, then click Show. In the Show Contents dialog box, click Add and type "355". That number is the ID for the toolbar and menu "Reply to All" commands. The ID is the same whether it appears on a toolbar in the Explorer window that shows a folder's contents or in the Inspector window that displays an individual item. Click OK to save that ID as part of the policy setting. Then click "Next Policy" to move on to the second policy setting--"Disable shortcut keys". Again, click Show, then Add. This time, type in "82,12", then click OK twice to return to GPE.
These policy settings make several changes in the way Outlook behaves for any user covered by this particular GPO. The "Reply to All" command will still appear on toolbars and menus, including the right- click context menu, but it will be grayed out, indicating that the option is disabled. When a user hovers the mouse over the toolbar button, the tooltip will say, "Reply to All:Disabled by your system administrator". When the user selects or opens a message and presses the Ctrl+Shift+R key combination, nothing will happen.
At this point, you might be wondering, "How did Sue know to use 355 and 82,12 for the command and shortcut key IDs?" Knowing the right command and shortcut key values is, of course, the key to making these policies work. Let's cover the shortcut keys first, because they're easier.
The shortcut key code consists of two numbers, separated by a comma. The first number represents the letter or number for the shortcut key, in this case the letter R. The number 82 is the ASCII code for the R character. An easy way to look up the ASCII code for any character is to use the Immediate window in Outlook VBA. First, check Tools, Macro, Security, and make sure your security level is set to Medium or Low. (Restart Outlook if you change the level.) Then press Alt+F11 to open the VBA environment, followed by Ctrl+G to display the Immediate window. In the Immediate window, type

? Asc("R")

and press Enter. On the next line, the Immediate window will display 82, which is the first part of the value that we must enter to disable Ctrl+Shift+R. You can find the code for any other letter or number by replacing R in the command above with the desired character. (Keep in mind that the command is case-sensitive.)

If you don't have access to VBA or have an aversion to even simple programming functions, you can use Microsoft Word to look up character codes. In any Word document, choose Insert, Symbol; in the Symbol dialog box, select the number or uppercase letter for the shortcut key. In the From drop-down list at the lower-right corner of the Symbols tab, select "ASCII (decimal)". The ASCII code will appear in the "Character code" box.
As you might guess, the second part of the shortcut key code--the number 12-–is the portion related to Ctrl+Shift. Each modifier key-- Alt, Shift, or Control--has a corresponding value: Alt is the number 16, Shift is the number 4, and Ctrl is the number 8. When a shortcut key uses more than one modifier, add the modifier's values together. In this case, Ctrl+Shift gives us a value of 8+4--or 12, which is the second portion of the shortcut key code.
If only it were that easy to get the ID for a menu or toolbar command! Although the Microsoft article I mentioned earlier describes a method that uses the VBA Immediate window, that technique won't work for Outlook, which has two kinds of windows. You must specify which kind you're using before you can access Outlook's CommandBars collection. If you want to use one of the code methods that the article discusses, replace Application.CommandBars or CommandBars with Application.ActiveExplorer.CommandBars to find a command ID from a folder window or with Application.ActiveInspector.CommandBars to find a command ID from an individual item window. Alternatively, you can use SIAM Consulting's free CommandBars Browser tool (see the second URL below) to get any command ID from an Explorer (folder) window or use the Outlook Spy tool (see the third URL below) to get a command ID from either an Explorer or Inspector (item) window.
One final issue related to disabling items in the UI: Unlike menu commands and shortcut keys, the options on the various pages of Outlook's Tools, Options dialog box don't have codes that you can use to disable them. Instead, you need to enable the Group Policy setting that enables a particular option. Fortunately, Microsoft has arranged the settings in the Administrative Template hierarchically so that you can more easily locate a setting that corresponds to an option available in the Tools, Options dialog box.
For example, if you want to prevent users from turning on automatic journaling for different types of Outlook items, you can navigate (in GPE) to User Configuration\Administrative Templates\Microsoft Office Outlook 2003\Tools|Options\Journal options and enable the policy named "Disable journaling of these Outlook items". When a user affected by that setting goes to Outlook's Tools, Options dialog box and clicks Journal Options, the "Automatically record these items" list will show the user only those types of items that you didn't select in the "Disable journaling of these Outlook items" policy.

"Managing Users' Configurations by Policy"

http://office.microsoft.com/en-us/assistance/ha011402401033.aspx

CommandBars Browser

http://www.siam-consulting.com/downloads.htm

OutlookSpy

http://www.dimastr.com/outspy

==========

~~~~ Sponsor: Akonix ~~~~

With instant messaging virtually in all corporate environments, and expected to be as prevalent as email in the near future, it has rapidly become an indispensable business communication tool. Yet, IM growth within the enterprise brings an associated increase in security risks to both public and enterprise IM networks. In this free white paper, learn how you can take control of IM use on your network to ensure security and compliance. You'll learn how to protect yourself from Virus & worms attacks, Identity theft, Leakage of confidential information and more. Download now!

http://www.windowsitpro.com/whitepapers/akonix/securingim/index.cfm?code=e&osec_429

==========

==== Events and Resources ====

(A complete Web and live events directory brought to you by Windows IT Pro: http://www.windowsitpro.com/events )

Protect the Rest of Your Exchange Infrastructure

There is more to data protection for Exchange than protecting mail and mail servers. In this free Web seminar, you'll learn some methods for anticipating, avoiding, and overcoming technical problems that can affect your Exchange environment, including corruption or errors in Active Directory, DNS problems, configuration errors, service pack installation, and more. Register now!
http://www.windowsitpro.com/seminars/ExchangeInfrastructure/index.cfm?code=0427emailannc

Get Ready for SQL Server 2005 Roadshow in a City Near You

Get the facts about migrating to SQL Server 2005. SQL Server experts will present real-world information about administration, development, and business intelligence to help you implement a best-practices migration to SQL Server 2005 and improve your database computing environment. Attend and receive a 1-year membership to PASS and 1-year subscription to SQL Server Magazine. Register now!
http://www.windowsitpro.com/roadshows/sqlserverusa/index.cfm?code=0425emailanncs

Ensure SQL Server High Availability

In this free Web seminar, discover how to maintain business continuity of your IT systems during routine maintenance and unplanned disasters. Learn critical factors for establishing a secure and highly available environment for SQL Server including overcoming the technology barriers that affect SQL Server high availability and Microsoft's out-of-the-box high-availability technologies such as clustering, log shipping, and replication. Register now!
http://www.windowsitpro.com/seminars/SQLHighAvailability/index.cfm?code=0427emailannc

Configuring Blade Servers for Your Application Needs

Blade servers pack a lot of function into a small space, conserve power, and are flexible. In this free, on-demand Web seminar, industry guru David Chernicoff details the best use of 1P, 2P, and 4P configurations using single and multiple enclosures; integrating with NAS and SAN; and managing the entire enterprise from a single console. Register now and take advantage of blade servers' power and flexibility.
http://www.windowsitpro.com/seminars/bladeservers2/index.cfm?code=0427emailannc

IM Security Webcast: Real Solutions for Real-time Threats

Join IMlogic and Sybari Software to learn about the top IM threats targeting business today - and how to address these security risks with real-time threat detection technologies and compliance efforts. Register to view the recorded Webcast at
http://www.sybari.com/imwebcast

==== Featured White Paper ====

(from Windows IT Pro and its partners)

Get Rapid and Reliable Data and System Recovery

Even under the best circumstances, performing a bare metal recovery from tape is tedious and unreliable. In this free white paper, learn how you can achieve unprecedented speed and reliability in recovering systems and data.
http://www.windowsitpro.com/whitepapers/symantec/livestaterecovery/index.cfm?code=0427emailannc

==== 2. Peer to Peer ====

Outlook Tip: Outlook Fixes in Office 2003 SP1

by Sue Mosher, [email protected]

Q: Does Microsoft Office 2003 Service Pack 1 (SP1) include any security or performance improvements for Outlook 2003?

Find the answer (and links to more great tips) at

http://www.windowsitpro.com/article/articleid/43904/43904.html?ad=1

==== Hot Release ====

Best Practices for Establishing and Enforcing a Security Policy in Your Business

With all the viruses, Trojans, spyware, malware, and malicious attacks out there, is your company as prepared as it can be to fend off these threats? This white paper will provide you with detailed information for establishing and enforcing a security policy so that you have a safety net to fall back on and can ensure that you're making the right decisions at a demanding time. Download this free white paper now!
http://www.windowsitpro.com/whitepapers/microsoft/bestpractices/index.cfm?e&ohot_429

==== Announcements ====

(from Windows IT Pro and its partners)

Check Out the New Windows IT Security Newsletter!

Security Administrator is now Windows IT Security. We've expanded our content to include even more fundamentals on building and maintaining a secure enterprise. Each issue also features product coverage of the best security tools available and expert advice on the best way to implement various security components. Plus, paid subscribers get online access to our entire security article database! Click here to try a sample issue today:
http://www.secadministrator.com/rd.cfm?code=fseu2554up

Microsoft ASP.NET Connections: Win a Harley Motorcycle

Microsoft ASP.NET Connections + Visual Studio Connections + SQL Server Magazine Connections equals the largest gathering of Microsoft product architects and independent technology gurus. Get three conferences for the price of one! Attendees will have a chance to win a new Harley-Davidson motorcycle and save hours of trial and error. Register today.
http://www.devconnections.com

==== 3. New and Improved ====

by Angie Brew, [email protected]

Convert Outlook Messages

ProcessText Group released ABC Amber Outlook Converter 2.2, a utility that merges multiple email messages and converts them to PDF, HTML, or other document formats. ABC Amber Outlook Converter can convert a single email message or merge and convert multiple email messages. You can also use the product to migrate all existing messages from your current email client to Outlook. ABC Amber Outlook Converter 2.2 costs $19.95 for one user license. Contact ProcessText Group at [email protected].
http://www.processtext.com

==== Sponsored Links ====

Quest Software

Heading to Exchange from Notes or GroupWise? Get Expert Help!
http://ad.doubleclick.net/clk;14771969;8214395;x?http://wm.quest.com/WITPUpdateNotesMigratorforExchange32005

Best Practices for Establishing and Enforcing a Security Policy in Your Business

Is your company prepared to fend off threats? Download this free white paper!
http://ad.doubleclick.net/clk;15940855;8214395;q?http://www.windowsitpro.com/whitepapers/microsoft/bestpractices/index.cfm

=========

~~~~ Contact Us ~~~~

About the newsletter -- [email protected]
About technical questions -- http://www.windowsitpro.com/forums
About product news -- [email protected]
About your subscription -- [email protected]
About sponsoring UPDATE -- [email protected] >

===============

This email newsletter is brought to you by Exchange & Outlook Administrator, the leading publication for IT professionals managing, securing, optimizing, and migrating Exchange and Outlook. Subscribe today!

http://www.exchangeadmin.com/rd.cfm?code=00ep234xeb

Manage Your Account

You are subscribed as #EmailAddr#.

You received this email message because you subscribed to this newsletter on our Web site. To unsubscribe, click here:

http://www.windowsitpro.com/email/index.cfm?action=QuickUnsub&NewsletterID=3&email=#emailaddr#

View the Windows IT Pro Privacy policy at

http://www.windowsitpro.com/AboutUs/Index.cfm?action=privacy

Windows IT Pro a division of Penton Media Inc.
221 East 29th Street, Loveland, CO 80538,
Attention: Customer Service Department
Copyright 2005, Penton Media, Inc. All Rights Reserved.

Hide comments

Comments

  • Allowed HTML tags: <em> <strong> <blockquote> <br> <p>

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
Publish