<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">Microsoft Office Outlook Team Blog</title><subtitle type="html" /><id>http://blogs.msdn.com/outlook/atom.xml</id><link rel="alternate" type="text/html" href="http://blogs.msdn.com/outlook/default.aspx" /><link rel="self" type="application/atom+xml" href="http://blogs.msdn.com/outlook/atom.xml" /><generator uri="http://communityserver.org" version="2.1.61025.2">Community Server</generator><updated>2009-07-23T22:04:00Z</updated><entry><title>Developing a provider for the Outlook Social Connector</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/outlook/archive/2009/11/19/developing-a-provider-for-the-outlook-social-connector.aspx" /><id>http://blogs.msdn.com/outlook/archive/2009/11/19/developing-a-provider-for-the-outlook-social-connector.aspx</id><published>2009-11-19T22:49:00Z</published><updated>2009-11-19T22:49:00Z</updated><content type="html">&lt;P&gt;I’m happy to announce that a new member has joined the Outlook platform family. The new arrival has a long and formal name known as Microsoft Outlook Social Connector Provider Extensibility, but the name shouldn’t stop you from getting acquainted with this exciting new extensibility feature for Outlook 2010! &lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;What is an Outlook Social Connector (OSC) provider? &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;The Microsoft Outlook Social Connector is an add-in that surfaces social network data including friends, profiles, activities, and status information from social networks in Microsoft Outlook. The user interface of the OSC is shown below:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/DevelopingaproviderfortheOutlookSocialCo_D034/clip_image002_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/DevelopingaproviderfortheOutlookSocialCo_D034/clip_image002_2.jpg"&gt;&lt;IMG style="BORDER-RIGHT-WIDTH: 0px; DISPLAY: block; FLOAT: none; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; MARGIN-LEFT: auto; BORDER-LEFT-WIDTH: 0px; MARGIN-RIGHT: auto" title="outlook social connector screenshot" border=0 alt="outlook social connector screenshot" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/DevelopingaproviderfortheOutlookSocialCo_D034/clip_image002_thumb.jpg" width=576 height=379 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/DevelopingaproviderfortheOutlookSocialCo_D034/clip_image002_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The OSC obtains social network data using an OSC provider, which provides the abstraction layer between the OSC and the APIs offered by social networks. &lt;/P&gt;
&lt;P&gt;If the provider implements the required OSC provider extensibility interfaces and is registered with the OSC, the data from the social network becomes available to Outlook so that an end user can view social data in the context of the Outlook user interface. OSC providers can be developed by third parties or individual social networks that want to expose their social data in Outlook.&lt;STRONG&gt; &lt;/STRONG&gt;Think of an OSC provider as a translation layer between Outlook and your favorite social network. Another great scenario for corporate customers is to create a provider that connects to a in-house business application, and surfaces business information about people directly inside of Outlook. The provider extensibility stack is represented by the following diagram:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/DevelopingaproviderfortheOutlookSocialCo_D034/clip_image004_2.gif" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/DevelopingaproviderfortheOutlookSocialCo_D034/clip_image004_2.gif"&gt;&lt;IMG style="BORDER-RIGHT-WIDTH: 0px; DISPLAY: block; FLOAT: none; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; MARGIN-LEFT: auto; BORDER-LEFT-WIDTH: 0px; MARGIN-RIGHT: auto" title="diagram representing outlook social connectorprovider extensibility stack" border=0 alt="diagram representing outlook social connectorprovider extensibility stack" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/DevelopingaproviderfortheOutlookSocialCo_D034/clip_image004_thumb.gif" width=576 height=354 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/DevelopingaproviderfortheOutlookSocialCo_D034/clip_image004_thumb.gif"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;How do I develop an OSC provider?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;You can develop an OSC provider using the development tool of your choice. When you develop an OSC provider, you are not writing MAPI or Outlook Object Model code. The OSC core engine handles writing activity or contact information to the user’s default store. Your OSC provider simply hands back XML to the OSC core engine when methods are called on the required interfaces. The XML should conform to the OSC schema defined by OutlookSocialConnector.xsd. Each OSC provider is built on a set of required interfaces that must be implemented by your provider code. The interface contract is defined by a type library installed with the OSC, socialprovider.dll. The documentation for the required interfaces is available in the following MSDN technical article:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/ee829696(office.14).aspx" mce_href="http://msdn.microsoft.com/en-us/library/ee829696(office.14).aspx"&gt;http://msdn.microsoft.com/en-us/library/ee829696(office.14).aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;An OSC provider can be written using managed languages such as Microsoft Visual C# or Microsoft Visual Basic, or unmanaged languages such as Microsoft Visual C++. Any tool that can create a COM-visible DLL component can be used to develop an OSC provider. The decision to use a managed or unmanaged language to develop a provider should take into account the download size and dependencies of the provider installation package.&lt;/P&gt;
&lt;P&gt;An OSC provider must be COM-visible as defined by the following:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;After installation, an OSC provider must be registered using COM self-registration or regsvr32. &lt;/LI&gt;
&lt;LI&gt;COM registration of an OSC provider DLL registers the provider under HKCU or HKLM. &lt;/LI&gt;
&lt;LI&gt;A provider’s ProgID is registered under HKCU\Software\Microsoft\Office\Outlook\SocialConnector\SocialProviders &lt;/LI&gt;
&lt;LI&gt;An OSC provider developed in a managed language (that is, a managed OSC provider) is COM-visible. &lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;B&gt;Is sample code available?&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;All developers love sample code that helps to unleash their creativity, so of course sample code is available! To get started, take a look at the sample code available on &lt;A href="http://code.msdn.microsoft.com/odcOL14OSCProvider" mce_href="http://code.msdn.microsoft.com/odcOL14OSCProvider"&gt;http://code.msdn.microsoft.com/odcOL14OSCProvider&lt;/A&gt;:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;TestProvider, a Visual C# sample provider that implements all interface members required for the Beta version of the OSC &lt;/LI&gt;
&lt;LI&gt;The OSC schema, OutlookSocialProvider.xsd &lt;/LI&gt;
&lt;LI&gt;Provider templates that you can use to develop your own provider in the following languages: 
&lt;UL&gt;
&lt;LI&gt;Visual Basic .NET &lt;/LI&gt;
&lt;LI&gt;C# &lt;/LI&gt;
&lt;LI&gt;C++ &lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;B&gt;How do I learn more? &lt;/B&gt;&lt;/P&gt;
&lt;P&gt;To learn more about OSC provider extensibility, read the technical article on MSDN and download the sample provider and provider templates. Be aware that the OSC interfaces and members might change between the OSC Beta and the final release of Outlook 2010. &lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;If you represent a social network or are interested in developing an OSC provider for your favorite social network or line of business application, contact us at &lt;A href="mailto:oscprex@microsoft.com" mce_href="mailto:oscprex@microsoft.com"&gt;oscprex@microsoft.com&lt;/A&gt; and we will consider enrolling you in the OSC provider extensibility preview program. &lt;/P&gt;
&lt;P&gt;Randy Byrne &lt;BR&gt;Outlook Program Manager&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9925848" width="1" height="1"&gt;</content><author><name>outblog</name><uri>http://blogs.msdn.com/members/outblog.aspx</uri></author></entry><entry><title>Announcing the Outlook Social Connector</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/outlook/archive/2009/11/18/announcing-the-outlook-social-connector.aspx" /><id>http://blogs.msdn.com/outlook/archive/2009/11/18/announcing-the-outlook-social-connector.aspx</id><published>2009-11-18T17:33:00Z</published><updated>2009-11-18T17:33:00Z</updated><content type="html">&lt;P&gt;&lt;B&gt;We are excited to announce the Outlook Social Connector! &lt;/B&gt;&lt;/P&gt;
&lt;P&gt;The Outlook Social Connector is a set of new features to help keep track of your friends and colleagues while enabling you to grow your professional network. The Outlook Social Connector is available now as part of the Microsoft Office 2010 Beta.&lt;/P&gt;
&lt;P&gt;&lt;IFRAME style="BORDER-RIGHT-WIDTH: 0px; DISPLAY: block; FLOAT: none; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; MARGIN-LEFT: auto; BORDER-LEFT-WIDTH: 0px; MARGIN-RIGHT: auto" height=225 src="http://www.office2010themovie.com/embedded.aspx?videoId=baade234-178e-4a7a-3231-fdda4306ead1" frameBorder=0 width=400 scrolling=no mce_src="http://www.office2010themovie.com/embedded.aspx?videoId=baade234-178e-4a7a-3231-fdda4306ead1"&gt;&lt;/IFRAME&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;The Outlook Social Connector (OSC) brings social views of your colleagues and friends right to your Inbox. &lt;/B&gt;As you read your e-mail messages, glance down at the new People Pane to see the picture, name, and title of the sender. A rich, aggregated collection of information about the sender is included. &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image002_2.gif" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image002_2.gif"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: block; FLOAT: none; MARGIN-LEFT: auto; BORDER-TOP: 0px; MARGIN-RIGHT: auto; BORDER-RIGHT: 0px" title="Outlook 2010 Beta and Outlook Social Connector Image" border=0 alt="Outlook 2010 Beta and Outlook Social Connector Image" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image002_thumb.gif" width=576 height=365 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image002_thumb.gif"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The OSC presents useful information including:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;B&gt;Communication history&lt;/B&gt;&lt;B&gt; &lt;/B&gt;&lt;B&gt;&lt;/B&gt;Your mailbox is searched and the recent messages you’ve exchanged with that person appear. Can’t remember the last time you e-mailed this person? A quick look at the OSC reveals the last time you received an email from them, and one click opens up the message. &lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Meetings&lt;/B&gt; When is the next scheduled meeting with this person? The OSC shows upcoming appointments that include you and the message sender. &lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Attachments &lt;/B&gt;Can’t find the attachment that the person is referring to in a message? With the OSC you can quickly review attachments that you and the sender have exchanged. One-click access quickly opens the attachment or you can see the message that it is attached to. &lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Activity feeds&lt;/B&gt;&lt;B&gt; &lt;/B&gt;&lt;B&gt;&lt;/B&gt;Stay on top of activities involving your colleagues and friends in real time. The OSC connects to business and consumer social networks. &lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Did you say activity feeds?&lt;/B&gt; Yes we did! The OSC makes Outlook 2010 a social networking tool by connecting to the new social experiences in &lt;B&gt;SharePoint 2010&lt;/B&gt;. That connection allows the OSC to download activity feeds for colleagues and display them inside the new People Pane: &lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image004_2.gif" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image004_2.gif"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: block; FLOAT: none; MARGIN-LEFT: auto; BORDER-TOP: 0px; MARGIN-RIGHT: auto; BORDER-RIGHT: 0px" title="Microsoft SharePoint 2010 and Outlook Social Connector Image" border=0 alt="Microsoft SharePoint 2010 and Outlook Social Connector Image" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image004_thumb.gif" width=475 height=244 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image004_thumb.gif"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;You’ll see rich information about your colleagues’ activity such as profile updates to their MySite, documents and websites they tag, and changes to their personal status message.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Know who you’re meeting with. &lt;/B&gt;Use the OSC’s Gallery View to see all of the people you’ll be interacting with in an upcoming meeting:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image006_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image006_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: block; FLOAT: none; MARGIN-LEFT: auto; BORDER-TOP: 0px; MARGIN-RIGHT: auto; BORDER-RIGHT: 0px" title="Outlook Social Connector Gallery View Image" border=0 alt="Outlook Social Connector Gallery View Image" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image006_thumb.jpg" width=390 height=125 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image006_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;One click on any of those pictures puts you into the single-person view, providing easy access to their activities and communication history. You can easily switch in and out of Gallery View by clicking on the little double-arrow icon in the upper-right corner of the People Pane. &lt;B&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Build your network.&lt;/B&gt; The OSC makes it easy to grow your network; by clicking the ‘+’ symbol underneath a person’s picture, you can send a request to be their colleague on any of the networks you are connected to. The OSC also automatically synchronizes your colleagues from each of your connected networks and saves them as contacts in Outlook. This allows you to easily send messages, call, or synchronize contacts just as you would any other Outlook contact.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Open Connectivity&lt;/B&gt;. The OSC in Outlook 2010 will connect by default to the new social networking experiences in SharePoint 2010. We are happy to announce that connectivity to any network, including SharePoint, is built using our public ‘provider’ extensibility platform:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image008_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image008_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: block; FLOAT: none; MARGIN-LEFT: auto; BORDER-TOP: 0px; MARGIN-RIGHT: auto; BORDER-RIGHT: 0px" title="Provider extensibility platform diagram" border=0 alt="Provider extensibility platform diagram" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image008_thumb.jpg" width=590 height=363 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image008_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;This means that &lt;I&gt;anyone&lt;/I&gt; can build a provider to connect the OSC to a social network, their company’s line-of-business applications, or literally any system that can produce streams of activity about its users. The SDK will be publically available tomorrow on MSDN, and my colleague Randy Byrne will be making a more detailed post on provider development with links to the SDK at that time. We are excited to make this platform public and are looking forward to feedback as our customers begin developing providers for their networks and business solutions.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Go Live! &lt;/B&gt;Next year we will be releasing a provider for Windows Live, enabling you to connect to your friends and colleagues on Windows Live right inside of Outlook:&lt;B&gt; &lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/image_2.png" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/image_2.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: block; FLOAT: none; MARGIN-LEFT: auto; BORDER-TOP: 0px; MARGIN-RIGHT: auto; BORDER-RIGHT: 0px" title="Windows Live and Outlook Social Connector Image" border=0 alt="Windows Live and Outlook Social Connector Image" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/image_thumb.png" width=501 height=172 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/image_thumb.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;You see pictures, profile updates, and personal status messages of your friends from Windows Live Messenger. See their Office application and document activity through SkyDrive integration, and the aggregation of dozens of other third-party sites from around the world. &lt;/P&gt;
&lt;P&gt;&lt;B&gt;Are you working with other social networks?&lt;/B&gt; You bet! Outlook has partnered with &lt;A href="http://www.linkedin.com/" mce_href="http://www.linkedin.com"&gt;&lt;B&gt;LinkedIn&lt;/B&gt;&lt;/A&gt;, the online professional networking site, to provide an amazing connected experience for our shared customers. The LinkedIn team has built a provider for the OSC using our public SDK, providing you with pictures and activity information for your colleagues directly from their network. Simply click on a message from a co-worker to discover what new connections they’ve made on LinkedIn, or click the LinkedIn badge underneath a photo to jump right to a person’s profile page on the Web. &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image012_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image012_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: block; FLOAT: none; MARGIN-LEFT: auto; BORDER-TOP: 0px; MARGIN-RIGHT: auto; BORDER-RIGHT: 0px" title="LinkedIn and Outlook Social Connector Image" border=0 alt="LinkedIn and Outlook Social Connector Image" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image012_thumb.jpg" width=615 height=241 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingtheOutlookSocialConnector_8592/clip_image012_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Keep watching the Outlook Team Blog for an announcement about when the LinkedIn provider is available to Outlook 2010 users. You can learn more about the LinkedIn provider &lt;A href="http://blog.linkedin.com/2009/11/18/linkedin-microsoft-outlook-connector" mce_href="http://blog.linkedin.com/2009/11/18/linkedin-microsoft-outlook-connector "&gt;here&lt;/A&gt; on their website. &lt;/P&gt;
&lt;P&gt;&lt;B&gt;Customize it!&lt;/B&gt; Does your company use a large system for managing information about its users or customers? By building an OSC provider to connect to your ERP or CRM solution, you can easily sync down people-related information into Outlook and see it in the People Pane when you’re reading your mail. Randy will have more information in his post about how to build a custom provider.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Let’s recap!&lt;/B&gt; The Outlook Social Connector, new to the Outlook 2010 Beta, provides you with:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;B&gt;The People Pane &lt;/B&gt;A name, picture, and title for your colleagues whenever reading a message from them. &lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Rich history&lt;/B&gt; See a rich communications history for each person that sends you messages with one-click access to the most recent messages and attachments. &lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Activities&lt;/B&gt; Download and see real-time activity for your colleagues from business and social networks. &lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Get friendly &lt;/B&gt;Request someone as a colleague or friend with one click. Synchronize those colleagues with Outlook and keep them up-to-date as their information changes. &lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;SharePoint 2010&lt;/B&gt; Connect to the new MySite social networking experience right out of the box with the OSC &amp;amp; SharePoint 2010. &lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Extensible &lt;/B&gt;A public SDK allows anyone to build a connection to business or consumer social networks.&lt;B&gt;&lt;/B&gt; &lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;On behalf of the entire Outlook Social Connector feature team, thanks for trying the Outlook 2010 Beta. Have fun using the OSC!&lt;/P&gt;
&lt;P&gt;Michael Affronti &lt;BR&gt;Social Networking Addict &amp;amp; Outlook Program Manager&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9924394" width="1" height="1"&gt;</content><author><name>outblog</name><uri>http://blogs.msdn.com/members/outblog.aspx</uri></author></entry><entry><title>Announcing Microsoft Office 2010 Beta</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/outlook/archive/2009/11/18/announcing-microsoft-office-2010-beta.aspx" /><id>http://blogs.msdn.com/outlook/archive/2009/11/18/announcing-microsoft-office-2010-beta.aspx</id><published>2009-11-18T17:23:00Z</published><updated>2009-11-18T17:23:00Z</updated><content type="html">&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingMicrosoftOffice2010Beta_8411/Outlook2010_256_2.png" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingMicrosoftOffice2010Beta_8411/Outlook2010_256_2.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; MARGIN-LEFT: 0px; BORDER-TOP: 0px; MARGIN-RIGHT: 0px; BORDER-RIGHT: 0px" title="Outlook 2010 Logo" border=0 alt="Outlook 2010 Logo" align=left src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingMicrosoftOffice2010Beta_8411/Outlook2010_256_thumb.png" width=150 height=150 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/AnnouncingMicrosoftOffice2010Beta_8411/Outlook2010_256_thumb.png"&gt;&lt;/A&gt; Today, we are thrilled to announce the release of the public Beta of Microsoft Office 2010! Betas for Office 2010, as well as SharePoint Server 2010, Visio 2010, and Project 2010 are available for download at &lt;A href="http://www.microsoft.com/2010" mce_href="http://www.microsoft.com/2010"&gt;www.microsoft.com/2010&lt;/A&gt;. This is an exciting and significant milestone for both the Office and Outlook teams, because it means that for the first time, &lt;B&gt;&lt;I&gt;anyone can download Office 2010&lt;/I&gt;&lt;/B&gt;! You can &lt;A href="http://blogs.technet.com/office2010/archive/2009/11/16/announcing-office-2010-beta-availability.aspx" mce_href="http://blogs.technet.com/office2010/archive/2009/11/16/announcing-office-2010-beta-availability.aspx"&gt;learn more about the complete release of the Office 2010 beta on our Office blog&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;The Outlook team is particularly excited for a number of reasons – the beta release represents the latest and best version of Outlook 2010 we’ve been working on. Features that we’ve discussed on this blog in recent months – &lt;A href="http://blogs.msdn.com/outlook/archive/2009/07/20/what-s-up-with-my-inbox-in-outlook-2010.aspx" mce_href="http://blogs.msdn.com/outlook/archive/2009/07/20/what-s-up-with-my-inbox-in-outlook-2010.aspx"&gt;Conversation Arrangement&lt;/A&gt;, &lt;A href="http://blogs.msdn.com/outlook/archive/2009/07/27/introducing-quick-steps.aspx" mce_href="http://blogs.msdn.com/outlook/archive/2009/07/27/introducing-quick-steps.aspx"&gt;Quick Steps&lt;/A&gt;, &lt;A href="http://blogs.msdn.com/outlook/archive/2009/08/12/introducing-mailtips.aspx" mce_href="http://blogs.msdn.com/outlook/archive/2009/08/12/introducing-mailtips.aspx"&gt;Mail Tips&lt;/A&gt;, &lt;A href="http://blogs.msdn.com/outlook/archive/2009/08/20/meeting-requests-with-a-preview-of-your-calendar.aspx" mce_href="http://blogs.msdn.com/outlook/archive/2009/08/20/meeting-requests-with-a-preview-of-your-calendar.aspx"&gt;Calendar Preview&lt;/A&gt;, &lt;A href="http://blogs.msdn.com/outlook/archive/2009/08/25/multiple-exchange-accounts-in-outlook-2010.aspx" mce_href="http://blogs.msdn.com/outlook/archive/2009/08/25/multiple-exchange-accounts-in-outlook-2010.aspx"&gt;Multiple Exchange Accounts&lt;/A&gt; and more – are all now publicly available and accessible through the beta for anyone to try today. In addition to the features we’ve already discussed here, we’ve invested a great deal between the Technical Preview release and today’s beta around the u&lt;A title=_GoBack name=_GoBack&gt;&lt;/A&gt;ser interface, performance, and overall fit and finish. Finally, we are introducing a great new feature today, the Outlook Social Connector.&lt;/P&gt;
&lt;P&gt;In addition to the beta release, the Office team has also done a great deal of work to improve our online content and experience, and you can see the latest information on Office 2010 and more by visiting the &lt;A href="http://www.office.com/beta/" mce_href="http://www.office.com/beta/"&gt;newly designed Office.com&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;The beta is a significant milestone in the development of Office and Outlook 2010, but we’re not done yet! Our final and official release of Office 2010 is still slated for the first half of 2010, and I encourage you to keep in touch with us on this blog to learn more as we enter the final phases of our development efforts to release Office 2010.&lt;/P&gt;
&lt;P&gt;Finally, I’d like to personally thank everyone who has been involved with our efforts to release the beta today – in addition to the Outlook engineering team, there have been countless customers and partners who have given us invaluable feedback along the way to help make this beta what it is today. I know I speak for all of them when I say &lt;A href="http://www.microsoft.com/2010/" mce_href="http://www.microsoft.com/2010/"&gt;go download the beta of Office 2010&lt;/A&gt; and enjoy!&lt;/P&gt;
&lt;P&gt;Dev Balasubramanian &lt;BR&gt;Outlook Product Manager&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9924386" width="1" height="1"&gt;</content><author><name>outblog</name><uri>http://blogs.msdn.com/members/outblog.aspx</uri></author></entry><entry><title>Best Practices for Outlook 2007</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/outlook/archive/2009/11/12/best-practices-for-outlook-2007.aspx" /><id>http://blogs.msdn.com/outlook/archive/2009/11/12/best-practices-for-outlook-2007.aspx</id><published>2009-11-12T02:51:00Z</published><updated>2009-11-12T02:51:00Z</updated><content type="html">&lt;P&gt;On the Outlook team, we are frequently asked: “what is the ‘right way’ to use Outlook?” Sure enough, there is no “right way” to work in Outlook—but, as the product team, we did design it with certain best practices in mind. Specifically, there are some best practices that make you more efficient at getting your job done while using Outlook, including:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;how to &lt;A href="http://office.microsoft.com/search/redir.aspx?assetid=HA103775181033&amp;amp;QueryID=yQPG3so2g&amp;amp;respos=8&amp;amp;rt=2&amp;amp;pid=CH102499821033" mce_href="http://office.microsoft.com/search/redir.aspx?assetid=HA103775181033&amp;amp;QueryID=yQPG3so2g&amp;amp;respos=8&amp;amp;rt=2&amp;amp;pid=CH102499821033"&gt;set up Outlook&lt;/A&gt; (layout, rules, folders, etc.), &lt;/LI&gt;
&lt;LI&gt;how to best process e-mail messages to “&lt;A href="http://office.microsoft.com/en-us/outlook/HA103775191033.aspx?pid=CH100622121033" mce_href="http://office.microsoft.com/en-us/outlook/HA103775191033.aspx?pid=CH100622121033"&gt;tame your Inbox&lt;/A&gt;” &lt;/LI&gt;
&lt;LI&gt;the importance of doing a &lt;A href="http://office.microsoft.com/search/redir.aspx?assetid=HA103775201033&amp;amp;QueryID=yQPG3so2g&amp;amp;respos=5&amp;amp;rt=2&amp;amp;pid=CH102499821033" mce_href="http://office.microsoft.com/search/redir.aspx?assetid=HA103775201033&amp;amp;QueryID=yQPG3so2g&amp;amp;respos=5&amp;amp;rt=2&amp;amp;pid=CH102499821033"&gt;daily review&lt;/A&gt; of your calendar and tasks &lt;/LI&gt;
&lt;LI&gt;how best to &lt;A href="http://office.microsoft.com/search/redir.aspx?assetid=HA103775211033&amp;amp;QueryID=yQPG3so2g&amp;amp;respos=2&amp;amp;rt=2&amp;amp;pid=CH100788811033" mce_href="http://office.microsoft.com/search/redir.aspx?assetid=HA103775211033&amp;amp;QueryID=yQPG3so2g&amp;amp;respos=2&amp;amp;rt=2&amp;amp;pid=CH100788811033"&gt;get work done&lt;/A&gt; in Outlook &lt;/LI&gt;
&lt;LI&gt;doing &lt;A href="http://office.microsoft.com/search/redir.aspx?assetid=HA103874941033&amp;amp;QueryID=yQPG3so2g&amp;amp;respos=1&amp;amp;rt=2&amp;amp;pid=CH100622121033" mce_href="http://office.microsoft.com/search/redir.aspx?assetid=HA103874941033&amp;amp;QueryID=yQPG3so2g&amp;amp;respos=1&amp;amp;rt=2&amp;amp;pid=CH100622121033"&gt;effective searches&lt;/A&gt; &lt;/LI&gt;
&lt;LI&gt;the do’s and don’ts of &lt;A href="http://office.microsoft.com/search/redir.aspx?assetid=HA103874971033&amp;amp;QueryID=yQPG3so2g&amp;amp;respos=6&amp;amp;rt=2&amp;amp;pid=CH100776981033" mce_href="http://office.microsoft.com/search/redir.aspx?assetid=HA103874971033&amp;amp;QueryID=yQPG3so2g&amp;amp;respos=6&amp;amp;rt=2&amp;amp;pid=CH100776981033"&gt;writing great messages&lt;/A&gt; &lt;/LI&gt;
&lt;LI&gt;how to best manage your &lt;A href="http://office.microsoft.com/search/redir.aspx?assetid=HA103874981033&amp;amp;QueryID=yQPG3so2g&amp;amp;respos=7&amp;amp;rt=2&amp;amp;pid=CH101032731033" mce_href="http://office.microsoft.com/search/redir.aspx?assetid=HA103874981033&amp;amp;QueryID=yQPG3so2g&amp;amp;respos=7&amp;amp;rt=2&amp;amp;pid=CH101032731033"&gt;calendar and set up meetings&lt;/A&gt; &lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;The end result is a new &lt;A href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx" mce_href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx"&gt;article&lt;/A&gt; on Microsoft Office Online tailored towards end users for how to best use Outlook. (There is one long article that contains the full set of best practices and also a series of shorter articles focused on specific areas.) The last section of the article includes an &lt;A href="http://office.microsoft.com/en-us/outlook/HA103874831033.aspx" mce_href="http://office.microsoft.com/en-us/outlook/HA103874831033.aspx"&gt;FAQ&lt;/A&gt; to help explain some of the rationale behind the suggestions, along with help on how to migrate to this system from other ways of working.&lt;/P&gt;
&lt;P&gt;The starting point of the entire document is based on some basic principles of good time management. Here is an excerpt (which can also be found in this &lt;A href="http://office.microsoft.com/en-us/outlook/HA103775121033.aspx?pid=CH102499821033" mce_href="http://office.microsoft.com/en-us/outlook/HA103775121033.aspx?pid=CH102499821033"&gt;article&lt;/A&gt;):&lt;/P&gt;
&lt;DIV align=left&gt;
&lt;TABLE border=0 cellSpacing=0 cellPadding=5 width=609 align=center&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=607&gt;
&lt;P&gt;&lt;B&gt;&lt;EM&gt;Basic principles of good time management&lt;/EM&gt;&lt;/B&gt; &lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Outlook 2007 is a tool to help you manage your e-mail, calendar, contacts, and tasks. As such, it is at the center of not only your communications but also your time-management. To get the most out of Outlook 2007, we suggest a few basic principles: &lt;/EM&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;EM&gt;&lt;B&gt;Reduce the number of places you read e-mail&lt;/B&gt;&amp;nbsp;&amp;nbsp; Filter all of the messages you need to read into one place — your Inbox — using a series of &lt;/EM&gt;&lt;A href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#6" mce_href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#6"&gt;&lt;EM&gt;rules&lt;/EM&gt;&lt;/A&gt;&lt;EM&gt;. &lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;EM&gt;&lt;B&gt;Let some e-mail pass by&lt;/B&gt;&amp;nbsp; Use &lt;/EM&gt;&lt;A href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#6" mce_href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#6"&gt;&lt;EM&gt;rules&lt;/EM&gt;&lt;/A&gt;&lt;EM&gt; to send e-mail you need to read to your Inbox and then let the rest flow into &lt;/EM&gt;&lt;A href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#5" mce_href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#5"&gt;&lt;EM&gt;distribution list folders&lt;/EM&gt;&lt;/A&gt;&lt;EM&gt;, untouched. You don't need to read every message sent to you. Only the important ones should go to your Inbox. Remaining messages can be useful to keep — in case you get looped in on an issue, for example. &lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;EM&gt;&lt;B&gt;Reduce the number of places where you manually file messages&lt;/B&gt;&amp;nbsp;&amp;nbsp; Reduce the mental tax of &lt;/EM&gt;&lt;A href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#34" mce_href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#34"&gt;&lt;EM&gt;filing&lt;/EM&gt;&lt;/A&gt;&lt;EM&gt; by relying on &lt;/EM&gt;&lt;A href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#16" mce_href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#16"&gt;&lt;EM&gt;search&lt;/EM&gt;&lt;/A&gt;&lt;EM&gt; to locate messages. &lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;EM&gt;&lt;B&gt;Process your e-mail using the 4 Ds&lt;/B&gt;&amp;nbsp;&amp;nbsp; When reading a message, &lt;/EM&gt;&lt;A href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#36" mce_href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#36"&gt;&lt;EM&gt;decide &lt;/EM&gt;&lt;/A&gt;&lt;EM&gt;whether to: &lt;/EM&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;EM&gt;Delete it. &lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;EM&gt;Do it (respond or &lt;/EM&gt;&lt;A href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#34" mce_href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#34"&gt;&lt;EM&gt;file for reference&lt;/EM&gt;&lt;/A&gt;&lt;EM&gt;). &lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;EM&gt;Delegate (forward) it. &lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;EM&gt;Defer it (using &lt;/EM&gt;&lt;A href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#9" mce_href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#9"&gt;&lt;EM&gt;categories&lt;/EM&gt;&lt;/A&gt;&lt;EM&gt; and &lt;A href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx?pid=CL100626971033#13"&gt;flags&lt;/A&gt;&lt;/EM&gt;&lt;EM&gt;&lt;/EM&gt;&lt;EM&gt;) for a second review in your task list. &lt;/EM&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;EM&gt;&lt;B&gt;Reduce your to-do list to one list&lt;/B&gt;&amp;nbsp;&amp;nbsp; Use a single &lt;/EM&gt;&lt;A href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#7" mce_href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#7"&gt;&lt;EM&gt;to-do list&lt;/EM&gt;&lt;/A&gt;&lt;EM&gt; and &lt;/EM&gt;&lt;A href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#18" mce_href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#18"&gt;&lt;EM&gt;calendar &lt;/EM&gt;&lt;/A&gt;&lt;EM&gt;to manage what you need to do. &lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;EM&gt;&lt;B&gt;Work in batches&lt;/B&gt;&amp;nbsp;&amp;nbsp; Use &lt;/EM&gt;&lt;A href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#9" mce_href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#9"&gt;&lt;EM&gt;categories&lt;/EM&gt;&lt;/A&gt;&lt;EM&gt; to help you group similar tasks together. &lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;EM&gt;&lt;B&gt;Use good judgment when sending e-mail&lt;/B&gt;&amp;nbsp;&amp;nbsp; Follow the &lt;/EM&gt;&lt;A href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#17" mce_href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#17"&gt;&lt;EM&gt;dos and don'ts&lt;/EM&gt;&lt;/A&gt;&lt;EM&gt; of writing great e-mail. &lt;/EM&gt;&lt;A href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#15" mce_href="http://office.microsoft.com/en-us/outlook/HA103715211033.aspx#15"&gt;&lt;EM&gt;Review your time and tasks regularly&lt;/EM&gt;&lt;/A&gt;&lt;EM&gt;. &lt;/EM&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;
&lt;P&gt;Even if you don't subscribe to all of the best practices described here, following just a few will improve your experience with Outlook 2007.&lt;/P&gt;
&lt;P&gt;Note for IT admins: the article includes &lt;A href="http://office.microsoft.com/search/redir.aspx?AssetID=XT103888821033&amp;amp;CTT=5&amp;amp;Origin=HA103715211033" mce_href="http://office.microsoft.com/search/redir.aspx?AssetID=XT103888821033&amp;amp;CTT=5&amp;amp;Origin=HA103715211033"&gt;Word&lt;/A&gt; and &lt;A href="http://office.microsoft.com/search/redir.aspx?AssetID=XT103888831033&amp;amp;CTT=5&amp;amp;Origin=HA103715211033" mce_href="http://office.microsoft.com/search/redir.aspx?AssetID=XT103888831033&amp;amp;CTT=5&amp;amp;Origin=HA103715211033"&gt;PDF&lt;/A&gt; versions of the online content which can be adapted to the needs of your customers. For example, if you don’t use SharePoint in your organization, you can remove all references to SharePoint in the Word copy of the document. You can then deploy the customized version.&lt;/P&gt;
&lt;P&gt;Hopefully, you will find these best practices useful, and as always, we appreciate your feedback.&lt;/P&gt;
&lt;P&gt;Enjoy!&lt;/P&gt;
&lt;P&gt;Melissa MacBeth &lt;BR&gt;Outlook Program Manager&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9921135" width="1" height="1"&gt;</content><author><name>outblog</name><uri>http://blogs.msdn.com/members/outblog.aspx</uri></author><category term="time management" scheme="http://blogs.msdn.com/outlook/archive/tags/time+management/default.aspx" /><category term="FAQ" scheme="http://blogs.msdn.com/outlook/archive/tags/FAQ/default.aspx" /><category term="documents" scheme="http://blogs.msdn.com/outlook/archive/tags/documents/default.aspx" /><category term="inbox" scheme="http://blogs.msdn.com/outlook/archive/tags/inbox/default.aspx" /><category term="outlook 2007" scheme="http://blogs.msdn.com/outlook/archive/tags/outlook+2007/default.aspx" /><category term="how-to" scheme="http://blogs.msdn.com/outlook/archive/tags/how-to/default.aspx" /><category term="tips&amp;amp;tricks" scheme="http://blogs.msdn.com/outlook/archive/tags/tips_2600_amp_3B00_tricks/default.aspx" /><category term="triaging mail" scheme="http://blogs.msdn.com/outlook/archive/tags/triaging+mail/default.aspx" /><category term="organize" scheme="http://blogs.msdn.com/outlook/archive/tags/organize/default.aspx" /></entry><entry><title>Exchange 2010</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/outlook/archive/2009/11/11/exchange-2010.aspx" /><id>http://blogs.msdn.com/outlook/archive/2009/11/11/exchange-2010.aspx</id><published>2009-11-11T01:38:00Z</published><updated>2009-11-11T01:38:00Z</updated><content type="html">&lt;P&gt;On behalf of the entire Outlook team, I’m pleased to congratulate the Exchange Server team on the &lt;A href="http://msexchangeteam.com/archive/2009/11/09/453096.aspx" mce_href="http://msexchangeteam.com/archive/2009/11/09/453096.aspx"&gt;global availability of Exchange 2010&lt;/A&gt;!&amp;nbsp; The Exchange team has done a tremendous job designing, developing, and refining their latest release to be the most high quality, efficient and innovative release of Exchange Server to date.&lt;/P&gt;
&lt;P&gt;In the near future, you will be hearing more from us as Microsoft Office 2010 reaches its public Beta, but for now, please take a minute to learn more about the exciting improvements and advances the Exchange team has made with this release. Exchange Server will continue to be the premier messaging platform and partner for Outlook thanks to their work with Exchange 2010.&lt;/P&gt;
&lt;P&gt;-- William Kennedy&lt;/P&gt;
&lt;P&gt;Corporate Vice President&lt;/P&gt;
&lt;P&gt;Office Communications and Forms Team&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.microsoft.com/presspass/events/teched/default.mspx" mce_href="http://www.microsoft.com/presspass/events/teched/default.mspx"&gt;Exchange 2010 Press Coverage&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.microsoft.com/presspass/exec/elop/2009/11-09TechEd.mspx"&gt;Exchange 2010 Keynote by Stephen Elop, President Microsoft Business Division&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.thenewefficiency.com/exchangeconnections" mce_href="http://www.thenewefficiency.com/exchangeconnections"&gt;Exchange 2010 Keynote by Rajesh Jha, Corporate Vice President, Microsoft Exchange&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9920557" width="1" height="1"&gt;</content><author><name>outblog</name><uri>http://blogs.msdn.com/members/outblog.aspx</uri></author><category term="exchange" scheme="http://blogs.msdn.com/outlook/archive/tags/exchange/default.aspx" /></entry><entry><title>Outlook .pst file format and interoperability</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/outlook/archive/2009/10/29/outlook-pst-file-format-and-interoperability.aspx" /><id>http://blogs.msdn.com/outlook/archive/2009/10/29/outlook-pst-file-format-and-interoperability.aspx</id><published>2009-10-29T17:45:00Z</published><updated>2009-10-29T17:45:00Z</updated><content type="html">&lt;P&gt;This week, the Outlook product team hosted a .pst file format interoperability event here on the Microsoft campus in Redmond. As we announced on the &lt;A href="http://blogs.msdn.com/interoperability/archive/2009/10/26/roadmap-for-outlook-personal-folders-pst-documentation.aspx" mce_href="http://blogs.msdn.com/interoperability/archive/2009/10/26/roadmap-for-outlook-personal-folders-pst-documentation.aspx"&gt;Interoperability @ Microsoft blog&lt;/A&gt;, our team plans to release a specification of the .pst file format to the public. This week’s interoperability event is part of a series of steps that we are taking to gather feedback from industry partners and experts on preliminary drafts of the specification. If you are not familiar with the underpinnings of Outlook, .pst files are one type of data file that Outlook uses to save user data such as e-mail messages, contacts, and appointments.&lt;/P&gt;
&lt;P&gt;During the interoperability event, we presented a preliminary specification of the .pst file format to selected industry experts in areas such as antimalware, electronic records management, data archiving, data recovery, and data migration. We collected useful feedback about our documentation roadmap, and the attendees were supportive of the direction and approach we are taking.&lt;/P&gt;
&lt;P&gt;We understand our plan to document the .pst file format might cause some of our customers and partners to wonder about our commitment to MAPI (Messaging API) and the Outlook Object Model as interoperability mechanisms of Outlook. To us, the .pst file format specification doesn’t change the role of MAPI and the Outlook Object Model. While we are pleased to provide another mechanism to access data stored in .pst files, we continue to support MAPI and the Outlook Object Model as key elements of Outlook interoperability and extensibility. We do expect that the release of the .pst file format specification will open up new usage scenarios that were previously difficult to accomplish, especially in multi-platform and server scenarios where MAPI and the Outlook Object Model are not available. &lt;/P&gt;
&lt;P&gt;Since we announced our plan to release the .pst file specification, we have received requests from people who want to participate in the review of early drafts of the specification. If you are interested in actively participating in the review of preliminary drafts of the .pst file format specification, send an email message to &lt;A href="mailto:pstinfo@microsoft.com" mce_href="mailto:pstinfo@microsoft.com"&gt;pstinfo@microsoft.com&lt;/A&gt; and then we will contact you when a preliminary draft of the specification is ready for broader review. If you only are seeking the final version, we anticipate releasing the .pst file format specification in the first half of 2010 under our &lt;A href="http://www.microsoft.com/interop/osp/default.mspx" mce_href="http://www.microsoft.com/interop/osp/default.mspx"&gt;Open Specification Promise&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Daniel Ko &lt;BR&gt;Outlook Development Manager&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9914844" width="1" height="1"&gt;</content><author><name>outblog</name><uri>http://blogs.msdn.com/members/outblog.aspx</uri></author><category term="developer" scheme="http://blogs.msdn.com/outlook/archive/tags/developer/default.aspx" /><category term="object model" scheme="http://blogs.msdn.com/outlook/archive/tags/object+model/default.aspx" /><category term="extensibility" scheme="http://blogs.msdn.com/outlook/archive/tags/extensibility/default.aspx" /><category term="pst" scheme="http://blogs.msdn.com/outlook/archive/tags/pst/default.aspx" /><category term="outlook data file" scheme="http://blogs.msdn.com/outlook/archive/tags/outlook+data+file/default.aspx" /><category term="news" scheme="http://blogs.msdn.com/outlook/archive/tags/news/default.aspx" /></entry><entry><title>Unified Messaging Improvements</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/outlook/archive/2009/10/28/unified-messaging-improvements.aspx" /><id>http://blogs.msdn.com/outlook/archive/2009/10/28/unified-messaging-improvements.aspx</id><published>2009-10-27T23:00:00Z</published><updated>2009-10-27T23:00:00Z</updated><content type="html">&lt;P&gt;Microsoft Office Outlook 2007 delivered the first version of our Unified Messaging (UM) experience from the Microsoft Exchange and Outlook teams. UM enables you to receive voice mails and FAXs in your Outlook Inbox. You can listen to voice mail messages while in Outlook or on your phone.&lt;/P&gt;
&lt;P&gt;In Outlook 2010, we’ve added some cool new features to Unified Messaging, including Voice Mail Preview, protected voice mail, and Call Answering Rules to make the UM experience even more compelling. All of the features described below require an account on an Exchange 2010 server, and work with both Outlook Web App and Outlook 2010. There is also more to Unified Messaging with Exchange 2010 than I’ve mentioned below, so look for more information about the complete set of &lt;A href="http://www.microsoft.com/exchange/2010/en/us/unified-messaging.aspx" mce_href="http://www.microsoft.com/exchange/2010/en/us/unified-messaging.aspx"&gt;new Exchange 2010 Unified Messaging&lt;/A&gt; features.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Voice Mail Preview:&lt;/B&gt; Using Microsoft Speech technology, every time you receive a new voice mail message, the Exchange Unified Messaging server creates a transcript of the voice message and adds it to the voice mail message in your Inbox. With Voice Mail Preview, you can read what the caller said without playing the voice mail message. This is especially useful when you are somewhere that you can’t listen to the audio (like reading your messages during a meeting).&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/UnifiedMessagingImprovements_E116/clip_image002_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/UnifiedMessagingImprovements_E116/clip_image002_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image002 border=0 alt=clip_image002 src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/UnifiedMessagingImprovements_E116/clip_image002_thumb.jpg" width=630 height=400 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/UnifiedMessagingImprovements_E116/clip_image002_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The preview text is not always 100% accurate due to the limitations of automated speech recognition technology. To accommodate for this, you can easily click a word in the preview text and the voice mail audio around that word is played. This lets you jump around in the audio to only the words that seem incorrectly transcribed. This feature is great when you want to double-check a phone number, date, or other key word that is important in the message.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Protected Voice Mail&lt;/B&gt;: One of the biggest points of feedback we heard last release about voice mail in Outlook was that IT administrators wanted a way to prevent voice mail messages from being casually forwarded to other employees. This release, we’ve added support for using Office Rights Management to protect a voice mail message marked private (or if your corporate policy mandates all voicemail messages be marked private). When a message is protected, it cannot be forwarded, but still has the same rich experience in Outlook and OWA.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Call Answering Rules&lt;/B&gt;: Another great feature that’s new to the Outlook and Exchange 2010 release is the Personal Call Attendant. The Personal Call Attendant gives you the flexibility to control how your calls are routed when you aren’t at your desk. For example, you can build a call routing guide to give callers the option to contact another employee (perhaps your manager or your back up), forward the call to your mobile phone, or leave a voice message. You can even customize which options callers receive based on whether they are in your contacts list. &lt;/P&gt;
&lt;P&gt;This is just a quick look at some of the new features provided by Unified Messaging in Outlook and Exchange. If you’re interested in more details, take a look at the &lt;A href="http://msexchangeteam.com/" mce_href="http://msexchangeteam.com/"&gt;Exchange blog&lt;/A&gt; or &lt;A href="http://technet.microsoft.com/en-us/library/dd298185(EXCHG.140).aspx" mce_href="http://technet.microsoft.com/en-us/library/dd298185(EXCHG.140).aspx"&gt;TechNet&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Ryan Gregg &lt;BR&gt;Outlook PM&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9913779" width="1" height="1"&gt;</content><author><name>outblog</name><uri>http://blogs.msdn.com/members/outblog.aspx</uri></author></entry><entry><title>Easier Ways to Create and Manage Meetings</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/outlook/archive/2009/10/16/easier-ways-to-create-and-manage-meetings.aspx" /><id>http://blogs.msdn.com/outlook/archive/2009/10/16/easier-ways-to-create-and-manage-meetings.aspx</id><published>2009-10-16T16:24:00Z</published><updated>2009-10-16T16:24:00Z</updated><content type="html">&lt;P&gt;Earlier posts about &lt;A href="http://blogs.msdn.com/outlook/archive/2009/08/20/meeting-requests-with-a-preview-of-your-calendar.aspx" mce_href="http://blogs.msdn.com/outlook/archive/2009/08/20/meeting-requests-with-a-preview-of-your-calendar.aspx"&gt;Meeting Requests with a Preview of your Calendar&lt;/A&gt; and &lt;A href="http://blogs.msdn.com/outlook/archive/2009/07/27/introducing-quick-steps.aspx" mce_href="http://blogs.msdn.com/outlook/archive/2009/07/27/introducing-quick-steps.aspx"&gt;Introducing Quick Steps&lt;/A&gt; might have left you wondering what other improvements Outlook 2010 brings to creating and managing meetings. There are many, and I am glad to give you an overview. Here’s how they can work for you.&lt;/P&gt;
&lt;H5&gt;Meeting Reply&lt;/H5&gt;
&lt;P&gt;If an e-mail conversation gets to a point where a meeting would be more useful, just click &lt;B&gt;Meeting Reply&lt;/B&gt; to set up a meeting with the people involved in the conversation. It will copy the content of the e-mail conversation into the meeting request, to help keep you within the context of what has already been discussed, and add the recipients to the invitation. All you need to do is choose the time and location.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_2.png" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_2.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=image border=0 alt=image src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_thumb.png" width=504 height=390 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_thumb.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;H5&gt;Meeting Suggestions&lt;/H5&gt;The new &lt;B&gt;Meeting Suggestions &lt;/B&gt;pane&lt;B&gt; &lt;/B&gt;helps you choose a location for the meeting and find a time that works for a majority of people. It suggests the best times to meet on a given day according to the availability of the meeting attendees. And, if you are using Exchange 2010, you can select a building and check available rooms there! 
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_4.png" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_4.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=image border=0 alt=image src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_thumb_1.png" width=504 height=337 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_thumb_1.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;H5&gt;Meetings without a response&lt;/H5&gt;Looking at your calendar, you may have found it difficult to differentiate between new meetings that were automatically added to your calendar and meetings you tentatively accepted. It's now easy to tell the difference: meetings that you haven’t yet responded to are dimmed and have a dashed border. 
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_6.png" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_6.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=image border=0 alt=image src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_thumb_2.png" width=504 height=323 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_thumb_2.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;H5&gt;Search for appointments&lt;/H5&gt;You can also search for all meetings that you haven’t yet responded to. The new &lt;B&gt;Requests Not Responded To&lt;/B&gt; button in the &lt;B&gt;Search Contextual Tab&lt;/B&gt; makes that a simple one-click action. It also allows searching for &lt;B&gt;accepted&lt;/B&gt; and for &lt;B&gt;tentatively accepted&lt;/B&gt; appointments. 
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_8.png" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_8.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=image border=0 alt=image src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_thumb_3.png" width=504 height=371 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_thumb_3.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;H5&gt;Contextual Tab for Calendar&lt;/H5&gt;
&lt;P&gt;While you look at your calendar you may want to respond to some appointments, propose new times, change your free/busy status, or make other changes. Now you can do that without even opening a meeting. When you click on a meeting, a contextual tab appears and presents commands that are specific to a single instance or a recurring meeting.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_10.png" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_10.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=image border=0 alt=image src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_thumb_4.png" width=504 height=421 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_thumb_4.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;H5&gt;Next 7 Days&lt;/H5&gt;
&lt;P&gt;In addition to the standard 5- and 7-day week views, there’s a new view that shows the next 7 days starting from today.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_12.png" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_12.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=image border=0 alt=image src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_thumb_5.png" width=504 height=316 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_thumb_5.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;H5&gt;Schedule View&lt;/H5&gt;
&lt;P&gt;The new Schedule View shows multiple calendars horizontally -- a very effective way to help teams organize meetings. The Navigation Pane now includes your team and your manager’s team by default, so you can look at everyone’s calendars with just one click. You can also add your own groups by clicking &lt;B&gt;Open Calendar&lt;/B&gt; and then the &lt;B&gt;Calendar Groups&lt;/B&gt; button.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_14.png" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_14.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=image border=0 alt=image src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_thumb_6.png" width=504 height=325 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_thumb_6.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;H5&gt;Copy&lt;/H5&gt;
&lt;P&gt;Now Outlook 2010 allows you to respond to a meeting right away when you copy it from another calendar, making sure that you will be included in future updates, and the organizer is informed that you are attending. &lt;/P&gt;
&lt;H5&gt;Copy Tracking Status&lt;/H5&gt;
&lt;P&gt;Do you organize big meetings with lots of attendees and you need to keep track of who is coming and who isn’t? Maybe you need to reserve a conference room with a table that can accommodate the number of people who have accepted. You can now copy the response tracking status to the clipboard and paste it somewhere else, like Excel! From there you can sort and organize the data just like any other table.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_16.png" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_16.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=image border=0 alt=image src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_thumb_7.png" width=504 height=287 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/EasierWaystoCreateandManageMeetings_83EB/image_thumb_7.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;I hope you find these new ways of creating and handling meetings convenient and time-saving! &lt;/P&gt;
&lt;P&gt;Rainer Schiller&lt;/P&gt;
&lt;P&gt;Outlook Program Manager&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9908255" width="1" height="1"&gt;</content><author><name>outblog</name><uri>http://blogs.msdn.com/members/outblog.aspx</uri></author><category term="meetings" scheme="http://blogs.msdn.com/outlook/archive/tags/meetings/default.aspx" /><category term="organize" scheme="http://blogs.msdn.com/outlook/archive/tags/organize/default.aspx" /><category term="2010" scheme="http://blogs.msdn.com/outlook/archive/tags/2010/default.aspx" /></entry><entry><title>Outlook on Facebook</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/outlook/archive/2009/09/26/outlook-on-facebook.aspx" /><id>http://blogs.msdn.com/outlook/archive/2009/09/26/outlook-on-facebook.aspx</id><published>2009-09-26T02:14:00Z</published><updated>2009-09-26T02:14:00Z</updated><content type="html">&lt;P&gt;Microsoft Outlook now has its very own fan page on Facebook, which means you now have an easy way to get free tips about your favorite program, share ideas about the ways you use Outlook, and get answers to Outlook-related questions that you’ve always wanted to ask.&lt;/P&gt;
&lt;P&gt;The nice thing about joining the Outlook fan page is that it integrates nicely with Facebook’s existing news feed and notification system. You can choose to see Help &amp;amp; How-to tips in your Facebook news feed automatically or read them only when you want to. Similarly, if you post something on the fan page, you can choose to be notified whenever someone responds to you.&lt;/P&gt;
&lt;P&gt;Here’s a quick walkthrough of how the Microsoft Outlook fan page on Facebook works:&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Join the Outlook fan page (it’s free!)&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;If you already have a Facebook account, sign in, and then follow these simple steps:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Visit &lt;A href="http://www.facebook.com/pages/Microsoft-Outlook/82443952619" mce_href="http://www.facebook.com/pages/Microsoft-Outlook/82443952619"&gt;http://www.facebook.com/pages/Microsoft-Outlook/82443952619&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Near the top of the page, click &lt;A href="http://blogs.msdn.com/blogfiles/powerpoint/WindowsLiveWriter/PowerPointonFacebook_891E/clip_image001_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/powerpoint/WindowsLiveWriter/PowerPointonFacebook_891E/clip_image001_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image001 border=0 alt=clip_image001 src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/OutlookonFacebook_E46C/clip_image001_a696d247-4d2d-45e9-8ed5-14e26d0ac5d5.jpg" width=119 height=26 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/OutlookonFacebook_E46C/clip_image001_a696d247-4d2d-45e9-8ed5-14e26d0ac5d5.jpg"&gt;&lt;/A&gt;.&lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;Now you’ll be able to keep in touch and receive updates directly through your newsfeed. See you there!&lt;/P&gt;
&lt;P&gt;- The Microsoft Outlook Team&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9899749" width="1" height="1"&gt;</content><author><name>outblog</name><uri>http://blogs.msdn.com/members/outblog.aspx</uri></author><category term="outlook" scheme="http://blogs.msdn.com/outlook/archive/tags/outlook/default.aspx" /><category term="office" scheme="http://blogs.msdn.com/outlook/archive/tags/office/default.aspx" /><category term="tips&amp;amp;tricks" scheme="http://blogs.msdn.com/outlook/archive/tags/tips_2600_amp_3B00_tricks/default.aspx" /></entry><entry><title>Better Searching in Outlook 2010</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/outlook/archive/2009/09/24/better-searching-in-outlook-2010.aspx" /><id>http://blogs.msdn.com/outlook/archive/2009/09/24/better-searching-in-outlook-2010.aspx</id><published>2009-09-25T01:54:40Z</published><updated>2009-09-25T01:54:40Z</updated><content type="html">&lt;p&gt;A common problem with email searches is that they can return too many results. For example, entering someone’s name may return matches where the name appears in parts of the message’s body even though you meant to look for messages from that person. It can be also hard to enter other criteria to help narrow your search, such as whether it has an attachment or that it has a particular category applied. Wouldn’t it be great if you could specify these parameters easily and get a better set of results - finding what you want even faster? Outlook 2010 makes it easy!&lt;/p&gt;  &lt;p&gt;Outlook 2010 makes searching your mailbox more efficient with two new features: the Search Contextual Tab in the Ribbon and the Search Suggestion List.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Search Contextual Tab &lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/BetterSearchinginOutlook2010_DFBB/image_4.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Search Contextual Tab" border="0" alt="Search Contextual Tab" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/BetterSearchinginOutlook2010_DFBB/image_thumb_1.png" width="618" height="121" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;The Search Contextual Tab is displayed each time you click into the search box. It allows you to filter your search results using a variety of parameters, including:&lt;/p&gt;  &lt;p&gt;· Sender’s name&lt;/p&gt;  &lt;p&gt;· Subject keywords&lt;/p&gt;  &lt;p&gt;· Presence of attachments&lt;/p&gt;  &lt;p&gt;· Categories &lt;/p&gt;  &lt;p&gt;· Sent date&lt;/p&gt;  &lt;p&gt;· Flagged messages&lt;/p&gt;  &lt;p&gt;· The recipient’s name in the TO or CC fields&lt;/p&gt;  &lt;p&gt;· Importance&lt;/p&gt;  &lt;p&gt;· Read/unread status&lt;/p&gt;  &lt;p&gt;· … and many more!&lt;/p&gt;  &lt;p&gt;You can use this tab to help you find messages quickly and easily. For example, suppose you are searching for a message with the phrase “Food Blog”, but more than 100 items return matching that query. Let’s suppose you also remember that this message has an attachment. Now you can instantly narrow down the results to a much smaller set to find what you are looking for by clicking the Has Attachments button in the Search Contextual Tab:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/BetterSearchinginOutlook2010_DFBB/image_6.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Search Tab Filters" border="0" alt="Search Tab Filters" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/BetterSearchinginOutlook2010_DFBB/image_thumb_2.png" width="327" height="325" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;And that’s just one of the many filters available in the Search Contextual Tab!&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Search Suggestion List &lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/BetterSearchinginOutlook2010_DFBB/image_8.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Search Suggestion List" border="0" alt="Search Suggestion List" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/BetterSearchinginOutlook2010_DFBB/image_thumb_3.png" width="326" height="105" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;The vast majority of searches contain a combination of keywords, along with the names of the sender or a known phrase in the subject line. Restricting results to a specific sender is a powerful filter that often helps narrow down results quickly.&lt;/p&gt;  &lt;p&gt;In Outlook 2010, you will see a list beneath the search box when you begin a query. You can just type and then arrorw down to limit your search to mail from someone or with a specific subject. The results returned will be only those that show a match in the name (or subject) fields against your query!&lt;/p&gt;  &lt;p&gt;This is just a taste of the new powerful search capabilities built into Outlook 2010. We hope you enjoy this new experience and that it will help you be more productive each time you need to find a message in your mailbox. &lt;/p&gt;  &lt;p&gt;Nelson Siu   &lt;br /&gt;Outlook Program Manager&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9899212" width="1" height="1"&gt;</content><author><name>outblog</name><uri>http://blogs.msdn.com/members/outblog.aspx</uri></author></entry><entry><title>Multiple Exchange Accounts in Outlook 2010</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/outlook/archive/2009/08/25/multiple-exchange-accounts-in-outlook-2010.aspx" /><id>http://blogs.msdn.com/outlook/archive/2009/08/25/multiple-exchange-accounts-in-outlook-2010.aspx</id><published>2009-08-26T00:40:00Z</published><updated>2009-08-26T00:40:00Z</updated><content type="html">&lt;P&gt;For everyone using the Outlook 2010 Technical Preview, there are a number of improvements for working with multiple Exchange accounts. My name is Andrew Sullivan, I’m a Program Manager working on Outlook and it’s my pleasure to highlight some of these improvements. &lt;/P&gt;
&lt;P&gt;&lt;B&gt;Connect to more than one Microsoft Exchange account simultaneously. &lt;/B&gt;If you’ve worked with more than one Exchange account in Outlook 2007 or earlier, you may have resorted to using multiple Outlook profiles to access your additional accounts. No more, as Outlook 2010 supports connecting to as many as three Exchange accounts from a single profile.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MultipleExchangeAccountsinOutlook2010_C471/navpane_2.gif" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MultipleExchangeAccountsinOutlook2010_C471/navpane_2.gif"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=navpane border=0 alt=navpane src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MultipleExchangeAccountsinOutlook2010_C471/navpane_thumb.gif" width=183 height=339 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MultipleExchangeAccountsinOutlook2010_C471/navpane_thumb.gif"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;&lt;B&gt;How do I get another Exchange account into Outlook?&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;In the Technical Preview, Outlook requires you to use the Mail Applet in the Control Panel to add additional Exchange accounts. In Windows Vista or Windows 7, type “Mail” into the search box in the control panel to find the Mail Applet. In Windows XP the applet is shown in the default Control Panel view. &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MultipleExchangeAccountsinOutlook2010_C471/MailApplett_2.png" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MultipleExchangeAccountsinOutlook2010_C471/MailApplett_2.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=MailApplett border=0 alt=MailApplett src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MultipleExchangeAccountsinOutlook2010_C471/MailApplett_thumb.png" width=244 height=125 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MultipleExchangeAccountsinOutlook2010_C471/MailApplett_thumb.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;Once you’ve launched the Mail Applet choose “E-mail Accounts…” and then “New…” From there, the wizard will allow you to add another Exchange account.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;What’s the catch?&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;Your additional Exchange accounts function just like your first Exchange account in almost every way. Some things, however, are different. For example, the To-Do Bar shows appointments only from your default store, not those from additional Exchange account calendars. To view which store is your default click the Office button, then Account Setting, then, choose the Data Files tab.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;What else is improved about Multiple Accounts? &lt;/B&gt;&lt;/P&gt;
&lt;P&gt;The Ribbon in Outlook 2010 is specific to the account at which you are looking. If you click New E-mail in the ribbon while looking at the Inbox of your second Exchange account, your new message will be sent from your second Exchange account.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Who are you sending From?&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;When you add a second account of any type to Outlook 2010, the new From Picker will show up on new mail messages. This allows you to easily see which account you’re sending from, and just as easily change it.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MultipleExchangeAccountsinOutlook2010_C471/frompicker_2.gif" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MultipleExchangeAccountsinOutlook2010_C471/frompicker_2.gif"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=frompicker border=0 alt=frompicker src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MultipleExchangeAccountsinOutlook2010_C471/frompicker_thumb.gif" width=333 height=232 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MultipleExchangeAccountsinOutlook2010_C471/frompicker_thumb.gif"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;These are just some of the improvements we made to help you manage multiple accounts in Outlook 2010! Please let us know what you think in the comments.&lt;/P&gt;
&lt;P&gt;Andrew Sullivan &lt;BR&gt;Program Manager&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9884193" width="1" height="1"&gt;</content><author><name>outblog</name><uri>http://blogs.msdn.com/members/outblog.aspx</uri></author><category term="exchange" scheme="http://blogs.msdn.com/outlook/archive/tags/exchange/default.aspx" /><category term="mail accounts" scheme="http://blogs.msdn.com/outlook/archive/tags/mail+accounts/default.aspx" /></entry><entry><title>Meeting Requests with a Preview of your Calendar</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/outlook/archive/2009/08/20/meeting-requests-with-a-preview-of-your-calendar.aspx" /><id>http://blogs.msdn.com/outlook/archive/2009/08/20/meeting-requests-with-a-preview-of-your-calendar.aspx</id><published>2009-08-20T17:43:00Z</published><updated>2009-08-20T17:43:00Z</updated><content type="html">&lt;P&gt;Earlier we’ve shown how &lt;A href="http://blogs.msdn.com/outlook/archive/2009/07/20/what-s-up-with-my-inbox-in-outlook-2010.aspx" mce_href="http://blogs.msdn.com/outlook/archive/2009/07/20/what-s-up-with-my-inbox-in-outlook-2010.aspx"&gt;Conversations&lt;/A&gt; and &lt;A href="http://blogs.msdn.com/outlook/archive/2009/07/27/introducing-quick-steps.aspx" mce_href="http://blogs.msdn.com/outlook/archive/2009/07/27/introducing-quick-steps.aspx"&gt;Quick Steps&lt;/A&gt; are designed to help you get through your email faster than ever before. Now, we’d like to show you another feature that will save you time whenever you receive a meeting request!&lt;/P&gt;
&lt;P&gt;Handling meeting requests usually involves two important steps – reading the meeting request and checking your calendar to see if you’re available. To save you time, Outlook 2010 simplifies that process and combines those steps into a single experience with the Calendar Preview.&lt;/P&gt;
&lt;P&gt;The Calendar Preview shows a slice of your calendar in the meeting request allowing you to read the request and check that date on your calendar at the same time:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MeetingRequestswithaPreviewofyourCalenda_6CA8/clip_image002_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MeetingRequestswithaPreviewofyourCalenda_6CA8/clip_image002_2.jpg"&gt;&lt;IMG style="BORDER-RIGHT-WIDTH: 0px; DISPLAY: inline; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px" title="screenshot of calendar preview in reading pane" border=0 alt="screenshot of calendar preview in reading pane" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MeetingRequestswithaPreviewofyourCalenda_6CA8/clip_image002_thumb.jpg" width=514 height=403 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MeetingRequestswithaPreviewofyourCalenda_6CA8/clip_image002_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Now that you can see your calendar and the meeting request at the same time, you have the convenience of checking your schedule for that day and immediately make an informed decision about whether you can attend the meeting, all without leaving your inbox.&lt;/P&gt;
&lt;P&gt;The Calendar Preview also works great with recurring meetings. When you receive a request for a recurring meeting, the Calendar Preview enables you to view each instance of the recurring meeting or just those with conflicting appointments: &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MeetingRequestswithaPreviewofyourCalenda_6CA8/clip_image004_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MeetingRequestswithaPreviewofyourCalenda_6CA8/clip_image004_2.jpg"&gt;&lt;IMG style="BORDER-RIGHT-WIDTH: 0px; DISPLAY: inline; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px" title="screenshot of meeting series calendar preview in reading pane with labels for the buttons" border=0 alt="screenshot of meeting series calendar preview in reading pane with labels for the buttons" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MeetingRequestswithaPreviewofyourCalenda_6CA8/clip_image004_thumb.jpg" width=474 height=415 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/MeetingRequestswithaPreviewofyourCalenda_6CA8/clip_image004_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;With the Calendar Preview, you can confidently handle any meeting request without leaving your inbox because you’ll always know exactly how that meeting affects your schedule.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;I&gt;Cool Trick:&lt;/I&gt;&lt;/B&gt;&lt;I&gt; If you have a conflicting meeting, double click the Calendar Preview and your calendar will open to that day, allowing you to update your schedule as you see fit.&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;This is one of my favorite features in Outlook 2010, and I hope you like it too. Please let us know what you think in the comments!&lt;/P&gt;
&lt;P&gt;Tom O’Neill &lt;BR&gt;Outlook Program Manager&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9877099" width="1" height="1"&gt;</content><author><name>outblog</name><uri>http://blogs.msdn.com/members/outblog.aspx</uri></author><category term="time management" scheme="http://blogs.msdn.com/outlook/archive/tags/time+management/default.aspx" /><category term="calendar" scheme="http://blogs.msdn.com/outlook/archive/tags/calendar/default.aspx" /><category term="inbox" scheme="http://blogs.msdn.com/outlook/archive/tags/inbox/default.aspx" /><category term="appointments" scheme="http://blogs.msdn.com/outlook/archive/tags/appointments/default.aspx" /><category term="meetings" scheme="http://blogs.msdn.com/outlook/archive/tags/meetings/default.aspx" /><category term="information overload" scheme="http://blogs.msdn.com/outlook/archive/tags/information+overload/default.aspx" /><category term="Outlook 2010" scheme="http://blogs.msdn.com/outlook/archive/tags/Outlook+2010/default.aspx" /></entry><entry><title>Introducing MailTips</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/outlook/archive/2009/08/12/introducing-mailtips.aspx" /><id>http://blogs.msdn.com/outlook/archive/2009/08/12/introducing-mailtips.aspx</id><published>2009-08-12T19:03:00Z</published><updated>2009-08-12T19:03:00Z</updated><content type="html">&lt;P&gt;How often have you sent a message to someone only to receive an Out of Office message in reply a moment later? Or (like me) you might have sent a message to a Contact Group, only to find out too late that group contained hundreds of people – when it happened to me I surely wished I had known in advance. &lt;/P&gt;
&lt;P&gt;&lt;B&gt;MailTips make these email “accidents” a thing of the past!&lt;/B&gt; As you start adopting Outlook 2010 and Exchange 2010 in your organization, we believe that MailTips will help make you feel more in control of your mailbox and more confident about the emails you send.&lt;/P&gt;
&lt;P&gt;MailTips offer Outlook users real time information about the message they’re composing and the recipients they intend to reach with it. You will immediately know information such as if a recipient is out of the office, if they’re outside of your organization, or how many people are in a conversation group. &lt;/P&gt;
&lt;P&gt;MailTips requires Exchange 2010 and is one of the Outlook 2010 features that best embodies the “better with Exchange” motto. As you compose a message, Outlook and Exchange work together to determine if any MailTips apply to your message, and then display them above the address fields. Also the name of the recipient the MailTip applies to is highlighted in the address field.&lt;/P&gt;
&lt;P&gt;In the example below, I am trying to send a message to my colleague Andy and a MailTip is returned to indicate that he’s currently out of the office. At this point I can decide what to do, now that I know Andy won’t get to read this message today.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingMailTips_7F72/clip_image002_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingMailTips_7F72/clip_image002_2.jpg"&gt;&lt;IMG title="screenshot of a single MailTip" style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=243 alt="screenshot of a single MailTip" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingMailTips_7F72/clip_image002_thumb.jpg" width=580 border=0 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingMailTips_7F72/clip_image002_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;For example, I could remove Andy from the email and add someone else instead – just by clicking “Remove recipient” in the MailTip.&lt;/P&gt;
&lt;P&gt;The MailTips space will expand automatically if more MailTips apply: &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingMailTips_7F72/clip_image004_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingMailTips_7F72/clip_image004_2.jpg"&gt;&lt;IMG title="screenshot of multiple MailTips" style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=302 alt="screenshot of multiple MailTips" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingMailTips_7F72/clip_image004_thumb.jpg" width=628 border=0 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingMailTips_7F72/clip_image004_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;It is important to point out that MailTips is a lightweight feature with minimal load increase on the Exchange CAS server. The results are returned to the user quickly so they don’t slow down the process of writing and sending messages. We have developed an extensive caching system that saves MailTips info for recipients for 24 hours, therefore reducing the number of times the server needs to be queried. For &lt;B&gt;Mailbox full&lt;/B&gt; and &lt;B&gt;Automatic Reply &lt;/B&gt;MailTips, the cache is refreshed every hour because we expect that data to change more often. MailTips are displayed for email messages, meeting requests, sharing messages, and task requests.&lt;/P&gt;
&lt;P&gt;The Outlook 2010 MailTips cover a wide array of scenarios and issues: 
&lt;TABLE class="" cellSpacing=10 cellPadding=0 width=675 border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=208&gt;
&lt;P&gt;&lt;B&gt;Restricted Recipient&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=456&gt;
&lt;P&gt;Displayed when you do not have permission to send messages to a specific recipient – if sent the message will not get delivered.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=208&gt;
&lt;P&gt;&lt;B&gt;Moderated contact group&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=456&gt;
&lt;P&gt;Displayed when a contact group has a moderator (a new feature in Exchange 2010) who triages incoming messages and determines whether the message should be delivered to the contact group. &lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=208&gt;
&lt;P&gt;&lt;B&gt;Invalid recipient address&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=456&gt;
&lt;P&gt;Displayed when the recipient’s address is no longer valid – this can often happen if a recipient address was stored in the nickname cache but the recipient has left your organization since the last time it was used.&lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=208&gt;
&lt;P&gt;&lt;B&gt;Message too large for recipient&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=456&gt;
&lt;P&gt;Displayed when the size of the outgoing message exceeds the size limit for incoming messages of one or more of the recipients.&lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=208&gt;
&lt;P&gt;&lt;B&gt;Message too large to send&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=456&gt;
&lt;P&gt;Displayed when the size of the outgoing message exceeds the send message size of the sender.&lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=208&gt;
&lt;P&gt;&lt;B&gt;Recipient Mailbox is full&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=456&gt;
&lt;P&gt;Displayed when the recipient’s mailbox is full and the message cannot be delivered to them.&lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=208&gt;
&lt;P&gt;&lt;B&gt;Large number of recipients or contact group&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=456&gt;
&lt;P&gt;Displayed when the number of recipients that the message will be delivered to (either as individuals or as part of a contact group) exceeds a defined value set by the Exchange administrator.&lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=208&gt;
&lt;P&gt;&lt;B&gt;Recipient is using automatic replies&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=456&gt;
&lt;P&gt;Displayed when a recipient has turned on their Automatic Reply (aka Out of Office) message.&lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=208&gt;
&lt;P&gt;&lt;B&gt;External recipient&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=456&gt;
&lt;P&gt;Displayed when a recipient is outside your organization.&lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=208&gt;
&lt;P&gt;&lt;B&gt;External recipient in contact group&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=456&gt;
&lt;P&gt;Displayed when a contact group contains a recipient that is outside your organization. &lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=208&gt;
&lt;P&gt;&lt;B&gt;Additional information&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=456&gt;
&lt;P&gt;This MailTip is intended to replace messages that might otherwise be sent as an automatic response. Examples of these are messages like "You will receive a response within 72 hours" or "this mailbox is not monitored." They might also be useful for a user who works part time, and might not want to always have an Automatic Reply message set up. &lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top width=208&gt;
&lt;P&gt;&lt;B&gt;Mailbox quota about to be exceeded&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top width=456&gt;
&lt;P&gt;Displayed when the message being composed will push your mailbox quota over the limit and it will not be possible to send more messages until space in the mailbox is freed.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/P&gt;
&lt;P&gt;Each of these MailTips can be turned on or off in the MailTips options (accessible in the Mail section of the Outlook options). They can also be turned on or off by the Exchange administrator – ensuring that they can be configured depending on the characteristics of any given organization.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingMailTips_7F72/clip_image006_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingMailTips_7F72/clip_image006_2.jpg"&gt;&lt;IMG title="screenshot of MailTip settings" style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=639 alt="screenshot of MailTip settings" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingMailTips_7F72/clip_image006_thumb.jpg" width=555 border=0 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingMailTips_7F72/clip_image006_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Beside Outlook 2010, MailTips are also a feature of Outlook Web App – for information on the Outlook Live version of the feature, see &lt;A href="http://msexchangeteam.com/archive/2009/04/28/451193.aspx" mce_href="http://msexchangeteam.com/archive/2009/04/28/451193.aspx"&gt;E.J. Dyksen’s Exchange blog&lt;/A&gt; on it. Previous versions of Outlook and Outlook Web App do not support MailTips.&lt;/P&gt;
&lt;P&gt;Alessio Roic &lt;BR&gt;Outlook Program Manager&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9866664" width="1" height="1"&gt;</content><author><name>outblog</name><uri>http://blogs.msdn.com/members/outblog.aspx</uri></author><category term="contacts" scheme="http://blogs.msdn.com/outlook/archive/tags/contacts/default.aspx" /><category term="attachment" scheme="http://blogs.msdn.com/outlook/archive/tags/attachment/default.aspx" /><category term="mailbox" scheme="http://blogs.msdn.com/outlook/archive/tags/mailbox/default.aspx" /><category term="Outlook 2010" scheme="http://blogs.msdn.com/outlook/archive/tags/Outlook+2010/default.aspx" /></entry><entry><title>Introducing Quick Steps</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/outlook/archive/2009/07/27/introducing-quick-steps.aspx" /><id>http://blogs.msdn.com/outlook/archive/2009/07/27/introducing-quick-steps.aspx</id><published>2009-07-27T20:19:00Z</published><updated>2009-07-27T20:19:00Z</updated><content type="html">&lt;P&gt;This release, Outlook has adopted the Ribbon in the Inbox and all throughout Outlook. The purpose of the Ribbon in Outlook is to help you become more efficient in getting your work done – be that processing e-mail in your Inbox (Mail Home Tab), managing your Calendar (Calendar Home Tab), or doing work in Tasks (Tasks Home Tab). In designing the Ribbons, we strove for consistency so that you’ll always be able to look to the left side to create a new item or to the right side to find a contact – and to the middle to get what you need to do - done. In Mail, the center of the Ribbon is all about Quick Steps.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/image_2.png" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/image_2.png"&gt;&lt;IMG title="Outlook beta 1 ribbon - mail home tab" style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=86 alt="Outlook beta 1 ribbon - mail home tab" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/image_thumb.png" width=584 border=0 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/image_thumb.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;&lt;B&gt;What are Quick Steps? &lt;/B&gt;Quick Steps are easy-to-use one-click buttons which perform multiple actions at once. If you file your mail, they can be a life saver – one click and that conversation is filed away &lt;I&gt;and &lt;/I&gt;marked as read. If you send e-mail to the same people over and over – one click and you have a new email to your team. As your work style in Outlook changes, you can configure Quick Steps to work the way you do.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;So you like to file your mail… &lt;/B&gt;It turns out that 70% of people file mail into folders in Outlook. In Outlook 2007, and every release before that, there were two ways of filing manually: either you dragged it to the folder or you clicked “Move to folder” and choose the folder. Enter Quick Steps: out of the box, the first two Quick Steps are all about filing your mail. The first Quick Step allows you to file mail into a folder (by default the last folder you filed mail into) and mark it as read in one click. The second Quick Step, &lt;B&gt;Move to: ?&lt;/B&gt; is there to give you the idea that you could have a series of Quick Steps for each folder you file into regularly. &lt;/P&gt;
&lt;P&gt;The first time you click on a Quick Step (other than Forward:FYI, Meeting Reply, or Reply &amp;amp; Delete) you’ll be prompted to set it up. &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image006_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image006_2.jpg"&gt;&lt;IMG title="customize quick step window" style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=264 alt="customize quick step window" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image006_thumb.jpg" width=514 border=0 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image006_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Once it is set up, you won’t see this dialog again. In this example, you can just click “1-Reference” in the Ribbon to file mail away.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image008_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image008_2.jpg"&gt;&lt;IMG title="quick steps gallery" style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=97 alt="quick steps gallery" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image008_thumb.jpg" width=281 border=0 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image008_thumb.jpg"&gt;&lt;/A&gt;&lt;A class="" title=_GoBack name=_GoBack&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Not into filing? Quick Steps still has something to offer! &lt;/B&gt;Have you ever been on a long e-mail conversation and you just need to get into a room and sort it out? Click &lt;B&gt;Meeting Reply&lt;/B&gt; and set up a meeting with the people on the conversation. There are also a series of Quick Steps that rely on your corporate address book to help you: &lt;B&gt;To Manager&lt;/B&gt;, &lt;B&gt;Team E-mail&lt;/B&gt;, and &lt;B&gt;Team Meeting&lt;/B&gt;. These default Quick Steps come prepopulated if your company’s address book knows your organization. If not, you can decide who is on “your team” the first time you click them.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Want to create your own? &lt;/B&gt;To create your own Quick Step, just click &lt;B&gt;Create New&lt;/B&gt; or drop the gallery to use a template from &lt;B&gt;New Quick Step &lt;/B&gt;fly out. &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/image_4.png" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/image_4.png"&gt;&lt;IMG title="expanded quick steps gallery" style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=256 alt="expanded quick steps gallery" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/image_thumb_1.png" width=341 border=0 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/image_thumb_1.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;If you click &lt;B&gt;Create New&lt;/B&gt;, you’ll be able to pick from a list of actions. Note that in this dialog you can also change the icon (just click on the dot in the upper left), pick a shortcut key, and write your own custom tooltip – to help you remember what this Quick Step is for. &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image012_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image012_2.jpg"&gt;&lt;IMG title="create new quick step dialog" style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=308 alt="create new quick step dialog" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image012_thumb.jpg" width=274 border=0 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image012_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Get more sophisticated: Manage your Quick Steps &lt;/B&gt;You can rearrange, duplicate, modify, and delete any Quick Step from the &lt;B&gt;Manage Quick Steps&lt;/B&gt; dialog. And if you don’t like what you’ve come up with, you can always reset Quick Steps back to the defaults. &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image014_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image014_2.jpg"&gt;&lt;IMG title="manage quick steps dialog" style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=252 alt="manage quick steps dialog" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image014_thumb.jpg" width=354 border=0 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image014_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Tip: To get to this dialog quickly, just click on the small arrow in the lower right corner of the Quick Steps group in the Ribbon. &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image016_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image016_2.jpg"&gt;&lt;IMG title="bottom right corner of quick steps gallery" style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=42 alt="bottom right corner of quick steps gallery" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image016_thumb.jpg" width=50 border=0 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image016_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;One trick to share with your friends &lt;/B&gt;Right click on any “move” Quick Step to easily navigate to that folder:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image018_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image018_2.jpg"&gt;&lt;IMG title="quick steps right click menu" style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=185 alt="quick steps right click menu" src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image018_thumb.jpg" width=320 border=0 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/IntroducingQuickSteps_910F/clip_image018_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Or hold down the Control key while clicking on the Quick Step to navigate to the folder.&lt;/P&gt;
&lt;P&gt;I hope that you enjoy using Outlook 2010 and Quick Steps. Please play around with them: I’d love to know which Quick Steps you use – maybe they will be defaults in the next Beta!&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.office2010themovie.com/?videoId=67d34c7e-b1d4-4b6d-a617-9a8d16aaa1ec" mce_href="http://www.office2010themovie.com/?videoId=67d34c7e-b1d4-4b6d-a617-9a8d16aaa1ec"&gt;Melissa MacBeth&lt;/A&gt; &lt;BR&gt;Program Manager&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Note for IMAP users:&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;If you have an IMAP account and aren’t seeing Quick Steps, there is a known bug that may be the cause. To get Quick Steps back, right click on the Ribbon and click &lt;B&gt;Customize Ribbon&lt;/B&gt;, create a new group in the Ribbon, and add Quick Steps to that group.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9850166" width="1" height="1"&gt;</content><author><name>outblog</name><uri>http://blogs.msdn.com/members/outblog.aspx</uri></author><category term="beta" scheme="http://blogs.msdn.com/outlook/archive/tags/beta/default.aspx" /><category term="time management" scheme="http://blogs.msdn.com/outlook/archive/tags/time+management/default.aspx" /><category term="customize" scheme="http://blogs.msdn.com/outlook/archive/tags/customize/default.aspx" /><category term="inbox" scheme="http://blogs.msdn.com/outlook/archive/tags/inbox/default.aspx" /><category term="mail" scheme="http://blogs.msdn.com/outlook/archive/tags/mail/default.aspx" /><category term="how-to" scheme="http://blogs.msdn.com/outlook/archive/tags/how-to/default.aspx" /><category term="Outlook 2010" scheme="http://blogs.msdn.com/outlook/archive/tags/Outlook+2010/default.aspx" /><category term="triaging mail" scheme="http://blogs.msdn.com/outlook/archive/tags/triaging+mail/default.aspx" /></entry><entry><title>Connecting to Hotmail accounts in Outlook 2010</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/outlook/archive/2009/07/23/connecting-to-hotmail-accounts-in-outlook-2010.aspx" /><id>http://blogs.msdn.com/outlook/archive/2009/07/23/connecting-to-hotmail-accounts-in-outlook-2010.aspx</id><published>2009-07-24T00:04:00Z</published><updated>2009-07-24T00:04:00Z</updated><content type="html">&lt;P&gt;Hello everyone. My name is Alessio Roic and I’m a Program Manager on the Outlook product team here in Redmond. Today I will cover how to connect to your Hotmail accounts in Outlook 2010. &lt;/P&gt;
&lt;P&gt;In previous versions of Outlook, connecting to Hotmail accounts could be done using one of the following methods: &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Creating an HTTP account (also known as DAV protocol) – this allows users to establish a basic connection to their Hotmail mailbox and to synchronize their Inbox only.&lt;/LI&gt;
&lt;LI&gt;Installing Outlook Connector (OLC) 12.1 – the OLC provides a richer experience, as it allows viewing and updating your Hotmail Inbox, Calendar and Contacts in Outlook. &lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;B&gt;In order to get your Hotmail and Windows Live Inbox, Calendar and Contacts in Outlook 2010 you need to install Outlook Connector 14 (OLC 14). &lt;/B&gt;OLC 14 is the&lt;B&gt; &lt;/B&gt;next version of&lt;B&gt; &lt;/B&gt;the Outlook Connector and it is currently in Technical Preview mode and is to be used with only with the Outlook 2010 Technical Preview. &lt;/P&gt;
&lt;P&gt;&lt;B&gt;OLC 14 offers the highest level of reliability and feature richness when connecting Outlook to your Hotmail account&lt;/B&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Outlook Connector 12.1 is not compatible with Outlook 2010. However, OLC 12.1 continues to be the recommended method for connecting Hotmail to Outlook 2003 and 2007.&lt;B&gt;&lt;/B&gt;&lt;/LI&gt;
&lt;LI&gt;As already announced to all Hotmail users, the DAV protocol will no longer be used starting September 1, 2009 and as such it is not supported in Outlook 2010. For more details, please see the &lt;A href="http://windowslivewire.spaces.live.com/blog/cns!2F7EB29B42641D59!40879.entry" mce_href="http://windowslivewire.spaces.live.com/blog/cns!2F7EB29B42641D59!40879.entry"&gt;related Windows Live Wire blog&lt;/A&gt;.&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Let Outlook 2010 determine if you need OLC 14 and install it for you&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;We are working hard to make sure that the experience of moving to Outlook 2010 is as smooth as possible when it comes to accessing your Hotmail accounts. Outlook 2010 is able to determine when OLC 14 is needed and points you to the correct download location for the OLC 14 package. &lt;/P&gt;
&lt;P&gt;This detection occurs in two scenarios:&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;1. Upgrading to Outlook 2010 with a profile that contains at least one DAV and/or OLC 12 account&lt;/B&gt;&lt;/P&gt;
&lt;TABLE border=0 cellSpacing=0 cellPadding=7 width=796&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=388&gt;If your Outlook profile already included a Hotmail account, Outlook 2010 shows a dialog to indicate that in order to continue synchronizing between Outlook and the service you need to download and install Outlook Connector 14. &lt;BR&gt;&lt;BR&gt;Clicking on “Upgrade Now” automatically starts the download of the OLC 14 package. Should you choose “Remind me later” you will still be able to browse the previously downloaded data for the Hotmail account, but you won’t be able to synch until OLC 14 is installed. &lt;/TD&gt;
&lt;TD vAlign=top width=406&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/ConnectingtoHotmailaccountsinOutlook2010_C466/clip_image001_2.png" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/ConnectingtoHotmailaccountsinOutlook2010_C466/clip_image001_2.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image001 border=0 alt=clip_image001 src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/ConnectingtoHotmailaccountsinOutlook2010_C466/clip_image001_thumb.png" width=284 height=84 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/ConnectingtoHotmailaccountsinOutlook2010_C466/clip_image001_thumb.png"&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=385&gt;Once Outlook 2010 is open the following message will be displayed in the main Outlook explorer if OLC 14 is needed: &lt;/TD&gt;
&lt;TD vAlign=top width=409&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/ConnectingtoHotmailaccountsinOutlook2010_C466/clip_image003_2.png" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/ConnectingtoHotmailaccountsinOutlook2010_C466/clip_image003_2.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image003 border=0 alt=clip_image003 src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/ConnectingtoHotmailaccountsinOutlook2010_C466/clip_image003_thumb.png" width=284 height=56 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/ConnectingtoHotmailaccountsinOutlook2010_C466/clip_image003_thumb.png"&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=383&gt;Should you chose not to download the OLC and dismiss the message, Outlook offers another redirector in the BackStage – just select the Hotmail account in the account picker and the following prompt will appear:&lt;/TD&gt;
&lt;TD vAlign=top width=411&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/ConnectingtoHotmailaccountsinOutlook2010_C466/clip_image005_2.png" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/ConnectingtoHotmailaccountsinOutlook2010_C466/clip_image005_2.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image005 border=0 alt=clip_image005 src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/ConnectingtoHotmailaccountsinOutlook2010_C466/clip_image005_thumb.png" width=284 height=82 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/ConnectingtoHotmailaccountsinOutlook2010_C466/clip_image005_thumb.png"&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=382&gt;Clicking on the Upgrade Now button will automatically start the download of the OLC 14.&lt;/TD&gt;
&lt;TD vAlign=top width=414&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;STRONG&gt;2. Adding a @hotmail.com, @live.com or @msn.com accounts through the Add New Account dialog&lt;/STRONG&gt;&lt;/P&gt;
&lt;TABLE border=0 cellSpacing=0 cellPadding=7 width=796&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=392&gt;Should you choose to add a new account that uses the @hotmail.com, @live.com or the @msn.com &lt;B&gt;domain&lt;/B&gt; and OLC 14 is not installed, Outlook 2010 will prompt you to download and install it: &lt;/TD&gt;
&lt;TD vAlign=top width=402&gt;&lt;A href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/ConnectingtoHotmailaccountsinOutlook2010_C466/clip_image007_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/ConnectingtoHotmailaccountsinOutlook2010_C466/clip_image007_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image007 border=0 alt=clip_image007 src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/ConnectingtoHotmailaccountsinOutlook2010_C466/clip_image007_thumb.jpg" width=284 height=150 mce_src="http://blogs.msdn.com/blogfiles/outlook/WindowsLiveWriter/ConnectingtoHotmailaccountsinOutlook2010_C466/clip_image007_thumb.jpg"&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P&gt;&lt;B&gt;Note:&lt;/B&gt; Should you choose not to install the OLC 14, Outlook 2010 will attempt to establish a connection to the server using the POP protocol. However this method only allows downloading your mailbox, while Outlook Connector also lets you view and update their Hotmail and Windows Live Inbox, Calendar and Contacts in Outlook.&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;Alessio Roic&lt;/P&gt;
&lt;P&gt;Outlook Program Manager&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9846774" width="1" height="1"&gt;</content><author><name>outblog</name><uri>http://blogs.msdn.com/members/outblog.aspx</uri></author><category term="OLC" scheme="http://blogs.msdn.com/outlook/archive/tags/OLC/default.aspx" /><category term="Outlook Technical Beta" scheme="http://blogs.msdn.com/outlook/archive/tags/Outlook+Technical+Beta/default.aspx" /></entry></feed>