<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Kreslavsky IT blog &#187; Outlook</title>
	<atom:link href="http://www.kreslavsky.com/tag/outlook/feed" rel="self" type="application/rss+xml" />
	<link>http://www.kreslavsky.com</link>
	<description>News, guides, and tips to antivirus programmes, scripts, and security</description>
	<lastBuildDate>Sun, 29 Jan 2012 04:57:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Outlook 2010 Automatically maps mailboxes</title>
		<link>http://www.kreslavsky.com/2011/09/outlook-2010-automatically-maps-mailboxes.html</link>
		<comments>http://www.kreslavsky.com/2011/09/outlook-2010-automatically-maps-mailboxes.html#comments</comments>
		<pubDate>Sun, 18 Sep 2011 07:22:45 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Office 2010]]></category>
		<category><![CDATA[Access Page]]></category>
		<category><![CDATA[Automatic Mapping]]></category>
		<category><![CDATA[Mailboxes]]></category>
		<category><![CDATA[Map]]></category>
		<category><![CDATA[Maps]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Multiple Users]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Outlook 2010]]></category>
		<category><![CDATA[Personal Mailbox]]></category>
		<category><![CDATA[Power Shell]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/2011/09/outlook-2010-automatically-maps-mailboxes.html</guid>
		<description><![CDATA[Tweet A new client side feature which Microsoft has released in Exchange 2010 SP1 is the ability of Outlook 2010 to automatically map all mailboxes to which the logged in user has full access. There by, on each mailbox that you have been granted Full Access, you will see it on your own personal mailbox. In Order to disable automatic mapping: Go to this user mailbox, right click on it and choose manage full mailbox access, then just remove your user from the full mailbox access page You can use ADSIEDIT, and go this user properties, and under msExchDelegateListLink attribute, just remove the link to your user You can use the following script for future mailbox permissions – this will add full mailbox access with no AutoMapping. You can remove msExchDelegateListLink values from multiple users properties using ADModify.net In order to find all users that have Full Mailbox Access on other users’ mailbox, run the following powershell: Get-Mailbox -ResultSize Unlimited &#124; Get-MailboxPermission &#124; ? {($_.AccessRights -match &#34;FullAccess&#34;) -and -not ($_.User -like &#34;NT AUTHORITYSELF&#34;)} &#124; ft Identity, User]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.kreslavsky.com%2F2011%2F09%2Foutlook-2010-automatically-maps-mailboxes.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.kreslavsky.com/2011/09/outlook-2010-automatically-maps-mailboxes.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.kreslavsky.com/2011/09/outlook-2010-automatically-maps-mailboxes.html"  data-text="Outlook 2010 Automatically maps mailboxes" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.kreslavsky.com/2011/09/outlook-2010-automatically-maps-mailboxes.html" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.kreslavsky.com/2011/09/outlook-2010-automatically-maps-mailboxes.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>A new client side feature which Microsoft has released in Exchange 2010 SP1 is the ability of Outlook 2010 to automatically map all mailboxes to which the logged in user has full access.   <br />There by, on each mailbox that you have been granted Full Access, you will see it on your own personal mailbox.</p>
<p><strong>In Order to disable automatic mapping</strong>:</p>
<ol>
<li>Go to this user mailbox, right click on it and choose manage full mailbox access, then just remove your user from the full mailbox access page</li>
<li>You can use ADSIEDIT, and go this user properties, and under msExchDelegateListLink attribute, just remove the link to your user</li>
<li>You can use the following <a href="http://www.stevieg.org/2011/02/disable-exchange-2010-sp1s-auto-shared-mailbox-mapping" target="_blank" rel="nofollow">script</a> for future mailbox permissions – this will add full mailbox access with no AutoMapping.</li>
<li>You can remove msExchDelegateListLink values from multiple users properties using ADModify.net</li>
</ol>
<p>In order to find all users that have <strong>Full Mailbox Access</strong> on other users’ mailbox, run the following powershell:</p>
<blockquote><p>Get-Mailbox -ResultSize Unlimited | Get-MailboxPermission | ? {($_.AccessRights -match &quot;FullAccess&quot;) -and -not ($_.User -like &quot;NT AUTHORITYSELF&quot;)} | ft Identity, User</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2011/09/outlook-2010-automatically-maps-mailboxes.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to check email message header Outlook 2010</title>
		<link>http://www.kreslavsky.com/2010/12/how-to-check-email-message-header-outlook-2010.html</link>
		<comments>http://www.kreslavsky.com/2010/12/how-to-check-email-message-header-outlook-2010.html#comments</comments>
		<pubDate>Tue, 14 Dec 2010 11:42:58 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Office 2010]]></category>
		<category><![CDATA[Check Email]]></category>
		<category><![CDATA[Email Header]]></category>
		<category><![CDATA[Flow Problems]]></category>
		<category><![CDATA[Internet Mail]]></category>
		<category><![CDATA[Mail Flow]]></category>
		<category><![CDATA[Mail Headers]]></category>
		<category><![CDATA[Message header]]></category>
		<category><![CDATA[Message Properties]]></category>
		<category><![CDATA[Navigation Screen]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Outlook 2010]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/2010/12/how-to-check-email-message-header-outlook-2010.html</guid>
		<description><![CDATA[Tweet Message header can provide us with valuable information that will allow better troubleshooting of mail flow problems To view message header in Outlook 2010 Open message you want to inspect Click on the small square expansion button of the message navigation screen. You will receive message properties with internet mail headers]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.kreslavsky.com%2F2010%2F12%2Fhow-to-check-email-message-header-outlook-2010.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.kreslavsky.com/2010/12/how-to-check-email-message-header-outlook-2010.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.kreslavsky.com/2010/12/how-to-check-email-message-header-outlook-2010.html"  data-text="How to check email message header Outlook 2010" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.kreslavsky.com/2010/12/how-to-check-email-message-header-outlook-2010.html" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.kreslavsky.com/2010/12/how-to-check-email-message-header-outlook-2010.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><strong>Message header</strong> can provide us with valuable information that will allow better troubleshooting of mail flow problems</p>
<p><strong>To view message header in Outlook 2010</strong></p>
<ol>
<li>Open message you want to inspect</li>
<li>Click on the small square expansion button of the message navigation screen.      <br /><a href="http://www.kreslavsky.com/wp-content/uploads/2010/12/image1.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="ooutlook 2010 message header" border="0" alt="ooutlook 2010 message header" src="http://www.kreslavsky.com/wp-content/uploads/2010/12/image_thumb1.png" width="438" height="111" /></a> </li>
<li>You will receive message properties with internet mail headers     <br /><a href="http://www.kreslavsky.com/wp-content/uploads/2010/12/image2.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Message header" border="0" alt="Message header" src="http://www.kreslavsky.com/wp-content/uploads/2010/12/image_thumb2.png" width="406" height="356" /></a> </li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2010/12/how-to-check-email-message-header-outlook-2010.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to configure GMail IMAP for Outlook 2007</title>
		<link>http://www.kreslavsky.com/2009/06/how-to-configure-gmail-imap-for-outlook-2007.html</link>
		<comments>http://www.kreslavsky.com/2009/06/how-to-configure-gmail-imap-for-outlook-2007.html#comments</comments>
		<pubDate>Thu, 04 Jun 2009 22:30:44 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Videos]]></category>
		<category><![CDATA[2007]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[do]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[imap]]></category>
		<category><![CDATA[instructions]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[to]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/2009/06/how-to-configure-gmail-imap-for-outlook-2007.html</guid>
		<description><![CDATA[Tweet]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.kreslavsky.com%2F2009%2F06%2Fhow-to-configure-gmail-imap-for-outlook-2007.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.kreslavsky.com/2009/06/how-to-configure-gmail-imap-for-outlook-2007.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.kreslavsky.com/2009/06/how-to-configure-gmail-imap-for-outlook-2007.html"  data-text="How to configure GMail IMAP for Outlook 2007" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.kreslavsky.com/2009/06/how-to-configure-gmail-imap-for-outlook-2007.html" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.kreslavsky.com/2009/06/how-to-configure-gmail-imap-for-outlook-2007.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><object width="320" height="230"><param name="movie" value="http://www.youtube.com/v/kLZaDq-yewk&#038;f=videos&#038;app=youtube_gdata"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/kLZaDq-yewk&#038;f=videos&#038;app=youtube_gdata" type="application/x-shockwave-flash" wmode="transparent" width="320" height="230"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2009/06/how-to-configure-gmail-imap-for-outlook-2007.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Outlook 2003 Video Training &#8211; Fun Stuff with Outlook</title>
		<link>http://www.kreslavsky.com/2009/06/outlook-2003-video-training-fun-stuff-with-outlook.html</link>
		<comments>http://www.kreslavsky.com/2009/06/outlook-2003-video-training-fun-stuff-with-outlook.html#comments</comments>
		<pubDate>Thu, 04 Jun 2009 22:30:08 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Videos]]></category>
		<category><![CDATA[2003]]></category>
		<category><![CDATA[calendaring]]></category>
		<category><![CDATA[cbt]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[ms]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[palaestra]]></category>
		<category><![CDATA[scheduling]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/2009/06/outlook-2003-video-training-fun-stuff-with-outlook.html</guid>
		<description><![CDATA[Tweet]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.kreslavsky.com%2F2009%2F06%2Foutlook-2003-video-training-fun-stuff-with-outlook.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.kreslavsky.com/2009/06/outlook-2003-video-training-fun-stuff-with-outlook.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.kreslavsky.com/2009/06/outlook-2003-video-training-fun-stuff-with-outlook.html"  data-text="Outlook 2003 Video Training &#8211; Fun Stuff with Outlook" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.kreslavsky.com/2009/06/outlook-2003-video-training-fun-stuff-with-outlook.html" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.kreslavsky.com/2009/06/outlook-2003-video-training-fun-stuff-with-outlook.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><object width="320" height="230"><param name="movie" value="http://www.youtube.com/v/zuzoy2t1688&#038;f=videos&#038;app=youtube_gdata"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/zuzoy2t1688&#038;f=videos&#038;app=youtube_gdata" type="application/x-shockwave-flash" wmode="transparent" width="320" height="230"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2009/06/outlook-2003-video-training-fun-stuff-with-outlook.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Troubleshooting the “Outlook prompts for password” issue</title>
		<link>http://www.kreslavsky.com/2008/08/troubleshooting-the-%e2%80%9coutlook-prompts-for-password%e2%80%9d-issue.html</link>
		<comments>http://www.kreslavsky.com/2008/08/troubleshooting-the-%e2%80%9coutlook-prompts-for-password%e2%80%9d-issue.html#comments</comments>
		<pubDate>Thu, 21 Aug 2008 11:16:30 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Outlook 2002 XP]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[C Users]]></category>
		<category><![CDATA[Cached Password]]></category>
		<category><![CDATA[Check Your Username]]></category>
		<category><![CDATA[Click Properties]]></category>
		<category><![CDATA[Control Userpasswords2]]></category>
		<category><![CDATA[Double Click]]></category>
		<category><![CDATA[Error Messages]]></category>
		<category><![CDATA[Find Mail]]></category>
		<category><![CDATA[Folders]]></category>
		<category><![CDATA[Global Catalog Server]]></category>
		<category><![CDATA[Logon Credentials]]></category>
		<category><![CDATA[Mail Server]]></category>
		<category><![CDATA[Microsoft Outlook 2000]]></category>
		<category><![CDATA[Ntlm Authentication]]></category>
		<category><![CDATA[One Last Time]]></category>
		<category><![CDATA[Open Outlook]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Outlook Prompts For Password]]></category>
		<category><![CDATA[Rpc Over Https]]></category>
		<category><![CDATA[Server Name]]></category>
		<category><![CDATA[Tab Button]]></category>
		<category><![CDATA[Type Regedit]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/?p=279</guid>
		<description><![CDATA[Tweet Every time you open Outlook 2007 you are prompted to enter your domain credentials ,even though you know you have saved it? To solve it try that one: Open the following path: In Vista C:UsersYourUserNameAppDataRoamingMicrosoft Once open you will see numerous folders including a &#8220;protect&#8221; folder. Delete the &#8220;protect&#8221; folder When you have deleted the protect folder, restart Outlook. You will be requested to enter your password again, but it will be the last time. If problem exist When working RPC over HTTPs If you are working RPC over https you are using or basic, or NTLM authentication you need to be sure you are working NTLM. Now in order to ensure that outlook not uses any cached password we need to do the following. Go to Control Panel&#62;User Acounts Press on Advanced Tab button Click on Manage Passwords button Review stored passwords , and if you see IP address of your mail server you should delete it. Now we need to patch te registry Click Start&#124;Run Type regedit and press enter Go to HKLMSYSTEMCurrentControlSetControlLsa Find lmcompatibilitylevel DWORD parameter Double-click on it and change its value to 3 If &#8220;Remember my password&#8221; doesn&#8217;t work and you keep getting prompted: Close your Outlook Go to Start&#8230; Run and type control userpasswords2 and press OK c) click on the Advanced tab and press &#8216;Manage Passwords&#8217; Find the entry for your mail server and click ‘Properties&#8217; Erase the Server name and type in ‘S1&#8242; or whatever the simple name of your global catalog server is (without the quotes) leave the password blank and click OK Start Outlook, enter your password and check off ‘Remember my password&#8217; one last time. It should not prompt again. When you start Microsoft Outlook 2000/2002, you may receive following error messages: Your logon information was incorrect. Check your username and domain, then type your password again. The logon credentials supplied were incorrect. Make sure your username and domain are correct, then type your password again. CAUSE This behavior occurs because registry may be missing one or more values in the following registry key: HKEY_LOCAL_MACHINESOFTWAREMicrosoftRpcClientProtocols The following values are the core required values for Windows XP or Windows 2000: Name Type Data (Default) REG_SZ (value not set) ncacn_http REG_SZ Rpcrt4.dll ncacn_ip_tcp REG_SZ Rpcrt4.dll ncacn_np REG_SZ Rpcrt4.dll ncacn_nb_tcp REG_SZ Rpcrt4.dll ncadg_ip_udp REG_SZ Rpcrt4.dll The following values are the core required values for Windows 98: Name Type Data (Default) REG_SZ (value not set) ncacn_np REG_SZ Rpcltc1.dll ncalrpc REG_SZ ncadg_ip_udp REG_SZ Rpcltc3.dll ncacn_http REG_SZ Rpcltccm.dll The following values are the core required values for Windows NT 4.0: Name Type Data (Default) REG_SZ (value not set) ncacn_np REG_SZ Rpcltc1.dll ncalrpc REG_SZ ncadg_ip_udp REG_SZ RpcLtCcm.dll ncadg_ip_udp REG_SZ RpcLtCcm.dll ncacn_nb_tcp REG_SZ RpcLtCcm.dll ncacn_http REG_SZ RpcLtCcm.dll Following the system&#8217;s protocol binding order, you receive a prompt for credentials on each missing value until a value that matches the next protocol in the binding order is reached. RESOLUTION Use one of the following methods to resolve this behavior. Method 1 Import a valid registry key from [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.kreslavsky.com%2F2008%2F08%2Ftroubleshooting-the-%25e2%2580%259coutlook-prompts-for-password%25e2%2580%259d-issue.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.kreslavsky.com/2008/08/troubleshooting-the-%e2%80%9coutlook-prompts-for-password%e2%80%9d-issue.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.kreslavsky.com/2008/08/troubleshooting-the-%e2%80%9coutlook-prompts-for-password%e2%80%9d-issue.html"  data-text="Troubleshooting the “Outlook prompts for password” issue" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.kreslavsky.com/2008/08/troubleshooting-the-%e2%80%9coutlook-prompts-for-password%e2%80%9d-issue.html" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.kreslavsky.com/2008/08/troubleshooting-the-%e2%80%9coutlook-prompts-for-password%e2%80%9d-issue.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><h2><span style="color: #000000;"><strong>Every time you open Outlook 2007 you are prompted to enter your domain credentials ,even though you know you have saved it?</strong></span></h2>
<p>To solve it try that one:<br />
Open the following path:<br />
In Vista C:UsersYourUserNameAppDataRoamingMicrosoft<br />
Once open you will see numerous folders including a &#8220;protect&#8221; folder.<br />
Delete the &#8220;protect&#8221; folder<br />
When you have deleted the protect folder, restart Outlook.<br />
You will be requested to enter your password again, but it will be the last time.</p>
<h2><strong>If problem exist When working RPC over HTTPs </strong></h2>
<p>If you are working RPC over https you are using or basic, or NTLM authentication<br />
you need to be sure you are working NTLM.<br />
Now in order to ensure that outlook not uses any cached password we need to do the following.<br />
Go to Control Panel&gt;User Acounts<br />
Press on Advanced Tab button<br />
Click on Manage Passwords button<br />
Review stored passwords , and if you see IP address of your mail server you should delete it.</p>
<p>Now we need to patch te registry</p>
<ol>
<li>Click Start|Run</li>
<li>Type regedit and press enter</li>
<li>Go to HKLMSYSTEMCurrentControlSetControlLsa</li>
<li>Find lmcompatibilitylevel DWORD parameter</li>
<li>Double-click on it and change its value to 3</li>
</ol>
<h2><strong>If &#8220;Remember my password&#8221; doesn&#8217;t work and you keep getting prompted: </strong></h2>
<ol>
<li>Close your Outlook</li>
<li>Go to Start&#8230; Run and type control userpasswords2 and press OK c) click on the Advanced tab and press &#8216;Manage Passwords&#8217;</li>
<li>Find the entry for your mail server and click ‘Properties&#8217;</li>
<li>Erase the Server name and type in ‘S1&#8242; or whatever the simple name of your global catalog server is (without the quotes)</li>
<li>leave the password blank and click OK</li>
<li>Start Outlook, enter your password and check off ‘Remember my password&#8217; one last time. It should not prompt again.</li>
</ol>
<h2><strong>When you start Microsoft Outlook 2000/2002, you may receive  following error messages: </strong></h2>
<p>Your logon information was incorrect.<br />
Check your username and domain, then type your password again.<br />
The logon credentials supplied were incorrect.<br />
Make sure your username and domain are correct, then type your password again.<br />
CAUSE<br />
This behavior occurs because registry may be missing one or more values in the following registry key:<br />
HKEY_LOCAL_MACHINESOFTWAREMicrosoftRpcClientProtocols<br />
The following values are the core required values for Windows XP or Windows 2000:<br />
Name	Type	Data<br />
(Default)	REG_SZ	(value not set)<br />
ncacn_http 	REG_SZ	Rpcrt4.dll<br />
ncacn_ip_tcp	REG_SZ	Rpcrt4.dll<br />
ncacn_np	REG_SZ	Rpcrt4.dll<br />
ncacn_nb_tcp	REG_SZ	Rpcrt4.dll<br />
ncadg_ip_udp	REG_SZ	Rpcrt4.dll</p>
<p>The following values are the core required values for Windows 98:<br />
Name	Type	Data<br />
(Default)	REG_SZ	(value not set)<br />
ncacn_np 	REG_SZ	Rpcltc1.dll<br />
ncalrpc	REG_SZ<br />
ncadg_ip_udp	REG_SZ	Rpcltc3.dll<br />
ncacn_http	REG_SZ	Rpcltccm.dll</p>
<p>The following values are the core required values for Windows NT 4.0:<br />
Name	Type	Data<br />
(Default)	REG_SZ	(value not set)<br />
ncacn_np 	REG_SZ	Rpcltc1.dll<br />
ncalrpc	REG_SZ<br />
ncadg_ip_udp	REG_SZ	RpcLtCcm.dll<br />
ncadg_ip_udp 	REG_SZ	RpcLtCcm.dll<br />
ncacn_nb_tcp 	REG_SZ	RpcLtCcm.dll<br />
ncacn_http 	REG_SZ	RpcLtCcm.dll<br />
Following the system&#8217;s protocol binding order, you receive a prompt for credentials on each missing value until a value that matches the next protocol in the binding order is reached.<br />
RESOLUTION<br />
Use one of the following methods to resolve this behavior.<br />
Method 1<br />
Import a valid registry key from a computer that is working correctly. To do this:<br />
1.	Start Registry Editor (Regedt32.exe).<br />
2.	Locate and then click the following key in the registry:<br />
KEY_LOCAL_MACHINESOFTWAREMicrosoftRpcClientProtocols<br />
3.	Click the ClientProtocols key.<br />
4.	On the File menu, click Export.<br />
5.	Save the file with a .reg or a .txt extension in the event you need to send the file by using Outlook. You must save and rename the attachment to a .reg extension to import the key.<br />
6.	Quit Registry Editor.<br />
7.	Rename the file that you just exported from a .txt file extension to a .reg extension, and then copy it to a folder on your computer.<br />
8.	Start Registry Editor (Regedt32.exe).<br />
9.	Locate and then click the following key in the registry:<br />
HKEY_LOCAL_MACHINESOFTWAREMicrosoftRpcClientProtocols<br />
10.	Select the ClientProtocols folder, click File, and then click Import.<br />
11.	Select the .reg file that you saved, and then click Open.<br />
12.	Quit Registry Editor.<br />
13.	Quit and then restart Outlook 2002.<br />
Method 2<br />
Use Registry Editor to manually create the missing values. To do this:<br />
1.	Start Registry Editor (Regedt32.exe).<br />
2.	Locate and then click the following key in the registry:<br />
HKEY_LOCAL_MACHINESOFTWAREMicrosoftRpcClientProtocols<br />
3.	Click Edit, click New, and then click String Value.<br />
4.	Edit the new string value with the name and data information that is in the table in the &#8220;Cause&#8221; section of this article.<br />
5.	Repeat steps 3 and 4 for each missing value.<br />
6.	Quit Registry Editor.<br />
The information in this article applies to:<br />
<span style="color: #ff0000;"><strong>•</strong><strong> Microsoft Outlook 2002 (Outlook XP)<br />
•	Microsoft Outlook 2000<br />
•	Microsoft Exchange 2000 Server<br />
•	Microsoft Exchange Server 5.5</strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2008/08/troubleshooting-the-%e2%80%9coutlook-prompts-for-password%e2%80%9d-issue.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to create new conference room (Meeting Room) resource</title>
		<link>http://www.kreslavsky.com/2008/08/how-to-create-new-conference-room-meeting-room-resource.html</link>
		<comments>http://www.kreslavsky.com/2008/08/how-to-create-new-conference-room-meeting-room-resource.html#comments</comments>
		<pubDate>Mon, 18 Aug 2008 09:58:17 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Outlook 2002 XP]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[Calendar Options]]></category>
		<category><![CDATA[Corporate Environment]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Mailbox]]></category>
		<category><![CDATA[New Meeting Room]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Resource Capacity]]></category>
		<category><![CDATA[Room Resource]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/?p=247</guid>
		<description><![CDATA[Tweet It is a common task in corporate environment You need to open a user with new meeting room name Open new user&#8217;s mailbox Go to tools&#62; Options &#62;Calendar options&#62;Resource schedule Mark the sections bellow That is . NOTE: In Exchange 2007 there is ability to create resources (Not Users) You can also set the resource capacity now! Eg: in one of your meeting room, only be able to fit 10 people, you can type in resource information, under the property of the object.]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.kreslavsky.com%2F2008%2F08%2Fhow-to-create-new-conference-room-meeting-room-resource.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.kreslavsky.com/2008/08/how-to-create-new-conference-room-meeting-room-resource.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.kreslavsky.com/2008/08/how-to-create-new-conference-room-meeting-room-resource.html"  data-text="How to create new conference room (Meeting Room) resource" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.kreslavsky.com/2008/08/how-to-create-new-conference-room-meeting-room-resource.html" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.kreslavsky.com/2008/08/how-to-create-new-conference-room-meeting-room-resource.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>It is a common task in corporate environment</p>
<ol>
<li>You need to open a user with new meeting room name</li>
<li>Open new user&#8217;s mailbox</li>
<li>Go to tools&gt; Options &gt;Calendar options&gt;Resource schedule</li>
<li>Mark the sections bellow</li>
</ol>
<p>That is .</p>
<p><em>NOTE: In Exchange 2007 there is ability to create resources (Not Users) You can also set the resource capacity now! Eg: in one of your meeting room, only be able to fit 10 people, you can type in resource information, under the property of the object.</em></p>
<p><a href="http://www.kreslavsky.com/wp-content/uploads/2008/08/resource-sceduling11.jpg"><img class="alignleft size-medium wp-image-248" title="resource-sceduling" src="http://www.kreslavsky.com/wp-content/uploads/2008/08/resource-sceduling1-300x205.jpg" alt="" width="300" height="205" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2008/08/how-to-create-new-conference-room-meeting-room-resource.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook: Show received meetings as tentative</title>
		<link>http://www.kreslavsky.com/2008/07/outlook-show-received-meetings-as-tentative.html</link>
		<comments>http://www.kreslavsky.com/2008/07/outlook-show-received-meetings-as-tentative.html#comments</comments>
		<pubDate>Tue, 29 Jul 2008 11:49:01 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Outlook 2002 XP]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[Arrival Check]]></category>
		<category><![CDATA[Automatic Addition]]></category>
		<category><![CDATA[Calendar]]></category>
		<category><![CDATA[Click Options]]></category>
		<category><![CDATA[Current]]></category>
		<category><![CDATA[E Mail]]></category>
		<category><![CDATA[Fashion]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Outlook Calendar]]></category>
		<category><![CDATA[Tentative Meetings]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/?p=198</guid>
		<description><![CDATA[Tweet Show received meetings as tentative: Meetings are automatically placed on the calendar as tentative, so that timeslots will not be overbooked. As meeting updates come in, prior updates are marked &#8220;out of date&#8221; and are automatically deleted. This means that meeting updates are not accepted in an out of order fashion keeping your calendar items current.&#8221; You can stop/start the automatic addition of a tentative meeting when meeting request e-mail is received in Outlook by clearing/marking the check box for &#8220;Process requests and responses on arrival&#8221; : 1. On the Tools menu, click Options. 2. Click Email Options. 3. Click Tracking Options. 4. Click to clear/mark the &#8220;Process requests and responses on arrival&#8221; check box.]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.kreslavsky.com%2F2008%2F07%2Foutlook-show-received-meetings-as-tentative.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.kreslavsky.com/2008/07/outlook-show-received-meetings-as-tentative.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.kreslavsky.com/2008/07/outlook-show-received-meetings-as-tentative.html"  data-text="Outlook: Show received meetings as tentative" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.kreslavsky.com/2008/07/outlook-show-received-meetings-as-tentative.html" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.kreslavsky.com/2008/07/outlook-show-received-meetings-as-tentative.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><strong>Show received meetings as tentative:</strong></p>
<p>Meetings are automatically placed on the calendar as tentative, so that timeslots will not be overbooked. As meeting updates come in, prior updates are marked &#8220;out of date&#8221; and are automatically deleted. This means that meeting updates are not accepted in an out of order fashion keeping your calendar items current.&#8221;<br />
You can stop/start the automatic addition of a tentative meeting when meeting request e-mail is received in Outlook by clearing/marking the check box for &#8220;Process requests and responses on arrival&#8221; :</p>
<p>1. On the Tools menu, click <strong>Options.</strong><br />
2. Click <strong>Email Options.</strong><br />
3. Click <strong>Tracking Options.</strong><br />
4. Click to clear/mark the <strong>&#8220;Process requests and responses on arrival&#8221;</strong> check box.</p>
<p><a href="http://www.kreslavsky.com/wp-content/uploads/2008/07/outlook-tracking11.jpg"><img class="size-medium wp-image-202 alignleft" title="outlook-tracking" src="http://www.kreslavsky.com/wp-content/uploads/2008/07/outlook-tracking1-300x290.jpg" alt="" width="300" height="290" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2008/07/outlook-show-received-meetings-as-tentative.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook status shows disconnected.</title>
		<link>http://www.kreslavsky.com/2008/06/outlook-status-shows-disconnected.html</link>
		<comments>http://www.kreslavsky.com/2008/06/outlook-status-shows-disconnected.html#comments</comments>
		<pubDate>Wed, 25 Jun 2008 11:27:00 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Outlook 2002 XP]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Cn]]></category>
		<category><![CDATA[Connectivity]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange Name]]></category>
		<category><![CDATA[Exchange System]]></category>
		<category><![CDATA[Hkey Local Machine]]></category>
		<category><![CDATA[Hosts File]]></category>
		<category><![CDATA[Ip Address]]></category>
		<category><![CDATA[Local Area]]></category>
		<category><![CDATA[Microsoft Exchange Server]]></category>
		<category><![CDATA[Microsoft Server]]></category>
		<category><![CDATA[Name Resolution]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[Outlook Exe]]></category>
		<category><![CDATA[Ping Server]]></category>
		<category><![CDATA[Security Policy]]></category>
		<category><![CDATA[Sessions]]></category>
		<category><![CDATA[Switch Outlook]]></category>
		<category><![CDATA[Type Regedit]]></category>
		<category><![CDATA[Vpn Client]]></category>
		<category><![CDATA[Work Offline]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/2008/06/outlook-status-shows-disconnected/</guid>
		<description><![CDATA[Tweet On errors: Mapi session &#8220;/o=COMPANY/ou=Europe/cn=Recipients/cn=User1? exceeded the maximum of 32 objects of type &#8220;session&#8221;. Task &#8220;Microsoft Exchange Server&#8221; reported error (0×80040115): &#8220;The connection to the Microsoft Exchange Server is unavailable. Outlook must be online or connected to complete this action.&#8221; Task ‘Microsoft Exchange Server&#8217; reported error (0×8004011d): ‘The server is not available. Contact your administrator if this condition persists.&#8217; Don&#8217;t waste your time on profile recreation &#8230; It doesn&#8217;t help!!! Things to check . 1.      Ping to exchange server by short name and FQDN a. If no ping check connectivity and name resolution. b. Consider adding exchange name/ip to hosts file 2.      Go to file and check if &#8220;Work Offline&#8221; is not checked a. If it is uncheck it. 3.      If you have check point client try to a. Disable security policy b. Stop Vpn client c. Remove checkpoint secure remote &#8220;v&#8221; on local area connection properties ( do it only for testing &#8211; remember if you remove the &#8220;v&#8221; user will be not able to dial VPN. 4.      Run Outlook.exe with rpcdiag switch &#8220;outlook.exe /rpcdiag&#8221; see where is hanging 5.      On exchange system manger open user related mailbox store in logons section check if user exceeded maximum of 32 connections to the store. a. If do : To solve this problem for this user, download the sysinternals tool called TCPView and run it on your Exchange server. You will see a whole bunch of connections. Work out the IP address of user, and then using TCP view terminate all sessions to that IP address. b. Other option is to mount / unmount store &#8211; not recommended 6.      In order to Increase default 32 MAPI connections limit do the following things a. Click Start, click Run, type regedit in the Open box, and then click OK. Locate and then click the following registry sub key: HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesMSExchangeISParametersSystem If the Maximum Allowed Sessions Per User entry does not exist, do the following: On the Edit menu, point to New, and then click DWORD Value. Type Maximum Allowed Sessions Per User as the entry name, and then press ENTER. Right-click the Maximum Allowed Sessions Per User entry, and then click Modify Click decimal, type the value that you want to set in the Value data box, and then click OK. Exit Registry Editor. Click Start, click Run, type services.msc in the Open box, and then click OK. Click the MSExchange Information Store service, and then click Restart Service. Didn&#8217;t solve the problem ? Read Related Microsoft solutions http://support.microsoft.com/kb/842022 http://support.microsoft.com/kb/830836 http://support.microsoft.com/kb/840835 http://support.microsoft.com/kb/821188 http://support.microsoft.com/kb/821188 http://support.microsoft.com/default.aspx?scid=898060]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.kreslavsky.com%2F2008%2F06%2Foutlook-status-shows-disconnected.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.kreslavsky.com/2008/06/outlook-status-shows-disconnected.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.kreslavsky.com/2008/06/outlook-status-shows-disconnected.html"  data-text="Outlook status shows disconnected." data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.kreslavsky.com/2008/06/outlook-status-shows-disconnected.html" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.kreslavsky.com/2008/06/outlook-status-shows-disconnected.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>On errors:</p>
<p>Mapi session &#8220;/o=COMPANY/ou=Europe/cn=Recipients/cn=User1? exceeded the maximum of 32 objects of type &#8220;session&#8221;.</p>
<p>Task &#8220;Microsoft Exchange Server&#8221; reported error (0×80040115): &#8220;The<br />
connection to the Microsoft Exchange Server is unavailable. Outlook must be<br />
online or connected to complete this action.&#8221;</p>
<p>Task ‘Microsoft Exchange Server&#8217; reported error (0×8004011d): ‘The server is<br />
not available. Contact your administrator if this condition persists.&#8217;</p>
<p>Don&#8217;t waste your time on profile recreation &#8230; It doesn&#8217;t help!!!</p>
<p>Things to check .</p>
<p>1.      Ping to exchange server by short name and FQDN</p>
<p>a. If no ping check connectivity and name resolution.</p>
<p>b. Consider adding exchange name/ip to hosts file</p>
<p>2.      Go to file and check if &#8220;Work Offline&#8221; is not checked</p>
<p>a. If it is uncheck it.</p>
<p>3.      If you have check point client try to</p>
<p>a. Disable security policy</p>
<p>b. Stop Vpn client</p>
<p>c. Remove checkpoint secure remote &#8220;v&#8221; on local area connection properties ( do it only for testing &#8211; remember if you remove the &#8220;v&#8221; user will be not able to dial VPN.</p>
<p>4.      Run Outlook.exe with rpcdiag switch &#8220;outlook.exe /rpcdiag&#8221; see where is hanging</p>
<p>5.      On exchange system manger open user related mailbox store in logons section check if user exceeded maximum of 32 connections to the store.</p>
<p>a. If do : To solve this problem for this user, download the sysinternals tool called TCPView and run it on your Exchange server. You will see a whole bunch of connections. Work out the IP address of user, and then using TCP view terminate all sessions to that IP address.</p>
<p>b. Other option is to mount / unmount store &#8211; not recommended</p>
<p>6.      In order to Increase default 32 MAPI connections limit do the following things</p>
<p>a. Click Start, click Run, type regedit in the Open box, and then click OK.</p>
<p>Locate and then click the following registry sub key: HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesMSExchangeISParametersSystem</p>
<p>If the Maximum Allowed Sessions Per User entry does not exist, do the following:</p>
<p>On the Edit menu, point to New, and then click DWORD Value.</p>
<p>Type Maximum Allowed Sessions Per User as the entry name, and then press ENTER.</p>
<p>Right-click the Maximum Allowed Sessions Per User entry, and then click Modify</p>
<p>Click decimal, type the value that you want to set in the Value data box, and then click OK.</p>
<p>Exit Registry Editor.</p>
<p>Click Start, click Run, type services.msc in the Open box, and then click OK.</p>
<p>Click the MSExchange Information Store service, and then click Restart Service.</p>
<p>Didn&#8217;t solve the problem ? Read Related Microsoft solutions</p>
<p>http://support.microsoft.com/kb/842022</p>
<p>http://support.microsoft.com/kb/830836</p>
<p>http://support.microsoft.com/kb/840835</p>
<p>http://support.microsoft.com/kb/821188</p>
<p>http://support.microsoft.com/kb/821188</p>
<p>http://support.microsoft.com/default.aspx?scid=898060</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2008/06/outlook-status-shows-disconnected.html/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Unable to open eml attachments</title>
		<link>http://www.kreslavsky.com/2007/12/unable-to-open-eml-attachments.html</link>
		<comments>http://www.kreslavsky.com/2007/12/unable-to-open-eml-attachments.html#comments</comments>
		<pubDate>Thu, 20 Dec 2007 10:20:00 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Desktop]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Outlook 2002 XP]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Desktop Search]]></category>
		<category><![CDATA[Eml Attachments]]></category>
		<category><![CDATA[Eml Files]]></category>
		<category><![CDATA[Google Desktop Search]]></category>
		<category><![CDATA[Google Search]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Unable to open eml attachments]]></category>
		<category><![CDATA[Uninstall]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/2007/12/unable-to-open-eml-attachments/</guid>
		<description><![CDATA[Tweet Outlook doesn&#8217;t open EML attachment or EML files saved on desktop. The solution is simple.. Uninstall Google Desktop Search]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.kreslavsky.com%2F2007%2F12%2Funable-to-open-eml-attachments.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.kreslavsky.com/2007/12/unable-to-open-eml-attachments.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.kreslavsky.com/2007/12/unable-to-open-eml-attachments.html"  data-text="Unable to open eml attachments" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.kreslavsky.com/2007/12/unable-to-open-eml-attachments.html" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.kreslavsky.com/2007/12/unable-to-open-eml-attachments.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>Outlook doesn&#8217;t open EML attachment or EML files saved on desktop.<br />
The solution is simple..<br />
Uninstall Google Desktop Search</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2007/12/unable-to-open-eml-attachments.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

