The Artima Developer Community
Sponsored Link

.NET Buzz Forum
Minimize Outlook to notification area

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Merill Fernando

Posts: 589
Nickname: merill
Registered: Sep, 2003

Merill Fernando is an MCSD in .NET and a Microsoft Certfied Trainer
Minimize Outlook to notification area Posted: Jan 8, 2004 6:46 AM
Reply to this message Reply

This post originated from an RSS feed registered with .NET Buzz by Merill Fernando.
Original Post: Minimize Outlook to notification area
Feed Title: Merill Fernando's Blog
Feed URL: http://www.merill.net/blogxbrowsing.asmx/GetRss?
Feed Description: Merill is a Software Architect at Business Technology Alliance. Merilll is an MCSD in .NET and a Microsoft Certfied Trainer. In this feed he will be regularly posting on the challenges faced when migrating from a Microsoft DNA architecture to Microsoft .NET
Latest .NET Buzz Posts
Latest .NET Buzz Posts by Merill Fernando
Latest Posts From Merill Fernando's Blog

Advertisement

Outlook 2003 has an option that allows it's window to be minimized to the system notification area, near the clock.  You can also have Outlook 2002 do the same thing, with some registry hacking.

For OL2003, the option can be found by right-clicking the Outlook icon in the notification area.  Choose the “Hide when minimized“ option on the menu.

For OL2002, there is no user interface available to turn on the option.  By modifying the registry, you can control the behavor.

The registry path is:

HKEY_CURRENT_USER\Software\Microsoft\Office\10.0\Outlook\Preferences

The registry key is called “MinToTray“ and is a DWORD value.  If the key doesn't exist, use RegEdit to create it.  When set to a non-zero value, typically 1, the feature is turned on.  Setting it to zero turns the feature off.

If you have Windows XP or later, copy the following command and paste it into Run dialog:

reg add HKCU\Software\Microsoft\Office\10.0\Outlook\Preferences /v MinToTray /t REG_DWORD /d 0x01

The REG.EXE program is included with Windows XP, and I believe was available for earlier versions as part of the Resource Kit.  It's a very handy program.

After making the change, you'll need to restart Outlook 2002 for it to take effect.

FYI, in case you're wondering, OL2003 uses the same key name for it's option, so you can use the registry to turn it on or off as well.  However, change the registry path to reflect “11.0” instead of “10.0”.

Can anyone try this on OL2000 and let me know if it works there as well?  The path for that would be “9.0”.  Thus:

Outlook 2000 (unverified):

reg add HKCU\Software\Microsoft\Office\9.0\Outlook\Preferences /v MinToTray /t REG_DWORD /d 0x01

Outlook 2002:

reg add HKCU\Software\Microsoft\Office\10.0\Outlook\Preferences /v MinToTray /t REG_DWORD /d 0x01

Outlook 2003:

reg add HKCU\Software\Microsoft\Office\11.0\Outlook\Preferences /v MinToTray /t REG_DWORD /d 0x01


[Weblogs @ ASP.NET]

Read: Minimize Outlook to notification area

Topic: Understanding Open Source Previous Topic   Next Topic Topic: HTTP Compression Explored

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use