<?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>Email management, storage and security for business email admins &#187; microsoft exchange</title>
	<atom:link href="http://www.theemailadmin.com/tag/microsoft-exchange/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.theemailadmin.com</link>
	<description></description>
	<lastBuildDate>Fri, 10 Feb 2012 14:00:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>PowerShell Basics in Microsoft Exchange 2010</title>
		<link>http://www.theemailadmin.com/2011/09/powershell-basics-in-microsoft-exchange-2010/</link>
		<comments>http://www.theemailadmin.com/2011/09/powershell-basics-in-microsoft-exchange-2010/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 14:00:33 +0000</pubDate>
		<dc:creator>Jeff Orloff</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Graphical user interface]]></category>
		<category><![CDATA[Groupware]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[microsoft exchange]]></category>
		<category><![CDATA[Microsoft Exchange Server]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[User (computing)]]></category>
		<category><![CDATA[Windows PowerShell]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=4599</guid>
		<description><![CDATA[There are many reasons why an organization would make the move to Exchange Server 2010. Features like email archiving, increased discovery capabilities, greater flexibility and the lure of anywhere access make this email solution a promising one. However, these features are generally ones that are used to sell management on an upgrade or switch. For [...]<p><a href="http://www.theemailadmin.com/2011/09/powershell-basics-in-microsoft-exchange-2010/">PowerShell Basics in Microsoft Exchange 2010</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F09%2Fpowershell-basics-in-microsoft-exchange-2010%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2011_2F09_2Fpowershell-basics-in-microsoft-exchange-2010_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F09%2Fpowershell-basics-in-microsoft-exchange-2010%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2011/09/Windows_PowerShell_icon.png"><img class="alignright size-full wp-image-4600" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2011/09/Windows_PowerShell_icon.png" alt="" width="205" height="205" /></a>There are many reasons why an organization would make the move to Exchange Server 2010. Features like email archiving, increased discovery capabilities, greater flexibility and the lure of anywhere access make this email solution a promising one.</p>
<p>However, these features are generally ones that are used to sell management on an upgrade or switch. For administrators, the PowerShell is usually a feature that gets them on board.<span id="more-4599"></span></p>
<p>The PowerShell feature of Microsoft Exchange is similar to what some email administrators who worked in a UNIX-based environment are accustomed to.</p>
<p>Giving admins the ability to automate repetitive tasks with scripts, called cmdlets, helps save time as many find navigating through GUI menus and submenus looking for the right actions to be wasteful when the same thing can be done by running a few lines of code.</p>
<h2>Understanding the basics</h2>
<p>PowerShell is installed by default on Exchange 2010. To launch it you will need to be on a workstation, or server, where you have installed the Exchange Management Tools. By clicking on Start | All Programs | Exchange Server 2010, you will be presented with the Exchange Management Shell shortcut. Clicking on this icon will launch the shell for you to get started.</p>
<p>Cmdlets follow a pretty simple syntax. To run a command in PowerShell you simply type in the name of the cmdlet followed by a hyphen and then any parameters. The value of the parameter comes after the parameter name itself and can be wither option or required depending upon which cmdlet you are running. So an example cmdlet would look like this:</p>
<pre><strong>Set –Mailbox username –MaxSendSize 5mb -MaxReceive Size 10mb</strong></pre>
<p>The result would be to modify the user’s mailbox so that he or she could only send messages under 5mb but would allow them to receive messages up to 10mb. Of course you would need to supply an actual username.</p>
<p>There are times when PowerShell will ask for confirmation before the cmdlet takes the requested action. For example, if you were removing a mailbox the shell will ask you “<em>Are you sure you want to perform this action?</em>” followed by an explanation of what you are about to do.</p>
<p>While you can easily hit the Y key to confirm, or the A key to say Yes to All, you can also turn off the confirmation with the <strong>–Confirm:$false</strong> parameter.</p>
<p>Parameters also don’t always have to be typed out fully. You can use a shortcut by typing enough characters of the parameter name to differentiate it from any other parameters. An example of this is the <strong>–Identity</strong> parameter. A valid substitution for this can be <strong>–id</strong> since this is unique enough to meet the requirement. Since –Identity is one of the most frequently used parameters, this shortcut can be quite helpful.</p>
<p>Wildcards can also be used cmdlets. To use a wildcard the asterisk, &#8220;*&#8221;, is entered after the characters you select. An example of this can be seen in the following where we set the mailbox sizes for only those that start with the letter &#8220;a&#8221;:</p>
<pre><strong>Set –Mailbox –id a* –MaxSendSize 5mb -MaxReceive Size 10mb</strong></pre>
<p>The final tip to getting started in PowerShell deals with the use of single and double quotes in your scripts.</p>
<p>Whenever the values for your parameters require a space, the values need to be enclosed. Most commonly the single quotes would be used for this as in the following example:</p>
<pre><strong>Get-Mailbox -OrganizationalUnit 'yourdomain.com/Management Users/Chicago'</strong></pre>
<p>This cmdlet will retrieve information for all uses in the specified OU.</p>
<p>Double quotes are used when you expand a variable within a string:</p>
<pre><strong>&amp;City=Chicago</strong></pre>
<pre><strong>Get-Mailbox -OrganizationalUnit “yourdomain.com/Management Users/$City”</strong></pre>
<h2>Get yourself some help</h2>
<p>The help system for any scripting should be your first resource if you run into trouble. When it comes to the PowerShell, help is just a command away.</p>
<p>Get –Help followed by the name of the cmdlet is all you need to type. If you want to get more information about the Get –Mailbox cmdlet then you would enter:</p>
<pre><strong>Get –Help Get –Mailbox</strong></pre>
<p>To get more specific information, you can use these switches:</p>
<ul>
<li><em>-Detailed</em> – Provides parameter descriptions and examples</li>
<li><em>-Examples</em> – Provides multiple examples of how the cmdlet can be used</li>
<li><em>-Full</em> – Provides you with the all the help content regarding the cmdlet</li>
</ul>
<p>So for everything dealing with the Get –Mailbox cmdlet you would type:</p>
<pre><strong>Get –Help Get –Mailbox –Full</strong></pre>
<p>Again, all of these actions can be completed using the GUI provided with Microsoft Exchange 2010, but having a strong familiarity with the PowerShell not only allows you to get through some tasks a bit quicker, but can be a lifesaver in many circumstances.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2011/09/powershell-basics-in-microsoft-exchange-2010/">PowerShell Basics in Microsoft Exchange 2010</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2011/09/powershell-basics-in-microsoft-exchange-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Microsoft Exchange Online Only Half-Baked?</title>
		<link>http://www.theemailadmin.com/2011/05/is-microsoft-exchange-online-only-half-baked/</link>
		<comments>http://www.theemailadmin.com/2011/05/is-microsoft-exchange-online-only-half-baked/#comments</comments>
		<pubDate>Wed, 25 May 2011 09:08:40 +0000</pubDate>
		<dc:creator>Jeff Orloff</dc:creator>
				<category><![CDATA[Email archiving & storage]]></category>
		<category><![CDATA[email management]]></category>
		<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[Groupware]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[microsoft exchange]]></category>
		<category><![CDATA[Microsoft Exchange Server]]></category>
		<category><![CDATA[Microsoft Office 365]]></category>
		<category><![CDATA[Microsoft Online Services]]></category>
		<category><![CDATA[Office 365]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=4053</guid>
		<description><![CDATA[With another round of issues facing users of Microsoft’s Exchange Online service the launch of the Business Professional Online Services replacement, Office 365, is starting to face questions by consumers who are starting to think that Microsoft’s cloud based services may not have much of a silver lining. Exchange Online is a hosted messaging solution, [...]<p><a href="http://www.theemailadmin.com/2011/05/is-microsoft-exchange-online-only-half-baked/">Is Microsoft Exchange Online Only Half-Baked?</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F05%2Fis-microsoft-exchange-online-only-half-baked%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2011_2F05_2Fis-microsoft-exchange-online-only-half-baked_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F05%2Fis-microsoft-exchange-online-only-half-baked%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="size-medium wp-image-4054 alignright" style="margin: 10px; border: 0px solid black;" src="http://www.theemailadmin.com/wp-content/uploads/2011/05/online-exchange-online-300x188.jpg" alt="online-exchange online" width="240" height="150" /></p>
<p>With another round of issues facing users of Microsoft’s Exchange Online service the launch of the Business Professional Online Services replacement, Office 365, is starting to face questions by consumers who are starting to think that Microsoft’s cloud based services may not have much of a silver lining.</p>
<p>Exchange Online is a hosted messaging solution, like Google’s Gmail for businesses, and is based on the same technologies that run the ever popular Exchange server. However as this is a hosted solution, the business does not need to dedicate the same resources towards messaging as they would if they were running their own email servers on-site. Since messages are stored in the cloud, Exchange Online users have &#8220;From virtually-anywhere&#8221; access to e-mail. Also touted by Microsoft’s website is:</p>
<ul>
<li>Improved email security</li>
<li>Enhanced operations efficiency for a company’s IT staff</li>
<li>25-gigabyte mailbox storage size for the standard license</li>
</ul>
<p>Most importantly, users who have become reliant on Microsoft Outlook and its tools can find the move to hosted email seamless unlike the issues that arise when using Outlook with other hosted email services.</p>
<p><span id="more-4053"></span><strong>What seems to be the problem?</strong></p>
<p>In early May, most BPOS users experienced loss of service for up to nine hours one day followed by sporadic outages over the next couple of days. Without email services, many businesses found their productivity crippled.</p>
<p>Ironically, email services hosted in Microsoft’s beta offering of Office 365 were not affected by the outages and service here did not have any of the issues that BPOS had. However the timing of these recent problems couldn’t be any worse.</p>
<p>Microsoft’s reputation is still tarnished by the problems associated with Windows Vista and Internet Explorer is often thought of as an inferior product when compared to competitors, so making headlines once again due to service related issues is not the best thing when launching a new product. Even if the product addresses the problems you are infamous for.</p>
<p><strong>Is there light at the end of the tunnel?</strong></p>
<p>Most people understand that there is no such thing as 100 percent uptime when it comes to technology. Ask Gmail users if their service is always up. Things are bound to fail at times. And to Microsoft’s credit they responded to the problems quickly, provided users with a temporary workaround to restore service and they identified the root cause of the issue in a short period of time. Unfortunately most people aren’t in the habit of giving Microsoft much credit for anything.</p>
<p><strong>What we can learn from this</strong></p>
<p>Email administrators understand all too well the importance email service plays in the ability for a business to operate efficiently. When email is down workers grow impatient, management grows frustrated and the email administrator’s popularity rapidly wanes.</p>
<p>In order to handle a disruption in productivity any business that relies on the cloud for essential services, like email, should have a back-up plan. One thing that is promising with Office 365 is that it offers a hybrid approach to email. Using Exchange Server 2010 on site in the hybrid deployment scenario that Microsoft offers can help an organization better deal with outages in their cloud services. Conversely, being able to access email via the cloud keeps things moving when the Exchange server goes down as well.</p>
<p><a target="_blank" href="http://community.office365.com/en-us/w/exchange/425.aspx" onclick="pageTracker._trackPageview('/outgoing/community.office365.com/en-us/w/exchange/425.aspx?referer=');">Microsoft’s Office 365 community website</a> points out that the cross-premise messaging solution (hybrid deployment) offers the following features to help lure potential customers:</p>
<ul>
<li>Mail routing between on-premises and cloud-based organizations</li>
<li>Mail routing with a shared domain namespace (For example, both on-premises and cloud-based organizations use the @contoso.com SMTP domain)</li>
<li>Unified global address list, also called a “shared address book”</li>
<li>Free/busy and calendar sharing between on-premises and cloud-based organizations</li>
<li>Centralized mail flow control; the on-premises organization can control mail flow for both organizations.</li>
<li>A single Outlook Web App URL for both the on-premises and cloud-based organizations</li>
<li>Move existing on-premises mailboxes to the cloud-based organization</li>
<li>Centralized mailbox administration using the on-premises Exchange Management Console (EMC)</li>
<li>Message tracking, MailTips, and multi-mailbox search between on-premises and cloud-based organizations</li>
</ul>
<p>Despite recent problems, Office 365’s email solution looks rather promising. One Microsoft is able to do some PR related damage control it looks like they will be able to make a solid run at cloud based email services and give Google Mail something to think about.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2011/05/is-microsoft-exchange-online-only-half-baked/">Is Microsoft Exchange Online Only Half-Baked?</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2011/05/is-microsoft-exchange-online-only-half-baked/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Comparing Microsoft Exchange with Google Apps for Email</title>
		<link>http://www.theemailadmin.com/2011/04/comparing-microsoft-exchange-with-google-apps-for-email/</link>
		<comments>http://www.theemailadmin.com/2011/04/comparing-microsoft-exchange-with-google-apps-for-email/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 13:22:19 +0000</pubDate>
		<dc:creator>Paul Mah</dc:creator>
				<category><![CDATA[email management]]></category>
		<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[microsoft exchange]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=3813</guid>
		<description><![CDATA[Exchange administrators are probably quite familiar with management pressure or subtle ‘suggestions&#8217; to migrate for a cloud-based email service, typically epitomized in the form of Google Apps.  As someone who believes in utilizing the best tool for the job, I am of the opinion that there are businesses and organizations that will certainly benefit from [...]<p><a href="http://www.theemailadmin.com/2011/04/comparing-microsoft-exchange-with-google-apps-for-email/">Comparing Microsoft Exchange with Google Apps for Email</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F04%2Fcomparing-microsoft-exchange-with-google-apps-for-email%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2011_2F04_2Fcomparing-microsoft-exchange-with-google-apps-for-email_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F04%2Fcomparing-microsoft-exchange-with-google-apps-for-email%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="alignright size-full wp-image-3814" src="http://www.theemailadmin.com/wp-content/uploads/2011/03/Microsoft_Google.jpg" alt="Microsoft_Google" width="300" height="150" />Exchange administrators are probably quite familiar with management pressure or subtle ‘suggestions&#8217; to migrate for a cloud-based email service, typically epitomized in the form of Google Apps.  As someone who believes in utilizing the best tool for the job, I am of the opinion that there are businesses and organizations that will certainly benefit from shifting to a cloud-hosted email service.  However, some companies might be opting for Google Apps due to what they hear about its supposed reliability and affordability, but neglecting to perform a factual evaluation.</p>
<p>While some might argue that a comparison of Microsoft Exchange with Google Apps is like trying to compare apples to oranges, there are fundamental similarities in an email service that we can use as a benchmark.</p>
<p><span id="more-3813"></span></p>
<ul>
<li><strong>Reliability</strong></li>
</ul>
<p>Most readers must have heard of the <a href="http://www.theemailadmin.com/2011/03/the-big-gmail-crash-and-the-lesson-for-email-administrators/">Gmail Crash</a> that took place on the last weekend of February.  Triggered by an unexpected bug, I suppose it put rest to the idea that cloud-hosted services are infallible.  This incident confirms my personal opinion that a comparison of the system reliability and uptime is only meaningful up to a certain number of 9s, due to an inherent chaos (or Murphy&#8217;s Law) that cannot be anticipated.  When seen from this angle, a properly maintained Exchange Server is equivalent to a well-run cloud service, which brings me to the next point.</p>
<ul>
<li><strong>Maintenance</strong></li>
</ul>
<p>A typical on-premise version of Microsoft Exchange requires regular maintenance in the form of software updates and checks to ensure that system readings are within expected parameters.  As you can imagine, smaller businesses could find these tasks a hassle compared to the hands-off nature of a service like Google Apps.  Microsoft is not oblivious to the likelihood of businesses without dedicated administrators ditching Exchange Server however, and now offers the option of Hosted Exchange for businesses that wants the capabilities of Exchange Server without its maintenance overheads.</p>
<ul>
<li><strong>Data Backup</strong></li>
</ul>
<p>Despite the severity of the data corruption bug, Google has pretty much proven that it has a robust off-site backup regime that works.  Of course, this has not stopped a rash of hitherto unknown companies from coming forward to offer various data backup solutions in the wake of the incident, capitalizing on the desires of users and administrators who want more control over their archived data.  This is where Microsoft Exchange wins hands down in terms of management and access to archived email messages.  In contrast, some affected Gmail users were left in the dark for up to four days as Google scrambled to recover and restore from data backups.</p>
<ul>
<li><strong>Spam Filtering and Anti-Malware Protection</strong></li>
</ul>
<p>When it comes to spam filtering, there is no doubt that Gmail incorporates an exceptionally good spam engine.  In addition, users can create their own filters to trash email messages based on custom parameters.  Exchange does offer the ability to install complex server-side filters too; though my personal experience pegs its default spam capabilities as being the weaker of the two.  However, Exchange Server when set up on-premise does offer far greater flexibility when it comes to deploying third party tools, such as using GFI&#8217;s <a target="_blank" href="http://www.gfi.com/mes" onclick="pageTracker._trackPageview('/outgoing/www.gfi.com/mes?referer=');">MailEssentials</a> for spam filtering and Microsoft&#8217;s <a target="_blank" href="http://www.microsoft.com/forefront/protection-for-exchange/en/us/default.aspx" onclick="pageTracker._trackPageview('/outgoing/www.microsoft.com/forefront/protection-for-exchange/en/us/default.aspx?referer=');">Forefront Protection 2010 for Exchange Server</a> for a comprehensive security suite.</p>
<ul>
<li><strong>Usability</strong></li>
</ul>
<p>I&#8217;ve personally found Google&#8217;s Gmail interface to load rather briskly.  In addition, I am generally able to perform better searches via the Gmail search box than in Microsoft Outlook.  Ultimately however, I&#8217;ve found that I&#8217;m much more productive via Outlook 2010 with its threaded email view and ability to connect simultaneously to multiple Exchange Servers.  Similarly, administrators should also be cognizant that existing users might resist any changes from what they are comfortable with, be it Microsoft Outlook or the Outlook Web App.</p>
<ul>
<li><strong>Integration</strong></li>
</ul>
<p>Some of the business-centric capabilities touted by <a target="_blank" href="http://www.google.com/apps/index.html" onclick="pageTracker._trackPageview('/outgoing/www.google.com/apps/index.html?referer=');">Google Apps for Business</a> would be BlackBerry and Microsoft Outlook interoperability.  While Google has done an excellent job in creating tools that bridge between its cloud-based systems and end-user software such as Microsoft Outlook, administrators must remember that these tools do not necessarily work perfectly.  Moreover, some of the support is achieved by additional software that must be installed on client-side devices (BlackBerry smartphone support).  I last looked into switching from my Exchange environment to Google Apps late last year, but I was forced to discard the idea after research showed complaints about the presence of software bugs as well as user dissatisfaction on some fronts.</p>
<p>Feel free to chip in below if you have any other comments.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2011/04/comparing-microsoft-exchange-with-google-apps-for-email/">Comparing Microsoft Exchange with Google Apps for Email</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2011/04/comparing-microsoft-exchange-with-google-apps-for-email/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Public Beta of Exchange 2010 is Available</title>
		<link>http://www.theemailadmin.com/2009/04/the-public-beta-of-exchange-2010-is-available/</link>
		<comments>http://www.theemailadmin.com/2009/04/the-public-beta-of-exchange-2010-is-available/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 07:41:05 +0000</pubDate>
		<dc:creator>Brett Callow</dc:creator>
				<category><![CDATA[email management]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[microsoft exchange]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=801</guid>
		<description><![CDATA[On 15th April, Microsoft announced the availability of Exchange 2010, the successor to Exchange Server 2007. According to Microsoft: Exchange 2010 is part of the next wave of Microsoft Office-related products and is the first server in a new generation of Microsoft server technology built from the ground up to work on-premises and as an [...]<p><a href="http://www.theemailadmin.com/2009/04/the-public-beta-of-exchange-2010-is-available/">The Public Beta of Exchange 2010 is Available</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2009%2F04%2Fthe-public-beta-of-exchange-2010-is-available%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2009_2F04_2Fthe-public-beta-of-exchange-2010-is-available_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2009%2F04%2Fthe-public-beta-of-exchange-2010-is-available%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>On 15th April, Microsoft <a target="_blank" href="http://www.microsoft.com/presspass/press/2009/apr09/04-15Exchange2010PR.mspx" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.microsoft.com/presspass/press/2009/apr09/04-15Exchange2010PR.mspx?referer=');">announced</a> the availability of Exchange 2010, the successor to Exchange Server 2007. According to Microsoft:</p>
<blockquote><p>Exchange 2010 is part of the next wave of Microsoft Office-related products and is the first server in a new generation of Microsoft server technology built from the ground up to work on-premises and as an online service. This release of Exchange 2010 introduces a new integrated e-mail archive and features to help reduce costs and improve the user experience.</p></blockquote>
<p>What&#8217;s new in Exchange 2010? Here&#8217;s some details:<span id="more-801"></span></p>
<ul>
<li>Integrated archiving capabilities</li>
<li>Cross-browser support and integrated IM capabilities for OWA</li>
<li>A conversation view which will enable users to collapse messages into groups, streaming and reducing clutter in the inbox</li>
<li>Voicemail preview</li>
<li>MailTips which Microsoft say will, &#8220;Warn users before they commit an e-mail faux pas such as sending mail to large distribution groups, to recipients who are out of the office or to recipients outside the organization, helping protect against information leaks and reduce unnecessary e-mail messages.&#8221;</li>
</ul>
<p>The MailTips option certainly sounds interesting. I wonder whether it will prove to be more of a help or a hindrance.</p>
<p>You&#8217;ll be able to transition (no, an in-place upgrade is not an option) from either Exchange Server 2003 or 2007 but, if you&#8217;re running anything earlier, there will be no supported direct upgrade path all &#8211; but, no doubt, some third-parties will produce tools that will help make life easy for those wanting to switch from one of the ye olde versions.</p>
<p>You can grab a copy of the beta <a target="_blank" href="http://www.microsoft.com/exchange/2010/en/us/default.aspx" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.microsoft.com/exchange/2010/en/us/default.aspx?referer=');">here</a>. The Exchange 2010 TechNet forum is already open for business and can be accessed <a target="_blank" href="http://social.technet.microsoft.com/Forums/en-US/exchange2010/threads" target="_blank" onclick="pageTracker._trackPageview('/outgoing/social.technet.microsoft.com/Forums/en-US/exchange2010/threads?referer=');">here</a>. Be sure to let us know what you think.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2009/04/the-public-beta-of-exchange-2010-is-available/">The Public Beta of Exchange 2010 is Available</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2009/04/the-public-beta-of-exchange-2010-is-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Archive Stubbing Techniques Not Recommended</title>
		<link>http://www.theemailadmin.com/2009/04/ms-exchange-archive-stub-techniques/</link>
		<comments>http://www.theemailadmin.com/2009/04/ms-exchange-archive-stub-techniques/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 12:27:58 +0000</pubDate>
		<dc:creator>Carl E. Reid</dc:creator>
				<category><![CDATA[Compliance]]></category>
		<category><![CDATA[Email archiving & storage]]></category>
		<category><![CDATA[email management]]></category>
		<category><![CDATA[document management]]></category>
		<category><![CDATA[ediscovery]]></category>
		<category><![CDATA[email archiving]]></category>
		<category><![CDATA[email compliance]]></category>
		<category><![CDATA[microsoft exchange]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=663</guid>
		<description><![CDATA[The benefits associated with archiving Microsoft Exchange email and associated data, creates many cost effective solutions. Archiving facilitates government regulatory or civil litigation searches for ediscovery requests. It also allows for more complete archive journaling, and provides storage benefits for both mailbox growth and the various storage devices that can be utilized. Although lowering storage [...]<p><a href="http://www.theemailadmin.com/2009/04/ms-exchange-archive-stub-techniques/">Archive Stubbing Techniques Not Recommended</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2009%2F04%2Fms-exchange-archive-stub-techniques%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2009_2F04_2Fms-exchange-archive-stub-techniques_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2009%2F04%2Fms-exchange-archive-stub-techniques%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="alignright size-medium wp-image-665" title="Archive Stubbing Techniques Not Recommended" src="http://www.theemailadmin.com/wp-content/uploads/2009/03/email_31-300x167.jpg" alt="email_31" width="247" height="137" />The benefits associated with archiving Microsoft Exchange email and associated data, creates many cost effective solutions. Archiving facilitates government regulatory or civil litigation searches for ediscovery requests. It also allows for more complete archive journaling, and provides storage benefits for both mailbox growth and the various storage devices that can be utilized.</p>
<p>Although lowering storage reduction costs is a common denominator for email archiving, compliance requirements are moving more companies to implementing archiving strategies. Depending on the motivation factors, cost savings on storage are subject to interpretation by different people.  For some people, compressing email could reduce licensing, as well as storage hardware costs.  For others it may mean creating a mailbox for end users, which has virtually unlimited space.</p>
<p><span id="more-663"></span>The majority of Microsoft Exchange Server archiving solutions have some form of compression that reduces the size of overall archived emails.  For an Exchange email administrator, an unlimited space mailbox really just means eliminating the user responsibility of being concerned about having to archive their email. This allows mailboxes to grow as long as there is more than adequate disk space real estate available to allow seamless expansion.  The limitations of unlimited mailboxes are usually determined by the archiving options provided by the archiving solution. According to the <a target="_blank" href="http://www.ferris.com/2008/08/06/microsoft-recommends-against-stubbing/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.ferris.com/2008/08/06/microsoft-recommends-against-stubbing/?referer=');">Ferris Research blog</a>, Microsoft recommends against using stubbing techniques.  Microsoft further recommends using 3rd party email archiving solutions that allow configurations to move email messages completely out of the mailbox without leaving stubbing foot prints  inside the mailbox.</p>
<p>6 different stubbing techniques are provided below only for informational purposes, but <strong>are not best practices</strong> recommended by Microsoft.</p>
<ol>
<li>Substitute body and attachment with a plain text Stub</li>
<li>Substitute body attachment with HTML Stub</li>
<li>Maintain plain text body only with deleted attachment</li>
<li>Maintain HTML message body only, with deleted attachment</li>
<li>Maintain HTML body and image with deleted attachment</li>
<li>Message attachment residing in the archives</li>
</ol>
<p><strong>Will your current archiving procedures or planned archiving solution meet all future email storage requirements?</strong></p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2009/04/ms-exchange-archive-stub-techniques/">Archive Stubbing Techniques Not Recommended</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2009/04/ms-exchange-archive-stub-techniques/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Much Memory is Too Much?</title>
		<link>http://www.theemailadmin.com/2009/04/how-much-memory-is-too-much/</link>
		<comments>http://www.theemailadmin.com/2009/04/how-much-memory-is-too-much/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 12:23:55 +0000</pubDate>
		<dc:creator>Brett Callow</dc:creator>
				<category><![CDATA[email management]]></category>
		<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[microsoft exchange]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=678</guid>
		<description><![CDATA[“The more the better,” is a common mantra when it comes RAM but, in the case of Exchange Server 2007, that’s certainly not the case (OK, so it isn’t really the case in relation to other operating systems either, but that’s for another story). With Exchange Server, Microsoft recommend no more than 32 GB of [...]<p><a href="http://www.theemailadmin.com/2009/04/how-much-memory-is-too-much/">How Much Memory is Too Much?</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2009%2F04%2Fhow-much-memory-is-too-much%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2009_2F04_2Fhow-much-memory-is-too-much_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2009%2F04%2Fhow-much-memory-is-too-much%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>“The more the better,” is a common mantra when it comes RAM but, in the case of Exchange Server 2007, that’s certainly not the case (OK, so it isn’t really the case in relation to other operating systems either, but that’s for another story).</p>
<p>With Exchange Server, Microsoft recommend no more than 32 GB of RAM. That’s because a) more than 32 GB will not substantially improve performance (and so you’d be wasting your money) and b) it may actually negatively impact performance. Here’s why (<a target="_blank" href="http://msexchangeteam.com/archive/2007/01/16/432222.aspx" onclick="pageTracker._trackPageview('/outgoing/msexchangeteam.com/archive/2007/01/16/432222.aspx?referer=');">from Microsoft</a>):</p>
<blockquote><p>Cold state is defined as the state of the Mailbox server immediately following a server reboot or store.exe process restart. The Database Cache, which is used to cache database read/write operations, is small in size (or &#8220;cold&#8221;) during this period so it has a significantly diminished ability to reduce read I/O operations. As the Mailbox server processes messages, the Database Cache Size grows which increases the effectiveness of the cache and subsequently reduces the I/O footprint of the server. The larger the physical memory size of the server the longer it takes the Database Cache size to reach its optimal size. If the storage is designed/sized for a server with a large amount of physical RAM (&gt;32GB), and the I/O profile of the users assumes an optimal Database cache state (large/warm cache); then the client experience may be compromised due to insufficient disk performance during these &#8220;cold state&#8221; periods.</p></blockquote>
<p><span id="more-678"></span>So, does this mean that you need to put exactly 32 GB of memory into your Exchange Server in order to derive the best performance from it? Nope, it most certainly does not. Adding up to 32 GB wouldn’t degrade performance, but it wouldn’t necessarily improve performance either – and so you’d be wasting your money.  The optimal amount of RAM that you’ll want to put into your Exchange Server will depend on its role, but here’s how you’d work it out for a mailbox server. The first thing to do is to grab a copy of the <a target="_blank" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=8f575f60-bd80-44aa-858b-a1f721108fad&amp;amp;DisplayLang=en" onclick="pageTracker._trackPageview('/outgoing/www.microsoft.com/downloads/details.aspx?FamilyID=8f575f60-bd80-44aa-858b-a1f721108fad_amp_amp_DisplayLang=en&amp;referer=');">Microsoft Exchange Server Profile Analyzer</a> and work out whether you have “light” users, “average” users or “heavy” users (no, that doesn’t mean that you need to weigh Big Bertha in accounts, it simply means you need to work out how many messages she – and the other users &#8211; send and receive on average). Armed with that information, you can then work out how much memory you need as follows:</p>
<blockquote><p>2 GB + 2 MB per user (light users) = Total memory needed<br />
2 GB + 3 MB per user (light users) = Total memory needed<br />
2 GB + 5 MB per user (light users) = Total memory needed</p></blockquote>
<p>So, for example, if you were to have 1000 light users, you’d want 4 GB of RAM (2 GB + (1000 x 2 MB). Additional memory would be needed if you need to create more than 8 Storage Groups (which is the maximum that 4 GB will support).  </p>
<p>For more detailed information, see <a target="_blank" href="http://msexchangeteam.com/archive/2007/01/16/432222.aspx" onclick="pageTracker._trackPageview('/outgoing/msexchangeteam.com/archive/2007/01/16/432222.aspx?referer=');">Microsoft’s Exchange 2007 Processor and Memory Recommendations</a>.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2009/04/how-much-memory-is-too-much/">How Much Memory is Too Much?</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2009/04/how-much-memory-is-too-much/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

