<?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>Vishal Vasu&#039;s Blog &#187; Exchange 2010</title>
	<atom:link href="http://www.vishalvasu.com/tag/exchange-2010/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vishalvasu.com</link>
	<description>Thoughts, Passion, Technology</description>
	<lastBuildDate>Wed, 04 Jan 2012 08:23:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Mailbox Report Script for Exchange Server</title>
		<link>http://www.vishalvasu.com/mailbox-report-script-for-exchange-server/</link>
		<comments>http://www.vishalvasu.com/mailbox-report-script-for-exchange-server/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 11:31:53 +0000</pubDate>
		<dc:creator>Vishal Vasu</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Windows Server 2008]]></category>

		<guid isPermaLink="false">http://www.vishalvasu.com/?p=455</guid>
		<description><![CDATA[One of the tasks that every Exchange Server administrator faces as part of their daily or weekly maintenance is getting the mailbox size report of the Exchange Server. The PowerShell commands do help in getting the relevant data, but doing this rudementary task manually everytime is painstaking. Here is a small script which can used [...]]]></description>
			<content:encoded><![CDATA[<p>One of the tasks that every Exchange Server administrator faces as part of their daily or weekly maintenance is getting the mailbox size report of the Exchange Server. The PowerShell commands do help in getting the relevant data, but doing this rudementary task manually everytime is painstaking. Here is a small script which can used to generate the mailbox statistics report and then automatically email the same as an attachment. To automate this further, one can create a Scheduled Task in Task Manager so that it runs at the specified interval.</p>
<pre>###Exchange Mailbox Statistics Script</pre>
<pre>###Modify Variable Data
$FromAddress = "noreply@domain.com"
$ToAddress = "administrator@domain.com"
$MessageSubject = "Exchange Mailbox Report"
$MessageBody = "Mailbox Statistics of Exchange Server is attached with this email."
$SendingServer = "exchangeserver.yourdomain.com"</pre>
<pre>####DO NOT EDIT BELOW THIS LINE</pre>
<pre>###Get Stats and Prepare Text File
Get-MailboxStatistics | Sort-Object TotalItemSize -Descending | ft DisplayName,@{label="TotalItemSize(MB)";expression={$_.TotalItemSize.Value.ToMB()}}, ItemCount, StorageLimitStatus &gt; mailboxes.txt</pre>
<pre>
###Create Email and Attach Report
$SMTPMessage = New-Object System.Net.Mail.MailMessage $FromAddress, $ToAddress,
$MessageSubject, $MessageBody
$Attachment = New-Object Net.Mail.Attachment("mailboxes.txt")
$SMTPMessage.Attachments.Add($Attachment)</pre>
<pre>###Send Email
$SMTPClient = New-Object System.Net.Mail.SMTPClient $SendingServer
$SMTPClient.Send($SMTPMessage)</pre>
<p>Hope the above script helps and saves the administration time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vishalvasu.com/mailbox-report-script-for-exchange-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TMG Managed Control Service, Exchange Edge and FPE</title>
		<link>http://www.vishalvasu.com/tmg-managed-control-service-exchange-edge-and-fpe/</link>
		<comments>http://www.vishalvasu.com/tmg-managed-control-service-exchange-edge-and-fpe/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 10:19:56 +0000</pubDate>
		<dc:creator>Vishal Vasu</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[ISA Server and Forefront]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[ISA Server]]></category>
		<category><![CDATA[Microsoft Forefront]]></category>

		<guid isPermaLink="false">http://www.vishalvasu.com/?p=426</guid>
		<description><![CDATA[Recently I encountered TMG Managed Control Service crashing at a client site where they have been using TMG as a back-end firewall. The same server was also being used as an Exchange 2007 Edge server also running Forefront Protection for Exchange 2010. All server roles were patched with the latest updates and rollups. The connectivity [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I encountered TMG Managed Control Service crashing at a client site where they have been using TMG as a back-end firewall. The same server was also being used as an Exchange 2007 Edge server also running Forefront Protection for Exchange 2010. All server roles were patched with the latest updates and rollups. The connectivity between the Edge and the Hub was implemented successfully and also verified using Test-EdgeSync. TMG also showed Edge and Hub connectivity. Everything looked healthy but the IT administrator was receiving email alerts with the following:</p>
<p><strong><em>&#8220;Email Policy could not be applied. Value does not fall within the expected range.&#8221;</em></strong></p>
<p>Went to the services MMC and tried to start the TMG Managed Control Service manually. The service failed to start. Upon checking the event logs, I found that the <strong>Application Log</strong> showed:</p>
<p> - Event ID 31309: E-mail policy configuration settings cannot be applied.<br />
- Event ID 31308: The Forefront TMG Managed Control service failed to initialize. Error information: The type initializer for &#8216;Microsoft.Isa.Smtp.ExchangeRunspace&#8217; threw an exception.<br />
- Event ID 31307: The Forefront TMG Managed Control service was stopped gracefully.</p>
<p>and the System Log showed Event ID 7023: The Microsoft Forefront TMG Managed Control service terminated with the following error: %%-2146233036</p>
<p>The next step was to check the Edge and Hub communication and as expected it should that the sync was not working. TMG console showed everything configured and all Anti-Spam rules enabled. I had no choice but to pick up the phone and shake someone up in Microsoft technical team for an answer. Sadly, no clue from there too, but one thing that came up in the discussion was to clear all Anti-Spam settings and then give this a reboot. Long process, but to cut things short, here is the solution that worked.</p>
<p>For those facing this issue, open up Exchange Shell on the Edge server and run:</p>
<p><strong><em>Get-IpBlockListEntry</em></strong></p>
<p>This should come up with a list of entries. The next step is to remove these. Run the following command:</p>
<p><em><strong>Get-IpBlockListEntry | RemoveIpBlockListEntry</strong></em></p>
<p>To clear all entries, answer with an &#8220;A&#8221;. Started the service this time and the TMG Managed Control Service started successfully.</p>
<p>Though running the command of <strong>Get-IpBlockListEntry</strong> after 10-15 minutes showed that the list was building up once again and after 30 minutes the TMG managed Control Service crashed once again.</p>
<p>The only workaround that I could implement to fix this permanently was to disable the <strong>Sender Reputation Service</strong> in TMG. It has been more than a week now and the TMG Managed Control Service has not crashed once.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vishalvasu.com/tmg-managed-control-service-exchange-edge-and-fpe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It’s a bird…It’s a plane…It’s Exchange 2010!</title>
		<link>http://www.vishalvasu.com/exchange-2010/</link>
		<comments>http://www.vishalvasu.com/exchange-2010/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 06:18:37 +0000</pubDate>
		<dc:creator>Vishal Vasu</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://www.vishalvasu.com/?p=156</guid>
		<description><![CDATA[      Microsoft officially released a public Beta of Exchange 2010 which was formerly code named ‘Exchange 14”. I was already blinded by the features that Exchange 2009 provided – Unified Messaging being the best of the many and now we have Exchange 2010 in the pipeline. There are so many improvements in this [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://www.vishalvasu.com/uploaded_images/exchange_2010.bmp" alt="" width="172" height="76" /></p>
<p> </p>
<p> </p>
<p> </p>
<p class="MsoNormal" style="margin: 0in 0in 10pt; line-height: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto;"><span style="font-size: 12pt; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman';"><span style="font-family: Calibri;">Microsoft officially released a public Beta of Exchange 2010 which was formerly code named ‘Exchange 14”. I was already blinded by the features that Exchange 2009 provided – Unified Messaging being the best of the many and now we have Exchange 2010 in the pipeline. There are so many improvements in this version that I can’t decide which ones to highlight and talk about first. The product claims to achieve high levels of reliability with greater flexibility, enhanced user experiences and increased protection for business communications.</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt; line-height: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto;"><span style="font-size: 12pt; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman';"><span style="font-family: Calibri;"><strong>OWA (Outlook Web Access)</strong> has been scaled out to support Internet Explorer – 7 and 8, Firefox 3 and Safari 3. Users will no longer be restricted to using Internet Explorer. OWA has been further improved to provide a web user with all the functionality of Outlook desktop client. Also, a new feature of conversation view has been added greatly reducing mailbox clutter.</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt; line-height: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto;"><span style="font-size: 12pt; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman';"><span style="font-family: Calibri;"><strong style="mso-bidi-font-weight: normal;">V<span style="mso-bidi-font-weight: bold;">oice Mail Preview</span></strong> is another feature that deserves applause. OWA and Outlook 2010 support voice mail previews. Exchange 2010 automatically generates text based preview of a voice mail message received. Not sure how accurate this is going to be but the concept itself is worth it.</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt; line-height: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto;"><span style="font-size: 12pt; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman';"><span style="font-family: Calibri;">Users will be able to create and moderate their own <strong>Distribution Groups</strong> and can also decide who they want their <strong>Calendar</strong> and <strong>Contacts</strong> shared with.</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt; line-height: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto;"><span style="font-size: 12pt; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman';"><span style="font-family: Calibri;">Ever got bounce backs after sending emails with large attachments or accidently sent a personal email to everyone in your company? Now you need not worry about that. <strong>MailTips</strong> is a new feature added up which prompts you before you send a message.</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt; line-height: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto;"><span style="font-size: 12pt; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman';"><span style="font-family: Calibri;"><strong>Message Tracking</strong> and <strong>Delivery Reports</strong> has been improvised in Exchange 2010 – works well inside the Exchange Organization and federated servers.</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt; line-height: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto;"><span style="font-size: 12pt; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman';"><span style="font-family: Calibri;">No more Administrator privileges required to scan or search other mailboxes in the organization to meet compliance. Authorized users can perform <strong>MultiMailbox Searches</strong> without the use of administrative rights.</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt; line-height: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto;"><span style="font-size: 12pt; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman';"><span style="font-family: Calibri;">Self service via <strong>Exchange Control Panel (ECP)</strong> is now made available to the end-user. This means that a user can now update their personal details in their account which earlier required a help desk call or ticket.</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt; line-height: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto;"><span style="font-size: 12pt; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman';"><span style="font-family: Calibri;">Database portability and multiple options for high availability were already made available in Exchange 2009. These have been further improved in Exchange 2010 and also open possibilities of reducing the operations costs. <strong>Database Availability Groups</strong> now gives redundant mail stores with continuous replication. <strong>Database-level Failover</strong> gives automatic recovery and the I/O optimizations make Exchange 2010 better suited for SATA drives.</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt; line-height: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto;"><span style="font-size: 12pt; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman';"><span style="font-family: Calibri;">These are just some of the powerful features that have been released in the Beta. We may be having a few more added to these in the final specimen. Overall the new version of Exchange looks very promising and exciting.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vishalvasu.com/exchange-2010/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.vishalvasu.com/tag/exchange-2010/feed/ ) in 6.60455 seconds, on Feb 6th, 2012 at 3:29 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 6th, 2012 at 4:29 pm UTC -->
