<?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>NoGeekLeftBehind.com &#187; SBS 2008</title>
	<atom:link href="http://www.nogeekleftbehind.com/category/sbs-2008/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nogeekleftbehind.com</link>
	<description>"Building Better Geeks"</description>
	<lastBuildDate>Fri, 20 Jan 2012 16:32:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Show Exchange Message Size Limits in SBS 2008/2011</title>
		<link>http://www.nogeekleftbehind.com/2011/12/09/show-exchange-message-size-limits-in-sbs-20082011/</link>
		<comments>http://www.nogeekleftbehind.com/2011/12/09/show-exchange-message-size-limits-in-sbs-20082011/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 19:29:15 +0000</pubDate>
		<dc:creator>timbarrett</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Mailbag]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[SBS 2008]]></category>
		<category><![CDATA[SBS 2011]]></category>

		<guid isPermaLink="false">http://www.nogeekleftbehind.com/2011/12/09/show-exchange-message-size-limits-in-sbs-20082011/</guid>
		<description><![CDATA[It seems like every month I get a call about someone not being able to send or receive an email due to size limits. If you know where all the limits are in the Exchange Management Console (and if you’re aware of the 30% bloating that happens with email attachments) you can usually resolve that [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2011%2F12%2F09%2Fshow-exchange-message-size-limits-in-sbs-20082011%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2011%2F12%2F09%2Fshow-exchange-message-size-limits-in-sbs-20082011%2F&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><img style="display: inline; float: right" title="Full mailbox" alt="Full mailbox" align="right" src="https://encrypted-tbn1.google.com/images?q=tbn:ANd9GcQYmd1m-KVKueDu-va2Epr4RuJ9Zxdh5qETYsViaVeNUsA2U7fC" width="161" height="126" />It seems like every month I get a call about someone not being able to send or receive an email due to size limits. If you know where all the limits are in the Exchange Management Console (and if you’re aware of the <a href="http://www.nogeekleftbehind.com/2007/07/19/message-is-larger-than-the-current-system-limit/" target="_blank">30% bloating that happens with email attachments</a>) you can usually resolve that issue pretty quickly. If you’re new to Exchange, or a bit rusty, it might take longer.</p>
<p>Here’s a way to see all of your Exchange attachment limits in one screen.</p>
<p><strong>Simple PowerShell Script to Show Exchange Message Size Limits</strong></p>
<p>1. Copy and paste the following commands into Notepad.exe:</p>
<blockquote><p>get-transportconfig | ft maxsendsize, maxreceivesize      <br />get-receiveconnector | ft name, maxmessagesize       <br />get-sendconnector | ft name, maxmessagesize       <br />get-mailbox |ft Name, Maxsendsize, maxreceivesize</p>
</blockquote>
<p>2. Save that text document with a .PS1 file extension, and you now have your PowerShell file. I named my file “email_limits.ps1”.    </p>
<p>Example contents of file <strong>email_limits.ps1</strong>:<a href="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image.png" rel="thumbnail"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Contents of file email_limits.ps1" border="0" alt="Contents of file email_limits.ps1" src="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image_thumb.png" width="518" height="370" /></a></p>
<p><em>Note: You can reuse this .PS1 file on any SBS 2008 (Exchange 2007) or SBS 2011 (Exchange 2010) servers.</em>     </p>
<p>3. Copy that file to your SBS server in a folder on the C: or D: drive.     <br />I use a folder called “Scripts” on the D: drive.</p>
<p>4. Right-click the <strong>Exchange Management Shell</strong> and Run as Administrator.     <br /><a href="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image_3.png" rel="thumbnail"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Open Exchange Management Shell using Run as administrator" border="0" alt="Open Exchange Management Shell using Run as administrator" src="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image_thumb_3.png" width="228" height="241" /></a>     <br />(Say Yes to any User Account Control prompt, if needed.)</p>
<p>5. In the Powershell window type the name of your .PS1 file (including the full path) and hit Enter.    <br /><em>Example: D:\scripts\email_limits.ps1</em></p>
<p><strong>RESULTS</strong></p>
<p><strong>Example 1      <br />SBS 2008 / Exchange 2007 (showing increased limits for a true 20 MB)*       <br /><a href="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image_4.png" rel="thumbnail"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Output of email_limits.ps1 on SBS 2008 / Exchange 2007" border="0" alt="Output of email_limits.ps1 on SBS 2008 / Exchange 2007" src="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image_thumb_4.png" width="518" height="387" /></a></strong></p>
<p><strong>Example 2      <br />SBS 2011 / Exchange 2010 (w/ factory defaults)</strong><a href="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image_5.png" rel="thumbnail"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Output of email_limits.ps1 on SBS 2011 / Exchange 2010" border="0" alt="Output of email_limits.ps1 on SBS 2011 / Exchange 2010" src="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image_thumb_5.png" width="518" height="351" /></a></p>
<blockquote><p>*As you can see from Example 1, the Fax connector is still set at 10 MB, but the other limits have been changed to 29257 KB to allow for true 20MB attachments with the attachment bloating.      <br /><a href="http://www.nogeekleftbehind.com/2007/07/19/message-is-larger-than-the-current-system-limit/" target="_blank">Formula for calculating overhead</a>: (x MB * 1024) /.70 = limit in KB       <br />Example: (20 MB x 1024) /.70 = 29257KB</p>
</blockquote>
<p>Of course, you can also use PowerShell to change the limits, but I don’t have a script saved for that because the Set-ReceiveConnector, Set-SendConnector, etc.&#160; commands require that the server name be included in the script.    <br />Example: <strong>Set-ReceiveConnector “Windows SBS Internet Receive <em><u>Servername</u></em>” –MaxMessageSize 29MB</strong></p>
<p>If I need to change the limits, I still just go old school and use the GUI in the Exchange Management Console.</p>
<p>Remember – there are four common places in Exchange where the email attachment size could be limited:</p>
<ol>
<li>Transport limit </li>
<li>Receive limit </li>
<li>Send limit </li>
<li>Mailbox limit </li>
</ol>
<p>We’ll show you where each one of those is located.</p>
<p><strong>Exchange 2007 / 2010 Management Console Size Limit Locations</strong></p>
<ul>
<li><strong>1. Transport Limit</strong>       </p>
<p>Exchange Management Console | Organization Configuration | Hub Transport | Global Settings | Transport Settings | Properties | General | Transport Limits       </p>
<p><a href="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image_6.png" rel="thumbnail"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Attachment limit for Exchange Transport settings" border="0" alt="Attachment limit for Exchange Transport settings" src="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image_thumb_6.png" width="443" height="489" /></a>       </p>
<p>Note: a blank transport limit box means ‘unlimited’.       </li>
<li><strong>2. Receive Limits</strong>       <br />(In SBS 2008 or 2011 there are typically 3 Receive Connectors)
<p><a href="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image_7.png" rel="thumbnail"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Location of Exchange 2010 Receive Connectors" border="0" alt="Location of Exchange 2010 Receive Connectors" src="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image_thumb_7.png" width="447" height="240" /></a>       </p>
<p>Exchange Management Console | Server Configuration | Hub Transport | Receive Connectors | right-click the receive connector | Properties | General | Maximum Message Size (KB)       </p>
<p><a href="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image_8.png" rel="thumbnail"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Attachment limit for Exchange Receive settings" border="0" alt="Attachment limit for Exchange Receive settings" src="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image_thumb_8.png" width="447" height="502" /></a>       </p>
<p>Note: The “<strong>Default {<em>servername</em>}</strong>” is your internal / .local connector.       <br />The “<strong>Windows SBS Internet Receive {<em>servername</em>}</strong>” is your external / .com connector. You’ll notice the difference in the Properties window on the FQDN line &#8211; one is .local and the other is .com/.org/etc.       </p>
<p>Also, regarding the internal connector, you may sometimes need to increase your “Default {<em>servername</em>}”(.local) connector to accommodate on-site scanners / multi-function copiers that scan to PDF and email internal employees. If so, this is where you do it. Just make sure the employees can receive attachments that large.       </li>
<li><strong>3. Send Limit</strong>
<p>Exchange Management Console | Organization Configuration | Hub Transport | Send Connectors | Windows SBS Internet Send {<em>servername</em>} | Properties | General | Maximum Message Size (KB)       </p>
<p><a href="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image_9.png" rel="thumbnail"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Attachment limit for Exchange Send connector" border="0" alt="Attachment limit for Exchange Send connector" src="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image_thumb_9.png" width="447" height="502" /></a> </li>
<li><strong>4. Mailbox Limits</strong>
<p>Exchange Management Console | Recipient Configuration | Mailbox | {username} | Properties | Mail Flow Settings | Message Size Restrictions | Properties | Maximum Message size (in KB)       </p>
<p><a href="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image_10.png" rel="thumbnail"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image_thumb_10.png" width="447" height="537" /></a>       </p>
<p><a href="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image_11.png" rel="thumbnail"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Message size limits per for an individual user" border="0" alt="Message size limits per for an individual user" src="http://www.nogeekleftbehind.com/9e86afc3afdc_B178/image_thumb_11.png" width="431" height="187" /></a>       </p>
<p>Note: a blank message size limit box means ‘unlimited’, but the user will still be restricted by the other the limits (shown in 1-3 above). </li>
</ul>
<p>Bottom line: Use the sample .PS1 script to quickly make sure that all limits are set properly. Life is too short to dig through the GUI and check 4 or 5 locations manually if you don’t have to.</p>
<p>If you have any feedback or helpful PowerShell scripts that relate to email limits in Exchange 2007 or 2010, please feel free to post them in the comments.</p>
<p>More details: <a href="http://blogs.technet.com/b/sbs/archive/2008/10/28/how-do-i-change-message-size-limits-in-exchange-2007.aspx" target="_blank">Official SBS Blog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nogeekleftbehind.com/2011/12/09/show-exchange-message-size-limits-in-sbs-20082011/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Recent SBS and WHS KB Articles &#8211; August 2011</title>
		<link>http://www.nogeekleftbehind.com/2011/08/23/recent-sbs-and-whs-kb-articles-august-2011/</link>
		<comments>http://www.nogeekleftbehind.com/2011/08/23/recent-sbs-and-whs-kb-articles-august-2011/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 18:13:14 +0000</pubDate>
		<dc:creator>timbarrett</dc:creator>
				<category><![CDATA[KB Articles]]></category>
		<category><![CDATA[SBS 2003]]></category>
		<category><![CDATA[SBS 2008]]></category>
		<category><![CDATA[SBS 2011]]></category>
		<category><![CDATA[WHS]]></category>
		<category><![CDATA[WHS 2011]]></category>

		<guid isPermaLink="false">http://www.nogeekleftbehind.com/2011/08/23/recent-sbs-and-whs-kb-articles-august-2011/</guid>
		<description><![CDATA[More info and updates for your network admin pleasure. SBS 2003 KB #303650 &#8211; SBS 2003 &#8211; Intranet site is identified as an Internet site when you use an FQDN or an IP address http://support.microsoft.com/kb/303650/ SBS 2008 KB #2589338 &#8211; SBS 2008 &#8211; Error message when you attempt to change the software update settings http://support.microsoft.com/kb/2589338/ [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2011%2F08%2F23%2Frecent-sbs-and-whs-kb-articles-august-2011%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2011%2F08%2F23%2Frecent-sbs-and-whs-kb-articles-august-2011%2F&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>More info and updates for your network admin pleasure.</p>
<p><strong>SBS 2003</strong></p>
<ul>
<li>KB #<strong>303650</strong> &#8211; SBS 2003 &#8211; <strong>Intranet site is identified</strong> as an <strong>Internet</strong> site when you use an FQDN or an IP address      <br /><a title="http://support.microsoft.com/kb/303650/" href="http://support.microsoft.com/kb/303650/">http://support.microsoft.com/kb/303650/</a></li>
</ul>
<p><strong>SBS 2008</strong></p>
<ul>
<li>KB #<strong>2589338</strong> &#8211; SBS 2008 &#8211; <strong>Error</strong> message when you attempt to change the <strong>software update settings</strong>      <br /><a title="http://support.microsoft.com/kb/2589338/" href="http://support.microsoft.com/kb/2589338/">http://support.microsoft.com/kb/2589338/</a></li>
</ul>
<p><strong>SBS 2011 Standard / Essentials</strong></p>
<ul>
<li>KB #<strong>2554629</strong> &#8211; SBS 2011 Essentials &#8211; <strong>Update Rollup 1</strong> for Windows Small Business Server 2011 Essentials is available      <br /><a title="http://support.microsoft.com/kb/2554629/" href="http://support.microsoft.com/kb/2554629/">http://support.microsoft.com/kb/2554629/</a></li>
<li>KB #<strong>2500662</strong> &#8211; SBS 2011 &#8211; [SDP 3][e1c48c54-07f6-4290-9e4f-ae7651c003a4] Windows Small Business Server 2011 <strong>All-purpose data collection and analysis       <br /></strong><a title="http://support.microsoft.com/kb/2500662/" href="http://support.microsoft.com/kb/2500662/">http://support.microsoft.com/kb/2500662/</a></li>
<li>KB #<strong>2585336</strong> &#8211; SBS 2011 Standard / Essentials &#8211; SBS 2011 Essentials | Standard <strong>users are unable to access RWA</strong> after migration      <br /><a title="http://support.microsoft.com/kb/2585336/" href="http://support.microsoft.com/kb/2585336/">http://support.microsoft.com/kb/2585336/</a></li>
<li>KB #<strong>2535810</strong> &#8211; SBS 2011 – SBS 2011 Standard Edition <strong>Crashes Unexpectedly       <br /></strong><a title="http://support.microsoft.com/kb/2535810/" href="http://support.microsoft.com/kb/2535810/">http://support.microsoft.com/kb/2535810/</a></li>
<li>KB #<strong>2578298</strong> &#8211; SBS 2011 &#8211; <strong>Unable to import Users</strong> and Destination server into the dashboard during migration      <br /><a title="http://support.microsoft.com/kb/2578298/" href="http://support.microsoft.com/kb/2578298/">http://support.microsoft.com/kb/2578298/</a></li>
<li>KB #2554637 &#8211; SBS 2011 Essentials &#8211; (see below)</li>
</ul>
<p><strong>WHS 2011 / Windows Storage Server Essentials 2008 R2</strong></p>
<ul>
<li>KB #<strong>2554637</strong> &#8211; SBS 2011 Essentials, WHS 2011, WSSE 2008 R2 &#8211;
<p>The <strong>client-side package of Update Rollup 1</strong> for Windows Small Business Server 2011 Essentials, for Windows Home Server 2011, and for Windows Storage Server 2008 R2 Essentials is available        <br /><a href="http://support.microsoft.com/kb/2554637/">http://support.microsoft.com/kb/2554637/</a> </p>
</li>
<li>
<p>KB #<strong>2554634</strong> &#8211; WHS 2011 &#8211; <strong>Update Rollup 1</strong> for Windows Home Server 2011 is available        <br /><a title="http://support.microsoft.com/kb/2554634/" href="http://support.microsoft.com/kb/2554634/">http://support.microsoft.com/kb/2554634/</a></p>
</li>
</ul>
<p><strong>Other</strong></p>
<ul>
<li>KB #<strong>297019</strong> &#8211; Limits to using personal folders (.pst) files over LAN and WAN links      <br /><a title="http://support.microsoft.com/kb/297019/" href="http://support.microsoft.com/kb/297019/">http://support.microsoft.com/kb/297019/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.nogeekleftbehind.com/2011/08/23/recent-sbs-and-whs-kb-articles-august-2011/feed/</wfw:commentRss>
		<slash:comments>1006</slash:comments>
		</item>
		<item>
		<title>Tip &#8211; Showing Thumbnails in SBS 2008 / SBS 2011</title>
		<link>http://www.nogeekleftbehind.com/2011/06/23/tip-showing-thumbnails-in-sbs-2008-sbs-2011/</link>
		<comments>http://www.nogeekleftbehind.com/2011/06/23/tip-showing-thumbnails-in-sbs-2008-sbs-2011/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 13:52:38 +0000</pubDate>
		<dc:creator>timbarrett</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[SBS 2008]]></category>
		<category><![CDATA[SBS 2011]]></category>

		<guid isPermaLink="false">http://www.nogeekleftbehind.com/2011/06/23/tip-showing-thumbnails-in-sbs-2008-sbs-2011/</guid>
		<description><![CDATA[Each month when we do test restores of client servers, we pick a few files to demonstrate and verify that the files are valid. And typically the files we choose are JPGs because you can ‘see’ that there is content in them, not just some hollow Word or Excel doc that ‘looks’ OK. Using JPGs [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2011%2F06%2F23%2Ftip-showing-thumbnails-in-sbs-2008-sbs-2011%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2011%2F06%2F23%2Ftip-showing-thumbnails-in-sbs-2008-sbs-2011%2F&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Each month when we do test restores of client servers, we pick a few files to demonstrate and verify that the files are valid. And typically the files we choose are JPGs because you can ‘see’ that there is content in them, not just some hollow Word or Excel doc that ‘looks’ OK.</p>
<p>Using JPGs works great for SBS 2003. However, Server 2008 doesn’t show thumbnails by default, even if you select the Icon view, like this…</p>
<p><a href="http://www.nogeekleftbehind.com/Tip--Showing-Thumbnails-in-SBS-2008--201_87A3/image.png" rel="thumbnail"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="The Large Icons view shows icons, not thumbnails" border="0" alt="The Large Icons view shows icons, not thumbnails" src="http://www.nogeekleftbehind.com/Tip--Showing-Thumbnails-in-SBS-2008--201_87A3/image_thumb.png" width="518" height="278" /></a></p>
<p>…you don’t get thumbnails. You get little pointless icons.</p>
<p>But it’s easy to turn those icons into real thumbnails:</p>
<p>In Windows Explorer click Tools | Folder Options | View | uncheck the box that says <em>Always show icons, never thumbnails</em> | click OK.</p>
<p><a href="http://www.nogeekleftbehind.com/Tip--Showing-Thumbnails-in-SBS-2008--201_87A3/image_3.png" rel="thumbnail"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="In Folder Options, uncheck Always show icons, never thumbnails" border="0" alt="In Folder Options, uncheck Always show icons, never thumbnails" src="http://www.nogeekleftbehind.com/Tip--Showing-Thumbnails-in-SBS-2008--201_87A3/image_thumb_3.png" width="390" height="474" /></a></p>
<p>Now you see thumbnails, even though the menu says ‘Icons’:</p>
<p><a href="http://www.nogeekleftbehind.com/Tip--Showing-Thumbnails-in-SBS-2008--201_87A3/image_4.png" rel="thumbnail"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Look ma, thumbnails!" border="0" alt="Look ma, thumbnails!" src="http://www.nogeekleftbehind.com/Tip--Showing-Thumbnails-in-SBS-2008--201_87A3/image_thumb_4.png" width="518" height="272" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nogeekleftbehind.com/2011/06/23/tip-showing-thumbnails-in-sbs-2008-sbs-2011/feed/</wfw:commentRss>
		<slash:comments>794</slash:comments>
		</item>
		<item>
		<title>SBS 2008 View User OWA Enabled/Disabled Status</title>
		<link>http://www.nogeekleftbehind.com/2010/08/30/sbs-2008-view-user-owa-enableddisabled-status/</link>
		<comments>http://www.nogeekleftbehind.com/2010/08/30/sbs-2008-view-user-owa-enableddisabled-status/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 18:46:42 +0000</pubDate>
		<dc:creator>timbarrett</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[SBS 2008]]></category>

		<guid isPermaLink="false">http://www.nogeekleftbehind.com/2010/08/30/sbs-2008-view-user-owa-enableddisabled-status/</guid>
		<description><![CDATA[Some people like to turn off Outlook Web Access (OWA) for certain employees for security reasons. Of course, you can individually double-click users in the console to see if OWA is enabled… …or via the Exchange Management Console… …but there is no speedy way in the SBS 2008 console to get a master list of [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2010%2F08%2F30%2Fsbs-2008-view-user-owa-enableddisabled-status%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2010%2F08%2F30%2Fsbs-2008-view-user-owa-enableddisabled-status%2F&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Some people like to turn off Outlook Web Access (OWA) for certain employees for security reasons. Of course, you can <strong>individually</strong> double-click users in the console to see if OWA is enabled…</p>
<p><a href="http://www.nogeekleftbehind.com/images/SBS2008ViewUserOWAEnabledDisabledStatus_8E21/image.png" rel="thumbnail"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="OWA status per-user via the SBS 2008 console" border="0" alt="OWA status per-user via the SBS 2008 console" src="http://www.nogeekleftbehind.com/images/SBS2008ViewUserOWAEnabledDisabledStatus_8E21/image_thumb.png" width="509" height="221" /></a></p>
<p>…or via the Exchange Management Console…</p>
<p><a href="http://www.nogeekleftbehind.com/images/SBS2008ViewUserOWAEnabledDisabledStatus_8E21/image_3.png" rel="thumbnail"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="OWA status in the Exchange 2007 Management Console" border="0" alt="OWA status in the Exchange 2007 Management Console" src="http://www.nogeekleftbehind.com/images/SBS2008ViewUserOWAEnabledDisabledStatus_8E21/image_thumb_3.png" width="445" height="391" /></a></p>
<p>…but there is no speedy way in the SBS 2008 console to get a master list of the OWA status for <strong>all</strong> users.</p>
<p>Fortunately, there’s a quick and easy way with a simple PowerShell cmdlet.</p>
<p>To see <strong>OWA status</strong> for <strong><em>all </em>users</strong>:</p>
<ul>
<li>Click <strong>Start</strong></li>
<li><strong>All Programs</strong></li>
<li><strong>Microsoft Exchange Server 2007</strong></li>
<li><strong>Exchange Management Shell</strong></li>
<li><strong>Copy</strong> the following PowerShell cmdlet to your clipboard:</li>
</ul>
<blockquote><p>Get-CASMailbox | ft DisplayName, OWAEnabled</p>
</blockquote>
<ul>
<li>And <strong>paste</strong> it into the Management Shell window:</li>
</ul>
<p><a href="http://www.nogeekleftbehind.com/images/SBS2008ViewUserOWAEnabledDisabledStatus_8E21/image_4.png" rel="thumbnail"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Past the cmdlet into the PowerShell window to see a list of OWA status for users" border="0" alt="Past the cmdlet into the PowerShell window to see a list of OWA status for users" src="http://www.nogeekleftbehind.com/images/SBS2008ViewUserOWAEnabledDisabledStatus_8E21/image_thumb_4.png" width="518" height="257" /></a></p>
<p>That will give you an output similar to the following which shows the OWA status for ALL users:</p>
<p><a href="http://www.nogeekleftbehind.com/images/SBS2008ViewUserOWAEnabledDisabledStatus_8E21/image_5.png" rel="thumbnail"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Output of the PowerShell cmdlet - OWA Status" border="0" alt="Output of the PowerShell cmdlet - OWA Status" src="http://www.nogeekleftbehind.com/images/SBS2008ViewUserOWAEnabledDisabledStatus_8E21/image_thumb_5.png" width="518" height="507" /></a></p>
<p>Voilà, the OWA status master list! </p>
<p>But it doesn’t stop there. You can also add the fields <em><strong>SamAccountName</strong></em> and <strong><em>ActiveSyncEnabled</em></strong> to add depth your report.</p>
<p>Below are some other options with PowerShell cmdlets you might like.</p>
<p><strong>Export</strong> above report to a <strong>CSV</strong> file:</p>
<blockquote><p>Get-CASMailbox | Select Name, OWAEnabled | Export-CSV c:\file.csv</p>
</blockquote>
<p>See <strong>OWA <em><font color="#00ff00">Enabled</font></em></strong> users <strong>only</strong>:</p>
<blockquote><p>Get-CASMailbox | where { $_.OWAEnabled } | ft DisplayName, OWAEnabled</p>
</blockquote>
<p>See <strong>OWA <em><font color="#ff0000">Disabled</font></em></strong> users <strong>only</strong>:</p>
<blockquote><p>Get-CASMailbox | where { !$_.OWAEnabled } | ft DisplayName, OWAEnabled</p>
</blockquote>
<p>See <strong>ActiveSync</strong> <strong><em><font color="#00ff00">Enabled</font></em></strong> users <strong>only</strong>:</p>
<blockquote><p>Get-CASMailbox | Where-Object { $_.ActiveSyncEnabled } | ft DisplayName, SamAccountName, ActiveSyncEnabled</p>
</blockquote>
<p>See <strong>ActiveSync</strong> <strong><em><font color="#ff0000">Disabled</font></em></strong> users <strong>only</strong>:</p>
<blockquote><p>Get-CASMailbox | Where-Object { !$_.ActiveSyncEnabled } | ft DisplayName, SamAccountName, ActiveSyncEnabled</p>
</blockquote>
<p>**One of my personal faves**   <br />See <strong><u>both</u></strong> the <strong>ActiveSync</strong> and <strong>OWA</strong> status for <strong>all users</strong>:</p>
<blockquote><p>Get-CASMailbox | ft DisplayName, SamAccountName, ActiveSyncEnabled, OWAEnabled</p>
</blockquote>
<p>See <strong>ActiveSync information </strong>for a <strong><em>particular user</em></strong>:</p>
<blockquote><p>Get-ActivesyncDeviceStatistics -Mailbox <em>mailboxname</em></p>
</blockquote>
<p><a href="http://www.nogeekleftbehind.com/images/SBS2008ViewUserOWAEnabledDisabledStatus_8E21/image_6.png" rel="thumbnail"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="PowerShell output showing Activesync mobile device info" border="0" alt="PowerShell output showing Activesync mobile device info" src="http://www.nogeekleftbehind.com/images/SBS2008ViewUserOWAEnabledDisabledStatus_8E21/image_thumb_6.png" width="518" height="259" /></a></p>
<p>Source: <a href="http://technet.microsoft.com/en-us/library/bb124413(EXCHG.80).aspx" target="_blank">TechNet Exchange 2007 Library</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nogeekleftbehind.com/2010/08/30/sbs-2008-view-user-owa-enableddisabled-status/feed/</wfw:commentRss>
		<slash:comments>1413</slash:comments>
		</item>
		<item>
		<title>Recent SBS KB Articles &#8211; August 2010 Part Deux</title>
		<link>http://www.nogeekleftbehind.com/2010/08/23/recent-sbs-kb-articles-august-2010-part-deux/</link>
		<comments>http://www.nogeekleftbehind.com/2010/08/23/recent-sbs-kb-articles-august-2010-part-deux/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 19:34:49 +0000</pubDate>
		<dc:creator>timbarrett</dc:creator>
				<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[KB Articles]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[SBS 2003]]></category>
		<category><![CDATA[SBS 2008]]></category>

		<guid isPermaLink="false">http://www.nogeekleftbehind.com/2010/08/23/recent-sbs-kb-articles-august-2010-part-deux/</guid>
		<description><![CDATA[Here’s another batch of new/updated SBS KB articles SBS 2008 Recent KBs: KB #2097035 – SBS 2008 – Installation on Hyper-v Server fails with an Error &#34;The User Role Cannot be found. Select a different User Role&#34; http://support.microsoft.com/default.aspx?scid=kb;en-us;2097035 KB #2291678 – SBS 2008 – Windows SBS Console may crash because of incorrect Environment Variables http://support.microsoft.com/default.aspx?scid=kb;en-us;2291678 [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2010%2F08%2F23%2Frecent-sbs-kb-articles-august-2010-part-deux%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2010%2F08%2F23%2Frecent-sbs-kb-articles-august-2010-part-deux%2F&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Here’s another batch of new/updated SBS KB articles</p>
<p>SBS 2008 Recent KBs:</p>
<ul>
<li>KB #<strong>2097035</strong> – SBS 2008 – <strong>Installation on Hyper-v Server</strong> <strong>fails</strong> with an Error &quot;The <strong>User Role</strong> Cannot be found. Select a different User Role&quot;       <br /><a title="http://support.microsoft.com/default.aspx?scid=kb;en-us;2097035" href="http://support.microsoft.com/default.aspx?scid=kb;en-us;2097035">http://support.microsoft.com/default.aspx?scid=kb;en-us;2097035</a></li>
<li>KB #<strong>2291678</strong> – SBS 2008 – Windows <strong>SBS Console may crash</strong> because of incorrect Environment Variables      <br /><a title="http://support.microsoft.com/default.aspx?scid=kb;en-us;2291678" href="http://support.microsoft.com/default.aspx?scid=kb;en-us;2291678">http://support.microsoft.com/default.aspx?scid=kb;en-us;2291678</a></li>
<li>KB #<strong>2029384</strong> – SBS 2008 – The <strong>Terminal Service Gateway</strong> may <strong>randomly disconnect</strong> machines      <br /><a title="http://support.microsoft.com/default.aspx?scid=kb;en-us;2029384" href="http://support.microsoft.com/default.aspx?scid=kb;en-us;2029384">http://support.microsoft.com/default.aspx?scid=kb;en-us;2029384</a></li>
<li>KB #<strong>2028674</strong> – SBS 2008 &amp; SBS 2003 – <strong>Migration Preparation Tool</strong> (SourceTool) <strong>fails</strong> to update the schema on the source server      <br /><a title="http://support.microsoft.com/default.aspx?scid=kb;en-us;2028674" href="http://support.microsoft.com/default.aspx?scid=kb;en-us;2028674">http://support.microsoft.com/default.aspx?scid=kb;en-us;2028674</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.nogeekleftbehind.com/2010/08/23/recent-sbs-kb-articles-august-2010-part-deux/feed/</wfw:commentRss>
		<slash:comments>1288</slash:comments>
		</item>
		<item>
		<title>KYSBSUG August 2010 &#8211; SBS 2008 Disaster Recovery</title>
		<link>http://www.nogeekleftbehind.com/2010/08/17/kysbsug-august-2010-sbs-2008-disaster-recovery/</link>
		<comments>http://www.nogeekleftbehind.com/2010/08/17/kysbsug-august-2010-sbs-2008-disaster-recovery/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 12:55:49 +0000</pubDate>
		<dc:creator>timbarrett</dc:creator>
				<category><![CDATA[Disaster Recovery]]></category>
		<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[SBS 2008]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://www.nogeekleftbehind.com/2010/08/17/kysbsug-august-2010-sbs-2008-disaster-recovery/</guid>
		<description><![CDATA[KYSBSUG August 2010 Meeting #78 – SBS 2008 Disaster Recovery Using Hyper-V Presenters: Tim Barrett &#38; Kevin Royalty Date: Wednesday August 18, 2010 Time: 6:30-8:30 PM Eastern Venue: Money Concepts Address: 323 Townepark Circle, Louisville, KY 40243 Map: Click here Registration URL: Click here to register today! Description: Your customer calls and says, &#34;Our server [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2010%2F08%2F17%2Fkysbsug-august-2010-sbs-2008-disaster-recovery%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2010%2F08%2F17%2Fkysbsug-august-2010-sbs-2008-disaster-recovery%2F&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><strong>KYSBSUG August 2010 Meeting #78 –      <br />SBS 2008 Disaster Recovery Using Hyper-V</strong>    <br /><a href="http://www.nogeekleftbehind.com/images/KYSBSUGJune2010Office2010_9035/image.png" rel="thumbnail"><img title="KYSBSUG - Kentucky Small Business Server User Group" border="0" alt="KYSBSUG - Kentucky Small Business Server User Group" align="right" src="http://www.nogeekleftbehind.com/images/KYSBSUGJune2010Office2010_9035/image_thumb.png" width="118" height="61" /></a>Presenters: Tim Barrett &amp; Kevin Royalty    <br />Date: Wednesday August 18, 2010    <br />Time: 6:30-8:30 PM Eastern    <br />Venue: Money Concepts    <br />Address: 323 Townepark Circle, Louisville, KY 40243    <br />Map: <a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=323+Townepark+Circle,+Louisville,+KY+40243&amp;sll=37.0625,-95.677068&amp;sspn=54.621153,134.912109&amp;ie=UTF8&amp;hq=&amp;hnear=323+Townepark+Cir,+Louisville,+Jefferson,+Kentucky+40243&amp;ll=38.240523,-85.51834&amp;spn=0,0.016469&amp;t=h&amp;z=17&amp;layer=c&amp;cbll=38.240601,-85.518459&amp;panoid=-r1Z1CQ_-oeckB_iq-TW1Q&amp;cbp=12,210.87,,0,9.71" target="_blank">Click here</a>    <br />Registration URL: <a href="http://www.clicktoattend.com/?id=150318" target="_blank">Click here to register today!</a></p>
<p>Description:       </p>
<p>Your customer calls and says, &quot;Our server is completely destroyed, but we have the backups.&quot;      </p>
<p>What&#8217;s your next move? Do you have hardware on standby? Do you have a well-documented plan so you can spring into action?&#160; Or will you just wing it?      </p>
<p>Join us this month for a joint presentation with <a href="http://cinpa.squarespace.com/" target="_blank">CiNPA</a> and <a href="http://www.kysbsug.org" target="_blank">KYSBSUG</a> as we talk about disaster recovery of SBS and show how to restore an SBS 2008 native backup and ShadowProtect backups into Hyper-V. This talk is based on real-life recovery situations and personal experiences.</p>
<p>Registration URL:      <br />Due to limited seating, registration *is* required.       <br /><strong><a href="https://www.clicktoattend.com/invitation.aspx?code=150318" target="_blank">Click here to register today!</a></strong></p>
<p>  <a href="https://www.clicktoattend.com/register.aspx?eventId=150318"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" class="wlDisabledImage" title="Click here to register today!" border="0" alt="Click here to register today!" src="http://www.nogeekleftbehind.com/images/KYSBSUGAugust2010SBS2008DisasterRecovery_7B6C/image.png" width="425" height="285" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nogeekleftbehind.com/2010/08/17/kysbsug-august-2010-sbs-2008-disaster-recovery/feed/</wfw:commentRss>
		<slash:comments>1034</slash:comments>
		</item>
		<item>
		<title>Recent SBS KB Articles&#8211; August 2010</title>
		<link>http://www.nogeekleftbehind.com/2010/08/03/recent-sbs-kb-articles-august-2010/</link>
		<comments>http://www.nogeekleftbehind.com/2010/08/03/recent-sbs-kb-articles-august-2010/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 03:35:17 +0000</pubDate>
		<dc:creator>timbarrett</dc:creator>
				<category><![CDATA[KB Articles]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[SBS 2003]]></category>
		<category><![CDATA[SBS 2008]]></category>

		<guid isPermaLink="false">http://www.nogeekleftbehind.com/2010/08/03/recent-sbs-kb-articles-august-2010/</guid>
		<description><![CDATA[Here’s the latest info on new SBS KB articles. SBS 2008 Recent KBs: KB #2275538 – SBS 2008 – Migrating Exchange Data from SBS 2003 http://support.microsoft.com/default.aspx?scid=kb;en-us;2275538 KB #2275779 – SBS 2008 – Migration Source Server Retirement and Environment Health Check http://support.microsoft.com/default.aspx?scid=kb;en-us;2275779 KB #2275550 – SBS 2008 – Migrating Folder Redirected Shares from SBS 2003 http://support.microsoft.com/default.aspx?scid=kb;en-us;2275550 [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2010%2F08%2F03%2Frecent-sbs-kb-articles-august-2010%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2010%2F08%2F03%2Frecent-sbs-kb-articles-august-2010%2F&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Here’s the latest info on new SBS KB articles.</p>
<p>SBS 2008 Recent KBs:</p>
<ul>
<li>KB #<strong>2275538</strong> – SBS 2008 – <strong>Migrating Exchange Data</strong> from SBS 2003      <br /><a title="http://support.microsoft.com/default.aspx?scid=kb;en-us;2275538" href="http://support.microsoft.com/default.aspx?scid=kb;en-us;2275538">http://support.microsoft.com/default.aspx?scid=kb;en-us;2275538</a></li>
<li>KB #<strong>2275779</strong> – SBS 2008 – Migration <strong>Source Server Retirement</strong> and Environment Health Check      <br /><a title="http://support.microsoft.com/default.aspx?scid=kb;en-us;2275779" href="http://support.microsoft.com/default.aspx?scid=kb;en-us;2275779">http://support.microsoft.com/default.aspx?scid=kb;en-us;2275779</a></li>
<li>KB #<strong>2275550</strong> – SBS 2008 – <strong>Migrating Folder Redirected Shares</strong> from SBS 2003      <br /><a title="http://support.microsoft.com/default.aspx?scid=kb;en-us;2275550" href="http://support.microsoft.com/default.aspx?scid=kb;en-us;2275550">http://support.microsoft.com/default.aspx?scid=kb;en-us;2275550</a></li>
<li>KB #<strong>2275616</strong> – SBS 2008 – <strong>Hosting POP3/IMAP 4 Clients</strong>      <br /><a title="http://support.microsoft.com/default.aspx?scid=kb;en-us;2275616" href="http://support.microsoft.com/default.aspx?scid=kb;en-us;2275616">http://support.microsoft.com/default.aspx?scid=kb;en-us;2275616</a></li>
<li>KB #<strong>2020759</strong> – SBS 2008 – <strong>Configure Internet Mail</strong> wizard crashes      <br /><a title="http://support.microsoft.com/default.aspx?scid=kb;en-us;2020759" href="http://support.microsoft.com/default.aspx?scid=kb;en-us;2020759">http://support.microsoft.com/default.aspx?scid=kb;en-us;2020759</a></li>
<li>KB #<strong>2275764</strong> – SBS 2008 – Microsoft <strong>Advisory Services Engagement Scenario</strong> – Migrating SharePoint (CompanyWeb) Data from SBS 2003      <br /><a title="http://support.microsoft.com/default.aspx?scid=kb;en-us;2275764" href="http://support.microsoft.com/default.aspx?scid=kb;en-us;2275764">http://support.microsoft.com/default.aspx?scid=kb;en-us;2275764</a></li>
</ul>
<p>SBS 2003 Recent KBs:</p>
<ul>
<li>KB #<strong>2297272</strong> – SBS 2003 – <strong>Egypt Daylight Saving Time</strong> Updates      <br /><a title="http://support.microsoft.com/default.aspx?scid=kb;en-us;2297272" href="http://support.microsoft.com/default.aspx?scid=kb;en-us;2297272">http://support.microsoft.com/default.aspx?scid=kb;en-us;2297272</a></li>
<li>KB #<strong>2290390</strong> – SBS 2003 – <strong>Performance Report</strong> indicates an automatic service is not running      <br /><a title="http://support.microsoft.com/default.aspx?scid=kb;en-us;2290390" href="http://support.microsoft.com/default.aspx?scid=kb;en-us;2290390">http://support.microsoft.com/default.aspx?scid=kb;en-us;2290390</a></li>
</ul>
<p>SBS 2008 Installation Help:</p>
<ul>
<li><strong>“The Ultimate Guide to SBS 2008 Setup Failures”</strong>      <br /><a title="http://blogs.technet.com/b/sbs/archive/2010/08/03/the-ultimate-guide-to-sbs-2008-setup-failures.aspx" href="http://blogs.technet.com/b/sbs/archive/2010/08/03/the-ultimate-guide-to-sbs-2008-setup-failures.aspx">http://blogs.technet.com/b/sbs/archive/2010/08/03/the-ultimate-guide-to-sbs-2008-setup-failures.aspx</a></li>
</ul>
<p>SBS 2008 Migration Help:</p>
<ul>
<li><strong>“SBS 2008 Migrations from SBS 2003 – Keys to Success”</strong>      <br /><a title="http://blogs.technet.com/b/sbs/archive/2009/02/19/sbs-2008-migrations-from-sbs-2003-keys-to-success.aspx" href="http://blogs.technet.com/b/sbs/archive/2009/02/19/sbs-2008-migrations-from-sbs-2003-keys-to-success.aspx">http://blogs.technet.com/b/sbs/archive/2009/02/19/sbs-2008-migrations-from-sbs-2003-keys-to-success.aspx</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.nogeekleftbehind.com/2010/08/03/recent-sbs-kb-articles-august-2010/feed/</wfw:commentRss>
		<slash:comments>869</slash:comments>
		</item>
		<item>
		<title>SBS 2008 View All Mailbox Sizes</title>
		<link>http://www.nogeekleftbehind.com/2010/04/07/sbs-2008-view-all-mailbox-sizes/</link>
		<comments>http://www.nogeekleftbehind.com/2010/04/07/sbs-2008-view-all-mailbox-sizes/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 17:18:33 +0000</pubDate>
		<dc:creator>timbarrett</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[SBS 2008]]></category>

		<guid isPermaLink="false">http://www.nogeekleftbehind.com/2010/04/07/sbs-2008-view-all-mailbox-sizes/</guid>
		<description><![CDATA[Do you miss the handy “Mailboxes” view from SBS 2003 that showed you how big the mailboxes are in Exchange 2003? Unfortunately, the Exchange 2007 Management Console in SBS 2008 doesn’t come with that nice handy feature baked into the console. But you can still get that information using (gasp) PowerShell. It’s as easy as [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2010%2F04%2F07%2Fsbs-2008-view-all-mailbox-sizes%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2010%2F04%2F07%2Fsbs-2008-view-all-mailbox-sizes%2F&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Do you miss the handy “Mailboxes” view from SBS 2003 that showed you how big the mailboxes are in Exchange 2003?</p>
<p><a href="http://www.nogeekleftbehind.com/images/SBS2008ViewAllMailboxSizes_BAFF/image.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Old school Exchange 2003 Mailboxes view in SBS 2003" border="0" alt="Old school Exchange 2003 Mailboxes view in SBS 2003" src="http://www.nogeekleftbehind.com/images/SBS2008ViewAllMailboxSizes_BAFF/image_thumb.png" width="504" height="271" /></a> </p>
<p>Unfortunately, the Exchange 2007 Management Console in SBS 2008 doesn’t come with that nice handy feature baked into the console. But you can still get that information using (gasp) <em>PowerShell</em>. It’s as easy as just copying and pasting.</p>
<ul>
<li>Click <strong>Start</strong> </li>
<li><strong>All Programs</strong> </li>
<li><strong>Microsoft Exchange Server 2007</strong> </li>
<li><strong>Exchange Management Shell</strong> </li>
<li><strong>Copy</strong> the following PowerShell cmdlet to your clipboard: </li>
</ul>
<blockquote><p>Get-MailboxStatistics | Sort-Object TotalItemSize -Descending | ft DisplayName,@{label=&quot;TotalItemSize(MB)&quot;;expression={$_.TotalItemSize.Value.ToMB()}},ItemCount</p>
</blockquote>
<ul>
<li>And <strong>paste</strong> it into the Management Shell window: </li>
</ul>
<p><a href="http://www.nogeekleftbehind.com/images/SBS2008ViewAllMailboxSizes_BAFF/image_3.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Paste the cmdlet into the PowerShell Management Shell" border="0" alt="Paste the cmdlet into the PowerShell Management Shell" src="http://www.nogeekleftbehind.com/images/SBS2008ViewAllMailboxSizes_BAFF/image_thumb_3.png" width="504" height="227" /></a> </p>
<ul>
<li>Then hit <strong>Enter</strong>. </li>
</ul>
<p>That will give you an output similar to the following:</p>
<p><a href="http://www.nogeekleftbehind.com/images/SBS2008ViewAllMailboxSizes_BAFF/image_4.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="List of mailbox sizes in Exchange 2007 via PowerShell" border="0" alt="List of mailbox sizes in Exchange 2007 via PowerShell" src="http://www.nogeekleftbehind.com/images/SBS2008ViewAllMailboxSizes_BAFF/image_thumb_4.png" width="504" height="250" /></a> </p>
<p>It’s basically the same info as SBS 2003/Exchange 2003, but not as pretty.</p>
<p>Source: <a href="http://social.technet.microsoft.com/Forums/en-US/exchangesvradmin/thread/1d95e6b4-e3cf-4bce-85af-8ce0d94d9cef" target="_blank">TechNet Exchange Forum</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nogeekleftbehind.com/2010/04/07/sbs-2008-view-all-mailbox-sizes/feed/</wfw:commentRss>
		<slash:comments>940</slash:comments>
		</item>
		<item>
		<title>Webcast &#8211; Hyper-V 101 with Wayne Small</title>
		<link>http://www.nogeekleftbehind.com/2010/04/06/webcast-hyper-v-101-with-wayne-small/</link>
		<comments>http://www.nogeekleftbehind.com/2010/04/06/webcast-hyper-v-101-with-wayne-small/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 02:40:41 +0000</pubDate>
		<dc:creator>timbarrett</dc:creator>
				<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[SBS 2008]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Webcast]]></category>

		<guid isPermaLink="false">http://www.nogeekleftbehind.com/2010/04/06/webcast-hyper-v-101-with-wayne-small/</guid>
		<description><![CDATA[This is one webcast you definitely don’t want to miss! Title: “Third Thursday Webinar: Hyper-V 101” Presenter: Wayne Small [SBS-MVP] Date: Thursday 04/15/2010 Time: 5:00 PM Eastern Daylight (GMT –4) Host: Third Tier Link to attend: Click here for Live Meeting Description: Wayne Small from Sydney Australia, Third Tier consultant and owner of SBSFAQ.com has [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2010%2F04%2F06%2Fwebcast-hyper-v-101-with-wayne-small%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2010%2F04%2F06%2Fwebcast-hyper-v-101-with-wayne-small%2F&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>This is one webcast you definitely don’t want to miss!</p>
<p><a href="http://www.nogeekleftbehind.com/images/WebcastHyperV101withWayneSmall_13EC7/image.png" rel="thumbnail"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="Wayne Small [SBS-MVP]" border="0" alt="Wayne Small [SBS-MVP]" align="right" src="http://www.nogeekleftbehind.com/images/WebcastHyperV101withWayneSmall_13EC7/image_thumb.png" width="152" height="131" /></a> Title: “<strong>Third Thursday Webinar: Hyper-V 101</strong>”     <br />Presenter: <a href="http://www.sbsfaq.com/">Wayne Small [SBS-MVP]</a>    <br />Date: Thursday 04/15/2010     <br />Time: 5:00 PM Eastern Daylight (GMT –4)     <br />Host: <a href="http://www.thirdtier.net">Third Tier</a>    <br />Link to attend: <a href="http://www.thirdtier.net/2010/04/third-thursday-webinar-hyper-v-101-with-wayne-small/">Click here for Live Meeting</a></p>
<p>Description:    <br />Wayne Small from Sydney Australia, <a href="http://www.thirdtier.net/">Third Tier</a> consultant and owner of <a href="http://www.sbsfaq.com/">SBSFAQ.com</a> has been deploying <a href="http://www.microsoft.com/hyper-v-server/en/us/default.aspx">Hyper-V</a> based solutions to 80% of his clients. Hyper-V can be simple to deploy, yet powerful enough for high availability applications. It is also technology that your clients really don’t understand at all. So how does he sell it to them? Wayne will tell us how to get up and running, the impact this technology can have your business and how to sell the idea to your clients.</p>
<p>Have you heard all the hype about Hyper-V?&#160; Want to get your clients up and running on Hyper-V in an hour?&#160; Want to know the key things to look out for with Hyper-V and how to avoid the pitfalls?&#160; This session will run through all of the basics on Hyper-V as it relates to our SMB clients.&#160; It will cover the various flavors of Hyper-V available, what to use when and how to get your first Hyper-V client quoted, and installed.&#160; Wayne will walk through a typical scenario that he’s deployed in the past and how he’s addressed the clients concerns and taken advantage of Hyper-V to save the customer money, and increase their uptime.   </p>
]]></content:encoded>
			<wfw:commentRss>http://www.nogeekleftbehind.com/2010/04/06/webcast-hyper-v-101-with-wayne-small/feed/</wfw:commentRss>
		<slash:comments>264</slash:comments>
		</item>
		<item>
		<title>Exchange 2007 SP2 on SBS 2008</title>
		<link>http://www.nogeekleftbehind.com/2009/12/31/exchange-2007-sp2-on-sbs-2008/</link>
		<comments>http://www.nogeekleftbehind.com/2009/12/31/exchange-2007-sp2-on-sbs-2008/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 19:30:00 +0000</pubDate>
		<dc:creator>timbarrett</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[SBS 2008]]></category>
		<category><![CDATA[Service Packs]]></category>

		<guid isPermaLink="false">http://www.nogeekleftbehind.com/2009/12/31/exchange-2007-sp2-on-sbs-2008/</guid>
		<description><![CDATA[Microsoft has (finally) released the wrapper / installation tool for the Exchange 2007 SP2 install on SBS 2008 (and there was much rejoicing!) Previously, if you tried to install SP2 for Exchange on SBS 2008 you had to start messing with the registry per KB 973862. Thankfully, that’s no longer necessary with the installation tool. [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2009%2F12%2F31%2Fexchange-2007-sp2-on-sbs-2008%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2009%2F12%2F31%2Fexchange-2007-sp2-on-sbs-2008%2F&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="Exchange 2007" border="0" alt="Exchange 2007" align="right" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb.png" width="130" height="131" /></a> Microsoft has (finally) released the wrapper / installation tool for the Exchange 2007 SP2 install on SBS 2008 (and there was much rejoicing!) Previously, if you tried to install SP2 for Exchange on SBS 2008 you had to start messing with the registry per <a href="http://support.microsoft.com/kb/973862" target="_blank">KB 973862</a>. Thankfully, that’s no longer necessary with the installation tool. You can download it from the Microsoft download site.     <br />&#160; <br />Title: <strong>Microsoft Exchange Server 2007 SP2 Installation Tool for Windows SBS 2008      <br /></strong>Date Published: 12/28/2009     <br />Download size: 604 KB     <br />File name: SBS2008-KB974271-ENU.msi     <br />Download URL: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ffd2fe61-9278-489e-9b96-3816394c9cb6&amp;displayLang=en" target="_blank">Click here</a></p>
<p><strong>Overview:</strong>     <br />The Microsoft Exchange Server 2007 SP2 Installation Tool for Windows SBS 2008 provides a step-by-step wizard that simplifies the installation of Service Pack 2 for Microsoft Exchange Server 2007 on a computer that is running Windows SBS 2008. The wizard also detects and helps you repair some problems that are common during installation. Without this tool, Windows SBS 2008 administrators must follow a series of manual steps, which are outlined in the Microsoft Knowledge Base article <a href="http://support.microsoft.com/kb/973862">You cannot install Exchange Server 2007 Service Pack 2 on a Windows Small Business Server 2008-based computer</a>.</p>
<p><strong>Installation, Step-by-Step:</strong></p>
<p>First, downloaded Exchange 2007 SP2. Pack a lunch, because this baby is big (<u>884 MB</u>)! You can download SP2 here: <a title="http://www.microsoft.com/downloads/details.aspx?FamilyID=4C4BD2A3-5E50-42B0-8BBB-2CC9AFE3216A&amp;displaylang=en" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=4C4BD2A3-5E50-42B0-8BBB-2CC9AFE3216A&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyID=4C4BD2A3-5E50-42B0-8BBB-2CC9AFE3216A&amp;displaylang=en</a>&#160; </p>
<p>Second, double-click the E2K7SPEN64.exe to <em>extract</em> it, but <em><u>DON’T start the install</u></em> of the service pack yet.     <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_3.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_3.png" width="196" height="145" /></a> </p>
<p>Once that’s done (and you’ve downloaded the Installation Tool above) the rest of the installation is almost ready to go. One more important note first.</p>
<blockquote><p>Note: It goes without saying, but <strong>make sure you have a good backup of the server</strong> before applying any service packs. Seriously folks.</p>
</blockquote>
<p>1. Run the MESIT installer, <strong>accept the EULA </strong>and click <strong>Next</strong>.     <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_4.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Accept the EULA - Next" border="0" alt="Accept the EULA - Next" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_4.png" width="244" height="192" /></a> </p>
<p>2. <strong>Accept</strong> the default installation path and click <strong>Next</strong>.     <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_5.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Accept the default install location - Next" border="0" alt="Accept the default install location - Next" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_5.png" width="244" height="192" /></a> </p>
<p>3. At the User Account Control prompt, click <strong>Continue</strong>.<a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_6.png" rel="thumbnail">      <br /><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="User Account Control - Continue" border="0" alt="User Account Control - Continue" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_6.png" width="244" height="129" /></a></p>
<p>4. Once installation of the wrapper is complete, the “Install Microsoft Exchange Server 2007 SP2 now” option should already be checked. Click <strong>Finish</strong>.     <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_7.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="MESIT install complete - Finish" border="0" alt="MESIT install complete - Finish" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_7.png" width="244" height="190" /></a> </p>
<p>5. This will pop another UAC prompt, click <strong>Continue</strong>.     <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_8.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="User Account Control - Continue" border="0" alt="User Account Control - Continue" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_8.png" width="244" height="129" /></a> </p>
<blockquote><p>Note:      </p>
<p>5a. You may be prompted to install the Windows Installer 4.5 available at <a href="http://go.microsoft.com/fwlink/?LinkId=151819">http://go.microsoft.com/fwlink/?LinkId=151819</a> if so, click <strong>OK</strong>.       <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_9.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Error - You need to install the Microsoft Windows Installer 4.5 - OK" border="0" alt="Error - You need to install the Microsoft Windows Installer 4.5 - OK" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_9.png" width="244" height="123" /></a>       <br />This will exit the SP2 install and you’ll need to download and install the Windows Update Standalone Installer 4.5 first. The download you need for SBS 2008 is file “<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=5A58B56F-60B6-4412-95B9-54D056D6F9F4&amp;displaylang=en" target="_blank">Windows6.0-KB942288-v2-x64.msu</a>” (2.94 MB).</p>
<p>5b. After downloading the installer, double-click it to run it, and if prompted by User Account Control, click <strong>Continue</strong>.<a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_10.png" rel="thumbnail">        <br /><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="User Account Control - Continue" border="0" alt="User Account Control - Continue" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_10.png" width="244" height="129" /></a>       </p>
<p>5c. The installer searches for updates,      <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_11.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Searching for updates" border="0" alt="Searching for updates" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_11.png" width="244" height="93" /></a>&#160; <br />and click <strong>OK</strong> when prompted to install Hotfix for Windows (KB942288).       <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_12.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Install Hotfix 942288 - OK" border="0" alt="Install Hotfix 942288 - OK" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_12.png" width="244" height="116" /></a></p>
<p>The installer runs by itself…      <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_13.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Installer runs by itself" border="0" alt="Installer runs by itself" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_13.png" width="244" height="171" /></a>       <br />… and will require a server restart when complete.       </p>
<p>5d. <strong>Reboot</strong> your SBS 2008 server.<a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_14.png" rel="thumbnail">        <br /><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Installation complete - Reboot" border="0" alt="Installation complete - Reboot" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_14.png" width="244" height="171" /></a> </p>
<p>5e. After the reboot is complete, log back into your server, click <strong>Start</strong> | <strong>Windows Small Business Server Tools</strong> | <strong>Microsoft Exchange Server 2007 SP2 Installation Tool</strong> to continue with the install and pickup at step 6 below.       <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_15.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Re-launch the MESIT" border="0" alt="Re-launch the MESIT" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_15.png" width="244" height="102" /></a> </p>
</blockquote>
<p>6. Browse to the location where you extracted the Exchange 2007 SP2 files and click <strong>OK</strong>.     <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_16.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Browse to expanded Exchange 2007 SP2 files" border="0" alt="Browse to expanded Exchange 2007 SP2 files" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_16.png" width="244" height="236" /></a>&#160;</p>
<p>7. At the “Install Service Pack 2 for Microsoft Exchange Server 2007” screen, click <strong>Next</strong>.     <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_17.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Here we go - Next" border="0" alt="Here we go - Next" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_17.png" width="244" height="198" /></a> </p>
<p>The wizard will temporarily disable Microsoft Forefront Security.    <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_18.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Under the covers magic" border="0" alt="Under the covers magic" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_18.png" width="244" height="198" /></a> </p>
<p>8. After the server environment has been prepared, click <strong>Next</strong>.     <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_19.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Prep complete - Next" border="0" alt="Prep complete - Next" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_19.png" width="244" height="199" /></a> </p>
<p>The Installation Tool will pop up a dialog box telling you not to close the window (not that you could because Next, Cancel and the X are grayed out). Ignore this window.    <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_20.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Ignore this window until SP2 wizard is complete and closed" border="0" alt="Ignore this window until SP2 wizard is complete and closed" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_20.png" width="244" height="198" /></a> </p>
<p>You want the 2nd window that pops up. </p>
<p>9. Click the <strong>Install Microsoft Exchange Service Pack 2</strong> link.     <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_21.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="SP2 Wizard - Install" border="0" alt="SP2 Wizard - Install" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_21.png" width="244" height="186" /></a> </p>
<p>There will be a short pause…    <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_22.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="The waiting is the hardest part" border="0" alt="The waiting is the hardest part" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_22.png" width="244" height="55" /></a>&#160; <br />…and then the wizard will launch.</p>
<p>10. On the SP2 setup screen, click <strong>Next</strong>.     <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_23.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Introduction - Next" border="0" alt="Introduction - Next" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_23.png" width="244" height="214" /></a> </p>
<p>11. <strong>Accept the EULA</strong>, and click <strong>Next</strong>.     <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_24.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Accept the EULA - Next" border="0" alt="Accept the EULA - Next" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_24.png" width="244" height="214" /></a> </p>
<p>12. After the readiness check is complete, (takes 1-2 minutes) if all of your prerequisites are green, click <strong>Upgrade</strong>.     <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_25.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Prerequisites OK - Upgrade" border="0" alt="Prerequisites OK - Upgrade" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_25.png" width="244" height="214" /></a> </p>
<p> The service pack installation will go through several stages:</p>
<ul>
<li>Organization Preparation (5 minutes)*</li>
<li>Preparing Setup (3 minutes)</li>
<li>Remove Exchange Files (21 minutes)</li>
<li>Preparing Files (1 minute)</li>
<li>Copy Exchange Files (8 minutes)</li>
<li>Hub Transport Role (9 minutes)</li>
<li>Client Access Role (3 minutes)</li>
<li>Mailbox Role (4 minutes)</li>
<li>Management Tools (1 minute)</li>
<li>Finalizing Setup (1 minutes)</li>
</ul>
<blockquote><p>Approximate time for SP2 install (excluding nearly 880 MB of downloads and reboots) was about 55 minutes, but YMMV.</p>
<p>*These times were on a virtual SBS 2008 install in a low-end Hyper-V server. <em>AMD Athlon Dual Core Processor 4450B 1.22 GHz, 4 GB RAM.</em>&#160; </p>
</blockquote>
<p>13. When the installation completes, click <strong>Finish</strong>.    <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_26.png" rel="thumbnail"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="SP2 installation complete - Finish" border="0" alt="SP2 installation complete - Finish" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_26.png" width="244" height="214" /></a>&#160;</p>
<p>14. <strong>Close</strong> the Exchange Server 2007 installation menu.    <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_27.png" rel="thumbnail"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Close the SP2 wizard - Close" border="0" alt="Close the SP2 wizard - Close" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_27.png" width="244" height="186" /></a> </p>
<p>15. On the Installation Tool window, click <strong>Next</strong>.    <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_28.png" rel="thumbnail"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="MSIT - Next" border="0" alt="MSIT - Next" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_28.png" width="244" height="197" /></a> </p>
<p>…the wizard will re-enable Forefront and restore the default settings for the SBS Web services.   <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_29.png" rel="thumbnail"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="More SBS ninja in the background" border="0" alt="More SBS ninja in the background" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_29.png" width="244" height="198" /></a> </p>
<p>16. If everything has gone smoothly, you’re out of the woods now. On the “Setup finished successfully” screen, click <strong>Finish</strong>.    <br /><a href="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_30.png" rel="thumbnail"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="MESIT is done - Finish" border="0" alt="MESIT is done - Finish" src="http://www.nogeekleftbehind.com/images/Exchange2007SP2onSBS2008_CBB6/image_thumb_30.png" width="244" height="198" /></a> </p>
<p>17. Start another backup of your server to protect all of your hard work! <img src='http://www.nogeekleftbehind.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.nogeekleftbehind.com/2009/12/31/exchange-2007-sp2-on-sbs-2008/feed/</wfw:commentRss>
		<slash:comments>1271</slash:comments>
		</item>
	</channel>
</rss>

