<?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>Techibee.com &#187; Exchange 2007</title>
	<atom:link href="http://techibee.com/category/exchange-2007/feed" rel="self" type="application/rss+xml" />
	<link>http://techibee.com</link>
	<description>A System Administrator&#039;s Blog</description>
	<lastBuildDate>Mon, 06 Feb 2012 09:40:40 +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>The attempt to connect to http://servername.domain.com/PowerShell using Kerberos authentication failed</title>
		<link>http://techibee.com/exchange-2007/the-attempt-to-connect-to-httpservername-domain-compowershell-using-kerberos-authentication-failed/1329</link>
		<comments>http://techibee.com/exchange-2007/the-attempt-to-connect-to-httpservername-domain-compowershell-using-kerberos-authentication-failed/1329#comments</comments>
		<pubDate>Tue, 17 Jan 2012 08:12:43 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[exchange 2007]]></category>
		<category><![CDATA[exchange 2010]]></category>
		<category><![CDATA[problems in opening exchange console]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=1329</guid>
		<description><![CDATA[&#8220;The attempt to connect to http://ExchangeServer.domain.com/PowerShell using &#8220;Kerberos&#8221; authentication failed: connecting to remote server failed with the following error message : The WinRM client cannot complete the operation within the time specified.  Check if the machine name is valid and is reachable over the network and firewall exception for Windows Remote Management service is enabled.  [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-13300"></div></div><blockquote><p>&#8220;The attempt to connect to http://ExchangeServer.domain.com/PowerShell using &#8220;Kerberos&#8221; authentication failed: connecting to remote server failed with the following error message : The WinRM client cannot complete the operation within the time specified.  Check if the machine name is valid and is reachable over the network and firewall exception for Windows Remote Management service is enabled.  For more information, see the about_Remote_Troubleshooting Help topic.&#8221;</p></blockquote>
<p>You might notice above error message after opening a Exchange Management Console. This error message indicates that connecting to given exchange server using WinRM has failed. Today I received the same error and verified that exchange is doing well on this box. I tried opening the console from different server and it worked file. So, it appeared some sort of profile problem to me.</p>
<p>I did the following to resolve the issue.</p>
<ol>
<li>Close Exchange Management Console MMC</li>
<li>Go to %appdata%\Microsoft\MMC</li>
<li>Rename &#8220;Exchange Management Console&#8221; file to &#8220;Exchange Management Console.old&#8221;</li>
<li>Launch the console again.</li>
</ol>
<p>Hope this helps&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/exchange-2007/the-attempt-to-connect-to-httpservername-domain-compowershell-using-kerberos-authentication-failed/1329/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Powershell Query and Change Exchange messaging tracking log settings</title>
		<link>http://techibee.com/exchange-2007/powershell-query-and-change-exchange-messaging-tracking-log-settings/901</link>
		<comments>http://techibee.com/exchange-2007/powershell-query-and-change-exchange-messaging-tracking-log-settings/901#comments</comments>
		<pubDate>Wed, 09 Mar 2011 09:26:24 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[exchange]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=901</guid>
		<description><![CDATA[  Like Exchange 2003, there is no GUI available in Exchange 2007/2010 to make changes to Exchange Message tracking log settings. These settings involve, how many days of logs you want to store, what is the max size of each log, what is the total space you want to allocate to the tracking logs, and location [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-9020"></div></div><p> </p>
<p>Like Exchange 2003, there is no GUI available in Exchange 2007/2010 to make changes to Exchange Message tracking log settings. These settings involve, how many days of logs you want to store, what is the max size of each log, what is the total space you want to allocate to the tracking logs, and location of the logs on disk.</p>
<p>To query exchange tracking log settings, use the below command</p>
<blockquote><p>[PS] C:Userslocaluser&gt;<strong>Get-TransportServer -Identity HTSSERVER1 | fl *messagetracking*</strong></p>
<p>MessageTrackingLogEnabled               : True<br />
MessageTrackingLogMaxAge                : 15.00:00:00<br />
MessageTrackingLogMaxDirectorySize      : 100MB<br />
MessageTrackingLogMaxFileSize           : 10MB<br />
MessageTrackingLogPath                  : C:Program FilesMicrosoftExchange ServerTransportRolesLogsMessageTracking<br />
MessageTrackingLogSubjectLoggingEnabled : True</p></blockquote>
<p>The above command returns total six parameters and each has its own significance. Their names are self explanatory as well.</p>
<p>If you want to turn off the messaging tracking, just use the below command.</p>
<blockquote><p><em><strong>Set-TransportServer HTSSERVER1 –MessageTrackingLogEnabled $false</strong></em></p></blockquote>
<p>Change the value to $true if you want to turn on the logging.</p>
<p><span style="text-decoration: underline;">I am giving some more examples below to change other parameters.</span></p>
<p>To change the LogMaxage(no. of days logs you want to store) to 20 days,</p>
<blockquote><p><strong>Set-TransportServer -id HTSSERVER1 –MessageTrackingLogMaxAge 20.00:00:00</strong></p></blockquote>
<p>This parameter value is in DD.HH.MM.SS format.</p>
<p>To change the tracking logs location</p>
<blockquote><p><strong>Set-TransportServer -id HTSSERVER1 <em>–MessageTrackingLogPath “E:MessageTrackingLogs”</em></strong></p></blockquote>
<p>To change total space allowcated for logs:</p>
<blockquote><p><strong>Set-TransportServer -id HTSSERVER1 –MessageTrackingLogMaxDirectorySize 1GB</strong></p></blockquote>
<p>To enable subject logging in message tracking:</p>
<blockquote><p><strong>Set-TransportServer -id HTSSERVER1 –MessageTrackingLogSubjectLoggingEnabled $true</strong></p></blockquote>
<p>Hope this information helps you.</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/exchange-2007/powershell-query-and-change-exchange-messaging-tracking-log-settings/901/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find top senders/recipients in Exchange 2007 queue</title>
		<link>http://techibee.com/exchange-2007/find-top-sendersrecipients-in-exchange-2007-queue/827</link>
		<comments>http://techibee.com/exchange-2007/find-top-sendersrecipients-in-exchange-2007-queue/827#comments</comments>
		<pubDate>Tue, 12 Oct 2010 14:18:08 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[exchange 2007]]></category>
		<category><![CDATA[exchange queues]]></category>
		<category><![CDATA[top senders]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=827</guid>
		<description><![CDATA[If Exchange 2007 queue is growing fast and you want to find who is the top contributor, below code helps you. You need to run this code from a exchange management shell since the code involves Exchange cmdlets like get-message. Find top 10 senders in Exchange Queue: $senders = @{} $queuemessages = Get-message -Resultsize unlimited [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-8280"></div></div><p>If Exchange 2007 queue is growing fast and you want to find who is the top contributor, below code helps you. You need to run this code from a exchange management shell since the code involves Exchange cmdlets like get-message.</p>
<p>Find top 10 senders in Exchange Queue:</p>
<blockquote><p><span style="color: #993366;">$senders = @{}<br />
$queuemessages = Get-message -Resultsize unlimited<br />
$queuemessages | % { $senders[$_.FromAddress] = $senders[$_.FromAddress] + 1 }<br />
$senders.getenumerator() | sort value -last 10</span></p></blockquote>
<p>Similarly you can filter the Get-Message output by recipients to get the top recipients.</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/exchange-2007/find-top-sendersrecipients-in-exchange-2007-queue/827/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Exchange 2003 &#8211; Queue Directory Corrupt</title>
		<link>http://techibee.com/exchange-2007/exchange-2003-queue-directory-corrupt/631</link>
		<comments>http://techibee.com/exchange-2007/exchange-2003-queue-directory-corrupt/631#comments</comments>
		<pubDate>Sun, 25 Jul 2010 13:29:21 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[The Microsoft Exchange Information Store service terminated with service-specific error 0 (0×0)]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=631</guid>
		<description><![CDATA[For one of our client, we have received an alert stating that &#8220;The Microsoft Exchange Information Store service terminated with service-specific error 0 (0&#215;0)&#8221;. The error seems to simple and everyone would just suggest to start the service back. But the root cause was different. One of our colleague started working on the alert and [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-6320"></div></div><p><a href="http://techibee.com/wp-content/uploads/2010/07/Exchange.jpg"></a><a href="http://techibee.com/wp-content/uploads/2010/07/Exchange1.jpg"></a>For one of our client, we have received an alert stating that &#8220;The Microsoft Exchange Information Store service terminated with service-specific error 0 (0&#215;0)&#8221;.</p>
<p>The error seems to simple and everyone would just suggest to start the service back. But the root cause was different.</p>
<p>One of our colleague started working on the alert and here is the chronology of steps followed in resolving the issue. found that the Information Store service was in stopped state and started the service.  Started verifying queues , encoutered error stating that &#8220;Default SMTP Virtual Server is unavailable&#8221;. Verified and found that SMTP Service was in started mode.</p>
<p>Escalated call to me and I&#8217;ve started working on the issue.</p>
<p>Upon further analysis, found that the SMTP Virtual Instance was stopped in ESM (Exchange System Manager). Tried to start the instance, encountered error stating that &#8220;Queue Directory is corrupted , hence the instance could not be started&#8221;.</p>
<p>Error logged in Eventlog &amp; Error pop-up when accessed Queue Directory from explorer.</p>
<p><a href="http://techibee.com/wp-content/uploads/2010/07/exchange-queue-corrupt-event.png"><img class="aligncenter size-full wp-image-648" title="exchange-queue-corrupt-event" src="http://techibee.com/wp-content/uploads/2010/07/exchange-queue-corrupt-event.png" alt="" width="400" height="217" /></a></p>
<p><a href="http://techibee.com/wp-content/uploads/2010/07/queue-corrupt-message.png"><img class="aligncenter size-full wp-image-649" title="queue-corrupt-message" src="http://techibee.com/wp-content/uploads/2010/07/queue-corrupt-message.png" alt="" width="387" height="122" /></a><a href="http://techibee.com/wp-content/uploads/2010/07/exchange-queue-corrupt-event.png"></a></p>
<p><a href="http://techibee.com/wp-content/uploads/2010/07/Exchange1.jpg"></a></p>
<p>Executed following Steps to resolve issue:</p>
<p>1. Uninstalled existing Antivirus (AVG)</p>
<p>2. Executed chkdsk on volume in which the exchange database is stored. Found disk errors.</p>
<p>3. Executed <strong><em>chkdsk /f</em></strong> on the volume and restarted the server</p>
<p>4. Created new Queue Directory and pointed the path from ESM to the new folder.</p>
<p>5. Started SMTP Virtual Instance &amp; Information Store Services.</p>
<p>Mails started flowing fine.</p>
<p><a href="http://techibee.com/wp-content/uploads/2010/07/Exchange.jpg"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/exchange-2007/exchange-2003-queue-directory-corrupt/631/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problems in recoverying emails &#8220;Recover Deleted Items&#8221; option in Outlook &#8212; Fixed</title>
		<link>http://techibee.com/exchange-2007/case-of-problems-in-recoverying-emails-recover-deleted-items-option-in-outlook-fixed/625</link>
		<comments>http://techibee.com/exchange-2007/case-of-problems-in-recoverying-emails-recover-deleted-items-option-in-outlook-fixed/625#comments</comments>
		<pubDate>Fri, 23 Jul 2010 16:13:21 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Mapi session exceeded the maximum of 500 objects of type objxxx]]></category>
		<category><![CDATA[Outlook was unable to recover some or all of the items in this folder. Make sure you have the required permissions to recover items in this folder and try again]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=625</guid>
		<description><![CDATA[Outlook was unable to recover some or all of the items in this folder. Make sure you have the required permissions to recover items in this folder and try again. If the problem persists, contact your administrator I came across this error while I(or my users) trying to restore bulk emails in outlook using &#8220;Recover [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-6260"></div></div><blockquote><p>Outlook was unable to recover some or all of the items in this folder. Make sure you have the required permissions to recover items in this folder and try again. If the problem persists, contact your administrator</p></blockquote>
<p>I came across this error while I(or my users) trying to restore bulk emails in outlook using &#8220;Recover Deleted Items&#8221; option. Single or little more emails restoration works fine but this issue is coming only when I attempt bulk restoration.</p>
<p>When this happened for the user, I am clue less what was happening. I went to event viewer on the server where user mailbox is hosted and observed below error when the user is attempting the restoration.</p>
<p>Event Type:     Error<br />
Event Source:   MSExchangeIS<br />
Event Category: General<br />
Event ID:       9646<br />
Date:           7/19/2010<br />
Time:           3:45:47 PM<br />
User:           N/A<br />
Computer:       MYEXCHANGE<br />
Description:<br />
Mapi session &#8220;/o=ORG/ou=SITE/cn=Recipients/cn=myuser&#8221; exceeded the maximum of 500 objects of type &#8220;objtFolder&#8221;.</p>
<p>After a little bit of googling I found an article (<a href="http://support.microsoft.com/kb/830829/en-us">http://support.microsoft.com/kb/830829/en-us</a>) which is talking about similar issue and increasing the limits on Object types that you see in event viewer should fix the issue. I tried increasing the <strong>ObjFolder</strong> limit to 1000(note: 500 is the default; if you don&#8217;t find this key, it is safe to create one as per KB) on my exchange server but still it didn&#8217;t work and was saying exceeded the limit of 1000 this time. At this point I was not sure what was the optimum value to which I should increase this limit to make the restoration happen. As I didn&#8217;t find answer to this question in google, I polled one of friend who is with MS and knows more about exchange. He said there are no limits defined as such and it&#8217;s a trial and error method we should try. I bumped it to 10,000 this time and restoration worked. Along with this informaiton, my friend passed me a note as well. The more limit you put the more the load on your exchange server. So, be cautious while increasing the limits and I prefer to do it during off hours so that load will be less on the server and your users will be away anyways and that also gives you ample time to troubleshoot any unforeseen issues.</p>
<p>Additional note: While trying this you might see events about exceeding the limits of other object types described in aforementioned KB. You should create necessary registry keys for them as well to make your restoration suceessfull. <strong>Don&#8217;t forget to revert your settings once you are done with restoration; otherwise it will impact your server performance</strong>. Generally this will come into effect after store restart. Otherwise you can wait for 15-30 mins to make store pick these changes without restarting the IS.</p>
<p>Hope this information helps you.</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/exchange-2007/case-of-problems-in-recoverying-emails-recover-deleted-items-option-in-outlook-fixed/625/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Windows 2008 R2 supports Exchange 2007 now</title>
		<link>http://techibee.com/exchange-2007/windows-2008-r2-supports-exchange-2007-now/511</link>
		<comments>http://techibee.com/exchange-2007/windows-2008-r2-supports-exchange-2007-now/511#comments</comments>
		<pubDate>Sat, 26 Jun 2010 15:26:07 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange 2007 on Windows 2008 R2]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=511</guid>
		<description><![CDATA[With recent service pack(SP3), exchange started supporting installation on Windows 2008 R2. More details at http://msexchangeteam.com/archive/2010/06/21/455145.aspx]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-5120"></div></div><p>With recent service pack(SP3), exchange started supporting installation on Windows 2008 R2. More details at <a href="http://msexchangeteam.com/archive/2010/06/21/455145.aspx">http://msexchangeteam.com/archive/2010/06/21/455145.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/exchange-2007/windows-2008-r2-supports-exchange-2007-now/511/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS says, having no access to internet will cause exchange to timeout at times</title>
		<link>http://techibee.com/exchange-2007/ms-says-having-no-access-to-internet-will-cause-exchange-to-timeout-at-times/501</link>
		<comments>http://techibee.com/exchange-2007/ms-says-having-no-access-to-internet-will-cause-exchange-to-timeout-at-times/501#comments</comments>
		<pubDate>Sun, 06 Jun 2010 17:50:23 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=501</guid>
		<description><![CDATA[Are you facing frequent time out issues with your exchange server? Your problem might be related to the components described in http://msexchangeteam.com/archive/2010/05/14/454877.aspx.]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-5020"></div></div><p>Are you facing frequent time out issues with your exchange server? Your problem might be related to the components described in <a href="http://msexchangeteam.com/archive/2010/05/14/454877.aspx">http://msexchangeteam.com/archive/2010/05/14/454877.aspx</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/exchange-2007/ms-says-having-no-access-to-internet-will-cause-exchange-to-timeout-at-times/501/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to check mailbox creation time</title>
		<link>http://techibee.com/exchange-2007/how-to-check-mailbox-creation-time/418</link>
		<comments>http://techibee.com/exchange-2007/how-to-check-mailbox-creation-time/418#comments</comments>
		<pubDate>Thu, 08 Apr 2010 12:45:00 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[get mailbox creation time]]></category>
		<category><![CDATA[powershell to get mailbox creation time]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=418</guid>
		<description><![CDATA[If you are interested to know when your mailbox is created, try below PowerShell Oneliner&#8230;Basically what this does is, it uses Outlook application and fetches one of it&#8217;s schema property named PR_CREATION_TIME which contains the mailbox creation time. (New-Object -ComObject Outlook.Application).Session.DefaultStore.GetRootFolder().PropertyAccessor.GetProperty(http://schemas.microsoft.com/mapi/proptag/0x0E580102) [Source:Shavy Blog]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-4190"></div></div><p>If you are interested to know when your mailbox is created, try below PowerShell Oneliner&#8230;Basically what this does is, it uses Outlook application and fetches one of it&#8217;s schema property named PR_CREATION_TIME which contains the mailbox creation time.</p>
<blockquote><p>(<strong>New-Object</strong> <em>-ComObject</em> Outlook.Application).Session.DefaultStore.GetRootFolder().PropertyAccessor.GetProperty(<a href="http://schemas.microsoft.com/mapi/proptag/0x0E580102">http://schemas.microsoft.com/mapi/proptag/0x0E580102</a>)</p></blockquote>
<p>[Source:<a href="http://blogs.microsoft.co.il/blogs/scriptfanatic/archive/2010/04/08/mailbox-creation-time.aspx" target="_blank">Shavy Blog</a>] </p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/exchange-2007/how-to-check-mailbox-creation-time/418/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change default search scope in Exchange 2007</title>
		<link>http://techibee.com/exchange-2007/how-to-change-default-search-scope-in-exchange-2007/379</link>
		<comments>http://techibee.com/exchange-2007/how-to-change-default-search-scope-in-exchange-2007/379#comments</comments>
		<pubDate>Wed, 24 Mar 2010 20:18:00 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=379</guid>
		<description><![CDATA[While executing commands like Get-Mailbox, you often receive errors like identify is not found in default search scope. This you will see in a multi domain environment in general. In such cases, either you need to make the environment to look in whole forest for objects or ask powershell/cmdlet to ignore the scope.  Here are the two ways I [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-3800"></div></div><p>While executing commands like Get-Mailbox, you often receive errors like identify is not found in default search scope. This you will see in a multi domain environment in general. In such cases, either you need to make the environment to look in whole forest for objects or ask powershell/cmdlet to ignore the scope. </p>
<p>Here are the two ways I am talking about&#8230;</p>
<p><strong>Set the search scope to forest level</strong> :- to do this, execute the below command</p>
<blockquote><p>$AdminSessionADSettings.ViewEntireForest = $true</p>
</blockquote>
<p><strong>Make cmdlet to ignore the scope:-</strong> to do this, pass -ignoredefaultscope argument to cmdlet</p>
<blockquote><p>Get-Mailbox -IgnoreDefaultScope -Identity &#8220;cn=username,ou=ouname,dc=domainname,dc=com&#8221;</p>
</blockquote>
<p>Note that, incase of ignore default scope, you should parse only DN to -identity parameter.</p>
<p>Let me know if you figureout some other way.</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/exchange-2007/how-to-change-default-search-scope-in-exchange-2007/379/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Notification about meeting request forwards in Exchange 2007</title>
		<link>http://techibee.com/exchange-2007/notification-about-meeting-request-forwards-in-exchange-2007/246</link>
		<comments>http://techibee.com/exchange-2007/notification-about-meeting-request-forwards-in-exchange-2007/246#comments</comments>
		<pubDate>Thu, 21 Jan 2010 18:47:19 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Exchange 2007]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=246</guid>
		<description><![CDATA[When a Exchange 2007 user forwards a meeting request to someone, the meeting organizer will get a Notification with subject &#8220;Meeting Forward Notification: [actual meeting subject]&#8221; saying that meeting request is forwarded to people listed in notification email body. Though Microsoft says that it is a new feature, many of the users felt it annoying. [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-2470"></div></div><p>When a Exchange 2007 user forwards a meeting request to someone, the meeting organizer will get a Notification with subject &#8220;Meeting Forward Notification: [actual meeting subject]&#8221; saying that meeting request is forwarded to people listed in notification email body. Though Microsoft says that it is a new feature, many of the users felt it annoying. In this article I am going to talk about how to disable this behavior.</p>
<p>To disable this functionality for a single mailbox, use the below cmdlet</p>
<blockquote><p>Get-MailboxCalendarSettings -Identity user1 | Set-MailboxCalendarSettings -RemoveForwardedMeetingNotifications $true</p></blockquote>
<p><span style="text-decoration: underline;"><strong>Note: </strong></span> You can not really disable this behavior(or I haven&#8217;t come across any such procedure), but by applying above procedure, you are making meeting request forward notification messages to go directly into &#8220;Deleted Items&#8221;.  This way users won&#8217;t get annoyed with these notification messages. Alternately,  you can configure a HTS rule to identify and drop messages with subject containing the word, &#8220;Meeting Forward Notification&#8221;.</p>
<p>Happy Learning..,<br />
Sitaram Pamarthi.</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/exchange-2007/notification-about-meeting-request-forwards-in-exchange-2007/246/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

