<?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; HowTo</title>
	<atom:link href="http://www.nogeekleftbehind.com/category/training/howto/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>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>788</slash:comments>
		</item>
		<item>
		<title>Video &#8211; Using MultiPoint Server 2011 with an iPad</title>
		<link>http://www.nogeekleftbehind.com/2011/06/06/video-using-multipoint-server-2011-with-an-ipad/</link>
		<comments>http://www.nogeekleftbehind.com/2011/06/06/video-using-multipoint-server-2011-with-an-ipad/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 04:53:59 +0000</pubDate>
		<dc:creator>timbarrett</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[WMS 2011]]></category>
		<category><![CDATA[iPad]]></category>

		<guid isPermaLink="false">http://www.nogeekleftbehind.com/2011/06/06/video-using-multipoint-server-2011-with-an-ipad/</guid>
		<description><![CDATA[One of the nice things about Windows MultiPoint Server 2011 is that you can use a variety of clients to connect to it and control it. Clients like: Desktop PCs Laptops Netbooks Thin clients USB stations Even iPads (yes, you read that right) I put together a short two-part video showing how to: Remote control [...]]]></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%2F06%2Fvideo-using-multipoint-server-2011-with-an-ipad%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2011%2F06%2F06%2Fvideo-using-multipoint-server-2011-with-an-ipad%2F&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.nogeekleftbehind.com/VideoControlling-MultiPoint-Server-2011-_69F/image.png" rel="thumbnail"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: right; border-top: 0px; border-right: 0px; padding-top: 0px" title="Yes, this is an iPad - get over it" border="0" alt="Yes, this is an iPad - get over it" align="right" src="http://www.nogeekleftbehind.com/VideoControlling-MultiPoint-Server-2011-_69F/image_thumb.png" width="121" height="163" /></a>One of the nice things about Windows MultiPoint Server 2011 is that you can use a variety of clients to connect to it and control it. Clients like: </p>
<ul>
<li>Desktop PCs</li>
<li>Laptops</li>
<li>Netbooks</li>
<li>Thin clients</li>
<li>USB stations</li>
<li>Even iPads (yes, you read that right)</li>
</ul>
<p>I put together a short two-part video showing how to:</p>
<ol>
<li>Remote control your iPad from a Windows PC, and </li>
<li>How to control a MultiPoint 2011 server from an iPad.      <br />&#160;</li>
</ol>
<blockquote><p>Note: Part 1 of the video shows a jailbroken iPad. <strong>You do NOT need to jailbreak the iPad to control the MultiPoint server.</strong> I jailbroke it so I could remote into the iPad to shoot the video (and because jailbreaking is fun and lets you do stuff that Apple should have done originally).</p>
<p>You can do Part 2 of the video (controlling the WMS 2011 Server) with an off-the-shelf iPad 1 or iPad 2 and an RDP program from the iTunes App Store – rest assured that your warranty will still be intact. </p>
</blockquote>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:50d08c43-c8ac-4287-9d33-d3fd207ac0f4" class="wlWriterEditableSmartContent">
<div><object width="448" height="252"><param name="movie" value="http://www.youtube.com/v/C3Ui23hYO8Q?hl=en&amp;hd=1"></param><embed src="http://www.youtube.com/v/C3Ui23hYO8Q?hl=en&amp;hd=1" type="application/x-shockwave-flash" width="448" height="252"></embed></object></div>
<div style="width:448px;clear:both;font-size:.8em">Controlling Windows MultiPoint Server 2011 with an iPad</div>
</div>
<p>Well, it’s kind of short &#8211; 12 minutes <img style="border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none" class="wlEmoticon wlEmoticon-winkingsmile" alt="Winking smile" src="http://www.nogeekleftbehind.com/VideoControlling-MultiPoint-Server-2011-_69F/wlEmoticon-winkingsmile.png" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nogeekleftbehind.com/2011/06/06/video-using-multipoint-server-2011-with-an-ipad/feed/</wfw:commentRss>
		<slash:comments>68</slash:comments>
		</item>
		<item>
		<title>Whitepaper &#8211; SBS 2003 to 2011 Migration Doc</title>
		<link>http://www.nogeekleftbehind.com/2011/01/14/whitepaper-sbs-2003-to-2011-migration-doc/</link>
		<comments>http://www.nogeekleftbehind.com/2011/01/14/whitepaper-sbs-2003-to-2011-migration-doc/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 15:27:15 +0000</pubDate>
		<dc:creator>timbarrett</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[SBS 2003]]></category>
		<category><![CDATA[SBS 2011]]></category>
		<category><![CDATA[Whitepapers]]></category>

		<guid isPermaLink="false">http://www.nogeekleftbehind.com/2011/01/14/whitepaper-sbs-2003-to-2011-migration-doc/</guid>
		<description><![CDATA[Whitepaper title: Migrate to Windows Small Business Server 2011 Standard from Windows Small Business Server 2003 File name: SBS7_Migrate2003.doc Date Published: 01/12/2011 Language: English File size: 724 KB Pages: 83 Version: 1.0 Download URL: Click here Description: This guide explains how to install Windows SBS 2011 Standard in Migration Mode on a new server, and [...]]]></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%2F01%2F14%2Fwhitepaper-sbs-2003-to-2011-migration-doc%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2011%2F01%2F14%2Fwhitepaper-sbs-2003-to-2011-migration-doc%2F&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Whitepaper title: <strong>Migrate to Windows Small Business Server 2011 Standard from Windows Small Business Server 2003     <br /></strong>File name: SBS7_Migrate2003.doc    <br />Date Published: 01/12/2011    <br />Language: English    <br />File size: 724 KB    <br />Pages: 83    <br />Version: 1.0    <br />Download URL: <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=ea184914-6445-4d7a-a432-927e6880dcd0" target="_blank">Click here</a></p>
<p>Description:</p>
<p>This guide explains how to install Windows SBS 2011 Standard in Migration Mode on a new server, and then migrate the settings and data from the old server that is running Windows Small Business Server 2003 to the new server that is running Windows SBS 2011 Standard. This guide also helps you demote and remove your old server from the network after you finish the migration process.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nogeekleftbehind.com/2011/01/14/whitepaper-sbs-2003-to-2011-migration-doc/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>How To Install SBS 2011 With A Bootable USB Drive</title>
		<link>http://www.nogeekleftbehind.com/2010/12/22/how-to-install-sbs-2011-with-a-bootable-usb-drive/</link>
		<comments>http://www.nogeekleftbehind.com/2010/12/22/how-to-install-sbs-2011-with-a-bootable-usb-drive/#comments</comments>
		<pubDate>Thu, 23 Dec 2010 02:45:00 +0000</pubDate>
		<dc:creator>timbarrett</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[SBS 2011]]></category>

		<guid isPermaLink="false">http://www.nogeekleftbehind.com/2010/12/23/how-to-install-sbs-2011-with-a-bootable-usb-drive/</guid>
		<description><![CDATA[It seems like every release of Windows Small Business Server is bigger than the last, and SBS 2011 is no exception.&#160; In fact, it’s downright HUGE! If you’ve downloaded the SBS 2011 Standard ISO from TechNet or MSDN, you’ve probably noticed that it’s actually too large to burn with a conventional DVD drive: Obviously, if [...]]]></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%2F12%2F22%2Fhow-to-install-sbs-2011-with-a-bootable-usb-drive%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2010%2F12%2F22%2Fhow-to-install-sbs-2011-with-a-bootable-usb-drive%2F&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>It seems like every release of Windows Small Business Server is bigger than the last, and SBS 2011 is no exception.&#160; In fact, it’s downright HUGE! If you’ve downloaded the SBS 2011 Standard ISO from TechNet or MSDN, you’ve probably noticed that it’s actually too large to burn with a conventional DVD drive:</p>
<p><a href="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/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="Sizes of ISO images for installing SBS 2003 R2, SBS 2008 and SBS 2011" border="0" alt="Sizes of ISO images for installing SBS 2003 R2, SBS 2008 and SBS 2011" src="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_thumb.png" width="474" height="112" /></a></p>
<p>Obviously, if you’re installing SBS 2011 as a Hyper-V child, downloading a 6.35 GB ISO straight onto the Hyper-V parent OS is no big deal. But if you want to install SBS 2011 on bare metal, you’ll probably need a bootable USB drive. </p>
<p>Here are the instructions on how to create your own bootable USB flash drive from scratch for installation of SBS 2011 Standard.</p>
<p><strong>What you’ll need:</strong></p>
<ul>
<li>ISO of SBS 2011 Standard (6.35 GB) </li>
<li>USB flash drive (I use a <a href="http://www.buy.com/prod/memorex-16gb-mini-traveldrive-usb-2-0-flash-drive-98180/q/loc/101/210956350.html" target="_blank">Memorex 16 GB Mini TravelDrive</a>) </li>
<li>A way to mount the ISO (I prefer <a href="http://www.slysoft.com/en/virtual-clonedrive.html" target="_blank">Virtual CloneDrive</a>, <a href="http://msmvps.com/blogs/bradley/" target="_blank">Susan</a> likes <a href="http://www.magiciso.com/" target="_blank">MagicISO</a>) </li>
<li>A Windows PC (not the SBS box itself) to create the bootable drive </li>
</ul>
<blockquote><p>Update 2011/01/10 – As Kendall Morrison reminded me, your Windows PC needs to be running a 64-bit OS when you do this.</p>
</blockquote>
<p><strong>The demo environment.</strong></p>
<p>For the purposes of this walkthrough, here are the drive letters on my Win7 PC<strong>:</strong></p>
<ul>
<li>The 6.35 GB SBS 2011 ISO is sitting in a folder on drive D: </li>
<li>The ISO will be mounted using Virtual CloneDrive in drive G: </li>
<li>The bootable USB drive will be drive H: </li>
</ul>
<p><a href="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/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="A Windows Explorer view of the drives on my Win7 PC" border="0" alt="A Windows Explorer view of the drives on my Win7 PC" src="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_thumb_3.png" width="514" height="114" /></a></p>
<blockquote><p>Go ahead and insert your USB flash drive, if you haven’t done so already.</p>
</blockquote>
<p>Below is my drive layout in Disk Management.    </p>
<p><a href="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/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="A Disk Management view of the drives on my Win7 PC" border="0" alt="A Disk Management view of the drives on my Win7 PC" src="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_thumb_4.png" width="514" height="416" /></a></p>
<blockquote><p>Obviously, your drive letters will be different.</p>
</blockquote>
<p><strong>Step-by-step:</strong></p>
<ol>
<li>In Windows Explorer, right-click the SBS 2011 ISO and mount it.      <br /><a href="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/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="Mount the ISO as a virtual drive (I&#39;m using Virtual CloneDrive)" border="0" alt="Mount the ISO as a virtual drive (I&#39;m using Virtual CloneDrive)" src="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_thumb_5.png" width="464" height="212" /></a>       <br />&#160; <br /><strong>Close the AutoPlay window</strong> <em>(if one pops up).</em>       </li>
<li>From the Start Menu, open an <strong>Administrative Command Prompt</strong>.       <br />&#160; <br /><a href="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/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="Open the Command Prompt using Run as Administrator" border="0" alt="Open the Command Prompt using Run as Administrator" src="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_thumb_6.png" width="244" height="135" /></a>       <br />&#160; </li>
<li>At the command prompt, type:
<p><strong>DISKPART </strong>(hit <strong>Enter</strong>)       </p>
<p><strong>LIST DISK </strong>(hit <strong>Enter</strong>)       </p>
<p><a href="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/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="Open DiskPart and view the drives in your system" border="0" alt="Open DiskPart and view the drives in your system" src="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_thumb_7.png" width="465" height="186" /></a>       <br />&#160; </li>
<li>Locate your USB flash drive in the list (mine is Disk 3).
<p>Type the following commands (hitting Enter after each one):       </p>
<p><strong>SELECT DISK 3 </strong><em>(or whatever your USB disk number is)</em>       </p>
<p><strong>CLEAN        </p>
<p>CREATE PARTITION PRIMARY         </p>
<p>SELECT PARTITION 1         </p>
<p>ACTIVE         </p>
<p>FORMAT FS=NTFS QUICK         </p>
<p>ASSIGN         <br /></strong>      <br /><a href="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/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="Select the Disk, clean it, partition it, make it active, format it, and assign it a letter" border="0" alt="Select the Disk, clean it, partition it, make it active, format it, and assign it a letter" src="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_thumb_8.png" width="466" height="326" /></a>       <br />&#160; </li>
<li>At this point, AutoPlay will probably pop up and tell you that a new disk was found which matches the drive letter of your USB flash drive.
<p><a href="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/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="You can close the AutoPlay window" border="0" alt="You can close the AutoPlay window" src="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_thumb_9.png" width="244" height="202" /></a>       </p>
<p><strong>Close the AutoPlay window</strong><em> (if one pops up).</em>       <br />&#160;&#160; </li>
<li>Back in the Command Prompt, type the following:
<p><strong>EXIT </strong>(hit <strong>Enter</strong>)       </p>
<p>DiskPart will finish, but leave the Command Prompt window open.       </p>
<p><a href="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_10.png" rel="thumbnail"><strong><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="Exiting DiskPart" border="0" alt="Exiting DiskPart" src="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_thumb_10.png" width="185" height="48" /></strong></a>       </li>
<li>Next we need to make the USB drive bootable. Type the following commands (hitting Enter after each one):
<p><strong>G: </strong><em>(G: is my mounted SBS 2011 ISO drive)</em>       </p>
<p><strong>CD BOOT        <br /></strong>      <br /><strong>BOOTSECT.EXE /NT60 H:</strong> <em>(H: is my USB drive)</em>       </p>
<p><a href="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/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="Command prompt instructions for making the disk bootable" border="0" alt="Command prompt instructions for making the disk bootable" src="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_thumb_11.png" width="463" height="136" /></a>       <br />&#160; <br /><strong>Close the Command Prompt window.        <br /></strong>&#160; </li>
<li>Now we need to copy the install bits from the ISO to the flash drive:
<p><strong>Open the mounted SBS 2011 ISO drive</strong> <em>(which is drive G: for me)        <br /></em>      <br /><strong>Highlight and copy</strong> all of the contents of the SBS 2011 drive.       </p>
<p><a href="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_12.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="Copy the SBS 2011 installation files from the mounted ISO" border="0" alt="Copy the SBS 2011 installation files from the mounted ISO" src="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_thumb_12.png" width="419" height="352" /></a>       </p>
<p><strong>Paste </strong>the contents into the root of the USB drive<em> (which is H: for me)        </p>
<p></em><a href="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_13.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="Right-click the USB drive and paste the SBS 2011 installation files into the root" border="0" alt="Right-click the USB drive and paste the SBS 2011 installation files into the root" src="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_thumb_13.png" width="420" height="265" /></a>       </p>
<p>The file copy will take a while (about 5-10 minutes), depending on the speed of your USB flash drive.       </p>
<p><a href="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_14.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="File copy is complete" border="0" alt="File copy is complete" src="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_thumb_14.png" width="405" height="210" /></a>       </li>
<li>Once the file copy is complete, safely eject the USB flash drive from your Windows PC and physically remove it.      <br />&#160; <br /><a href="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_15.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="Eject the USB flash drive" border="0" alt="Eject the USB flash drive" src="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_thumb_15.png" width="211" height="182" /></a>       <br />&#160; </li>
<li><strong>Unmount</strong> the ISO of SBS 2011 <em>(which is drive G: for me)        <br />&#160; <br /><a href="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_16.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="Unmount the ISO of SBS 2011 Standard" border="0" alt="Unmount the ISO of SBS 2011 Standard" src="http://www.nogeekleftbehind.com/Installing-SBS-2011-Using-A-Bootable-USB_11114/image_thumb_16.png" width="459" height="250" /></a>         <br /></em></li>
</ol>
<p>Now you just need to insert the bootable USB flash drive into your physical SBS 2011 box, set the boot option in the BIOS to boot from USB, and start the installation on the bare metal. Happy installing!</p>
<p>Props: <a href="http://www.intowindows.com/bootable-usb/" target="_blank">IntoWindows.com blog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nogeekleftbehind.com/2010/12/22/how-to-install-sbs-2011-with-a-bootable-usb-drive/feed/</wfw:commentRss>
		<slash:comments>486</slash:comments>
		</item>
		<item>
		<title>Whitepaper &#8211; VHD Getting Started Guide</title>
		<link>http://www.nogeekleftbehind.com/2010/05/29/whitepaper-vhd-getting-started-guide/</link>
		<comments>http://www.nogeekleftbehind.com/2010/05/29/whitepaper-vhd-getting-started-guide/#comments</comments>
		<pubDate>Sat, 29 May 2010 21:38:31 +0000</pubDate>
		<dc:creator>timbarrett</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[SBS & Microsoft Blogs]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[TechNet]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Whitepapers]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.nogeekleftbehind.com/2010/05/29/whitepaper-vhd-getting-started-guide/</guid>
		<description><![CDATA[Whitepaper Title: VHD Getting Started Guide File name: VHD Getting Started Guide.docx Data Published: May 27, 2010 Language: English File size: 1.13 MB Pages: 82 Download URL: Click here Description: This guide provides an introduction to virtual hard disks (VHDs) in Windows 7 and Windows Server 2008 R2. It includes an overview of technologies 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%2F2010%2F05%2F29%2Fwhitepaper-vhd-getting-started-guide%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2010%2F05%2F29%2Fwhitepaper-vhd-getting-started-guide%2F&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.nogeekleftbehind.com/images/WhitepaperVHDGettingStartedGuide_F7B5/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="Picture of a giant hard drive" border="0" alt="Picture of a giant hard drive" align="right" src="http://www.nogeekleftbehind.com/images/WhitepaperVHDGettingStartedGuide_F7B5/image_thumb.png" width="133" height="128" /></a>Whitepaper Title: <strong>VHD Getting Started Guide</strong>    <br />File name: VHD Getting Started Guide.docx    <br />Data Published: May 27, 2010    <br />Language: English    <br />File size: 1.13 MB    <br />Pages: 82    <br />Download URL: <a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=d2afacbb-5af6-45c2-b275-932116e27b0b" target="_blank">Click here</a></p>
<p>Description:   <br />This guide provides an introduction to virtual hard disks (VHDs) in Windows 7 and Windows Server 2008 R2. It includes an overview of technologies that you use to configure VHDs, as well as procedures to help guide you through deploying VHDs.</p>
</p>
<p>Contents:</p>
<ul>
<li>Virtual Hard Disks in Windows Server 2008 R2 &amp; Windows 7</li>
<li>What’s New in Virtual Hard Disks</li>
<li>Getting Started with Virtual Hard Disks</li>
<li>Introduction to Virtual Hard Disks</li>
<li>How to Perform Common Tasks</li>
<li>Appendix: Tools, Scripts and APIs</li>
<li>FAQ: Virtual Hard Disks in Windows 7</li>
<li>Power Management for Network Devices in Windows 7</li>
<li>What’s New in Power Management for Network Devices</li>
</ul>
<p>Source: <a href="http://blogs.technet.com/b/keithcombs/archive/2010/05/29/vhd-getting-started-guide-now-available.aspx" target="_blank">Keith Combs’ Blog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nogeekleftbehind.com/2010/05/29/whitepaper-vhd-getting-started-guide/feed/</wfw:commentRss>
		<slash:comments>201</slash:comments>
		</item>
		<item>
		<title>KYSBSUG Show Notes &#8211; Hard Drive Recovery</title>
		<link>http://www.nogeekleftbehind.com/2010/04/27/kysbsug-show-notes-hard-drive-recovery/</link>
		<comments>http://www.nogeekleftbehind.com/2010/04/27/kysbsug-show-notes-hard-drive-recovery/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 15:09:57 +0000</pubDate>
		<dc:creator>timbarrett</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[KYSBSUG]]></category>

		<guid isPermaLink="false">http://www.nogeekleftbehind.com/2010/04/27/kysbsug-show-notes-hard-drive-recovery/</guid>
		<description><![CDATA[The Kentucky Small Business Server User Group (KYSBSUG) meeting #74 last week on Hard Drive Recovery had a fantastic turnout! I’d like to thank all who attended and a special thanks to Craig Mayfield for a killer presentation! Here are the links for the resources mentioned in the presentation: Streaming recording of the entire presentation [...]]]></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%2F27%2Fkysbsug-show-notes-hard-drive-recovery%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2010%2F04%2F27%2Fkysbsug-show-notes-hard-drive-recovery%2F&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.nogeekleftbehind.com/images/KYSBSUGApril2010HardDriveRecovery_F480/image.png" rel="thumbnail"><img title="Data go &#39;bye-bye&#39; sometimes" border="0" alt="Data go &#39;bye-bye&#39; sometimes" align="right" src="http://www.nogeekleftbehind.com/images/KYSBSUGApril2010HardDriveRecovery_F480/image_thumb.png" width="83" height="84" /></a>The Kentucky Small Business Server User Group (KYSBSUG) <a href="http://www.nogeekleftbehind.com/2010/04/12/kysbsug-april-2010-hard-drive-recovery/">meeting #74 last week on Hard Drive Recovery</a> had a fantastic turnout! I’d like to thank all who attended and a special thanks to Craig Mayfield for a killer presentation!</p>
<p>Here are the links for the resources mentioned in the presentation:</p>
<ul>
<li>Streaming recording of the entire presentation (2 hours 4 minutes):      <br /><a title="http://www.ustream.tv/recorded/6366671" href="http://www.ustream.tv/recorded/6366671">http://www.ustream.tv/recorded/6366671</a> </li>
<li>Craig On-Site Computer Support &#8211; <a href="http://www.craigonsite.com">http://www.craigonsite.com</a> </li>
<li>Ubuntu &#8211; <a title="http://www.ubuntu.com/" href="http://www.ubuntu.com">http://www.ubuntu.com</a>&#160; </li>
<li>DD-WRT &#8211; <a title="http://www.dd-wrt.com/" href="http://www.dd-wrt.com">http://www.dd-wrt.com</a>&#160; </li>
<li>OpenWrt &#8211; <a title="http://openwrt.org/" href="http://openwrt.org">http://openwrt.org</a>&#160; </li>
<li>OpenDNS &#8211; <a href="http://www.opendns.com">http://www.opendns.com</a> </li>
<li>Lexington Microsoft User Group (LexMUG) &#8211; <a href="http://lexmug.ning.com">http://lexmug.ning.com</a> </li>
<li>DriveSavers &#8211; <a href="http://www.drivesaversdatarecovery.com">http://www.drivesaversdatarecovery.com</a> </li>
<li>Ontrack &#8211; <a href="http://www.ontrackdatarecovery.com">http://www.ontrackdatarecovery.com</a> </li>
<li>Eraser &#8211; <a href="http://eraser.heidi.ie">http://eraser.heidi.ie</a> </li>
<li>WipeDrive &#8211; <a title="http://www.whitecanyon.com/wipedrive-erase-hard-drive.php" href="http://www.whitecanyon.com/wipedrive-erase-hard-drive.php">http://www.whitecanyon.com/wipedrive-erase-hard-drive.php</a> </li>
<li>Active @ Kill Disk &#8211; <a href="http://www.killdisk.com">http://www.killdisk.com</a> </li>
<li>DiskExplorer &#8211; <a title="http://www.runtime.org/diskexplorer.htm" href="http://www.runtime.org/diskexplorer.htm">http://www.runtime.org/diskexplorer.htm</a> </li>
<li>DriveImage XML &#8211; <a title="http://www.runtime.org/driveimage-xml.htm" href="http://www.runtime.org/driveimage-xml.htm">http://www.runtime.org/driveimage-xml.htm</a> </li>
<li>GetDataBack &#8211; <a title="http://www.runtime.org/data-recovery-software.htm" href="http://www.runtime.org/data-recovery-software.htm">http://www.runtime.org/data-recovery-software.htm</a> </li>
<li>SpinRite &#8211; <a title="http://www.grc.com/spinrite.htm" href="http://www.grc.com/spinrite.htm">http://www.grc.com/spinrite.htm</a> </li>
<li>BartPE &#8211; <a href="http://www.nu2.nu/pebuilder">http://www.nu2.nu/pebuilder</a> </li>
<li>StorageCraft Shadow Protect &#8211; <a href="http://www.storagecraft.com">http://www.storagecraft.com</a> </li>
<li>Acronis &#8211; <a href="http://www.acronis.com">http://www.acronis.com</a> </li>
<li>PC-3000 &#8211; <a href="http://www.pc3000.com">http://www.pc3000.com</a> </li>
<li>DeepSpar Data Recovery &#8211; <a href="http://www.deepspar.com">http://www.deepspar.com</a> </li>
<li>PCB Solution &#8211; <a href="http://www.onepcbsolution.com">http://www.onepcbsolution.com</a> </li>
<li>HDDGURU &#8211; <a href="http://hddguru.com">http://hddguru.com</a> </li>
<li>Scott Moulton YouTube Hard Drive Videos      <br /><a title="http://www.youtube.com/user/SuperFlyFlippingA" href="http://www.youtube.com/user/SuperFlyFlippingA">http://www.youtube.com/user/SuperFlyFlippingA</a> </li>
<li>Scott Moulton’s Website      <br /><a href="http://www.myharddrivedied.com">http://www.myharddrivedied.com</a> </li>
<li>Technical Self-Employment Is A Fat Paycheck Waiting to Be Pocketed      <br /><a href="http://www.koozie.org/2004/10/freelance_tech_.html">http://www.koozie.org/2004/10/freelance_tech_.html</a> </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.nogeekleftbehind.com/2010/04/27/kysbsug-show-notes-hard-drive-recovery/feed/</wfw:commentRss>
		<slash:comments>649</slash:comments>
		</item>
		<item>
		<title>How To Create a Bootable ShadowProtect USB Drive</title>
		<link>http://www.nogeekleftbehind.com/2010/03/01/how-to-create-a-bootable-shadowprotect-usb-drive/</link>
		<comments>http://www.nogeekleftbehind.com/2010/03/01/how-to-create-a-bootable-shadowprotect-usb-drive/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 13:49:08 +0000</pubDate>
		<dc:creator>timbarrett</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.nogeekleftbehind.com/2010/03/01/how-to-create-a-bootable-shadowprotect-usb-drive/</guid>
		<description><![CDATA[I really hate carrying around physical CDs/DVDs for programs I use a lot. Normally I just convert all my discs into ISOs with the free ImgBurn program (which totally rocks) and then throw the ISOs onto my Toshiba 320 GB portable USB drive. Then when I’m on-site if I need a CD, I just mount [...]]]></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%2F03%2F01%2Fhow-to-create-a-bootable-shadowprotect-usb-drive%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2010%2F03%2F01%2Fhow-to-create-a-bootable-shadowprotect-usb-drive%2F&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/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="ShadowProtect" border="0" alt="ShadowProtect" align="right" src="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/image_thumb.png" width="134" height="141" /></a> I really hate carrying around physical CDs/DVDs for programs I use a lot. Normally I just convert all my discs into ISOs with the free <a href="http://www.imgburn.com/" target="_blank">ImgBurn</a> program (which totally rocks) and then throw the ISOs onto my Toshiba 320 GB portable USB drive. Then when I’m on-site if I need a CD, I just mount the ISO with <a href="http://www.slysoft.com/en/download.html" target="_blank">Virtual CloneDrive</a> (also free, and also rocks) and launch the program.</p>
<p>That said, sometimes you still need a bootable CD/DVD. For instance, when you want to image a workstation or server with <a href="http://www.storagecraft.com/" target="_blank">StorageCraft ShadowProtect</a> and backup the entire machine to an external USB drive.&#160; Unfortunately, that means carrying the disc with you in your tech toolkit, or carrying the ISO and burning a disc.</p>
<p>Here’s a better idea – Use one of those old 1 GB USB flash drives gathering dust in your drawer, and turn it into a bootable USB drive.</p>
<p>Now, before you say “not <a href="http://www.nu2.nu/pebuilder/" target="_blank">BartPE</a> and the <a href="http://hp-usb-disk-storage-format-tool.software.informer.com/" target="_blank">HP Boot Flash Utility</a> again”, we’re not using those old school tools. This is as modern as modern gets – using a Windows 7 64-bit ultimate machine and no physical CDs.</p>
<blockquote><p>Note: These instructions are assuming you have already purchased a licensed copy of ShadowProtect from StorageCraft, and are simply looking to turn a boot CD into a boot USB flash drive. </p>
</blockquote>
<p><strong>What You’ll Need</strong></p>
<ul>
<li>ISO image of ShadowProtect or a ShadowProtect boot CD (471 MB) </li>
<li>1 GB or larger USB flash drive </li>
<li><a href="http://gocoding.com/page.php?al=petousb" target="_blank">PeToUSB_3.0.0.7.zip</a> (100KB) </li>
<li>Windows 7 workstation (I used a 64-bit Ultimate box, but YMMV) </li>
</ul>
<p><strong>Step-by-Step Instructions to Create the Bootable USB Drive</strong></p>
<ol>
<li>Extract the downloaded <a href="http://gocoding.com/page.php?al=petousb" target="_blank">PeToUSB_3.0.0.7.zip</a> file into a folder on your desktop. You will see 3 files in there, but you only need&#160; PeToUSB.exe       <br /><a href="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/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="Cool PeToUSB program" border="0" alt="Cool PeToUSB program" src="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/image_thumb_3.png" width="444" height="154" /></a>       </li>
<li>Insert the physical ShadowProtect CD into your drive, or if you’re using an ISO, mount the ISO using Virtual CloneDrive (or some other ISO program).      <br /><a href="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/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="Mount the ISO or insert a ShadowProtect DVD" border="0" alt="Mount the ISO or insert a ShadowProtect DVD" src="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/image_thumb_4.png" width="244" height="177" /></a>       </li>
<li>Insert your USB flash drive.      <br /><a href="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/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="Insert the flash drive" border="0" alt="Insert the flash drive" src="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/image_thumb_5.png" width="244" height="64" /></a>&#160; </li>
<li>Right-click the PeToUSB program, and choose RunAs Administrator.      <br /><a href="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/image_6.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Make sure you RunAs administrator" border="0" alt="Make sure you RunAs administrator" src="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/image_thumb_6.png" width="439" height="187" /></a>       </li>
<li>Select your flash drive from the pull-down menu.      <br /><a href="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/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="If this box is blank, you probably didn&#39;t use RunAs Administrator" border="0" alt="If this box is blank, you probably didn&#39;t use RunAs Administrator" src="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/image_thumb_7.png" width="436" height="87" /></a>       </li>
<li>Check Enable Disk Format and check Quick Format boxes.      <br /><a href="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/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="Format and label" border="0" alt="Format and label" src="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/image_thumb_8.png" width="435" height="126" /></a>&#160; </li>
<li>Browse to the ShadowProtect CD location.      <br /><a href="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/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="Find the physical CD or mounted ISO" border="0" alt="Find the physical CD or mounted ISO" src="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/image_thumb_9.png" width="429" height="77" /></a>       </li>
<li>Click the Enable File Copy checkbox.      <br /><a href="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/image_10.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/HowToCreateaBootableShadowProtectUSBDriv_83E/image_thumb_10.png" width="430" height="77" /></a>&#160;
<p>Your settings should look similar to this:       <br /><a href="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/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="Double-check everything" border="0" alt="Double-check everything" src="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/image_thumb_11.png" width="319" height="333" /></a>       </li>
<li>Click Start. On the Continue screen click Yes.      <br /><a href="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/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="Go baby, go." border="0" alt="Go baby, go." src="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/image_thumb_12.png" width="240" height="166" /></a>       </li>
<li>On the Are You Sure You Want To Continue screen, confirm that the correct flash drive is about to be formatted, and click Yes.      <br /><a href="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/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="Are you really sure?" border="0" alt="Are you really sure?" src="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/image_thumb_13.png" width="314" height="192" /></a>       </li>
<li>The drive will be automatically formatted and the files will start copying.      <br /><a href="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/image_14.png" rel="thumbnail"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="PeToUSB is setting up the USB drive." border="0" alt="PeToUSB is setting up the USB drive." src="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/image_thumb_14.png" width="240" height="135" /></a> </li>
<li>When the format and copy are complete click OK.      <br /><a href="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/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="All done!" border="0" alt="All done!" src="http://www.nogeekleftbehind.com/images/HowToCreateaBootableShadowProtectUSBDriv_83E/image_thumb_15.png" width="240" height="140" /></a>&#160; </li>
<li>Safely Remove the drive, you’re done! </li>
</ol>
<p>Now you can boot a workstation off the USB, plug in a USB drive large enough to hold the backup images, and create a backup of that target machine. Or, for some P2V action, you can use the free <a href="http://downloads.vmware.com/d/info/desktop_downloads/vmware_player/3_0" target="_blank">VMware Player</a> (89.9 MB) to spin up that SPF as a virtual machine. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.nogeekleftbehind.com/2010/03/01/how-to-create-a-bootable-shadowprotect-usb-drive/feed/</wfw:commentRss>
		<slash:comments>681</slash:comments>
		</item>
		<item>
		<title>KYSBSUG Meeting #71 &#8211; Passwords</title>
		<link>http://www.nogeekleftbehind.com/2010/01/18/kysbsug-meeting-71-passwords/</link>
		<comments>http://www.nogeekleftbehind.com/2010/01/18/kysbsug-meeting-71-passwords/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 14:02:22 +0000</pubDate>
		<dc:creator>timbarrett</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[KYSBSUG]]></category>
		<category><![CDATA[Live Events]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[User Groups]]></category>

		<guid isPermaLink="false">http://www.nogeekleftbehind.com/2010/01/18/kysbsug-meeting-71-passwords/</guid>
		<description><![CDATA[Invitation – January 2010 KYSBSUG Meeting #71 Meeting Date: Wednesday January 20, 2010 Time: 6:30 PM Eastern Location: Money Concepts Address: 323 Townpark Circle, Suite 100, Louisville, KY 40243 Topic: “Password Security and Password Cracking” Guest Presenter: Dana Epp, MVP (Enterprise Security) Founder &#38; President of Scorpion Software (makers of AuthAnvil) Website: http://www.scorpionsoft.com/ MVP: https://mvp.support.microsoft.com/profile/Dana.Epp [...]]]></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%2F01%2F18%2Fkysbsug-meeting-71-passwords%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2010%2F01%2F18%2Fkysbsug-meeting-71-passwords%2F&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Invitation – January 2010 KYSBSUG Meeting #71   <br />Meeting Date: Wednesday January 20, 2010    <br />Time: 6:30 PM Eastern    <br />Location: Money Concepts    <br />Address: 323 Townpark Circle, Suite 100, Louisville, KY 40243    <br />Topic: “<strong>Password Security and Password Cracking</strong>”</p>
<p><a href="http://www.nogeekleftbehind.com/images/KYSBSUGMeeting71Passwords_7EE4/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="Dana Epp - Microsoft MVP" border="0" alt="Dana Epp - Microsoft MVP" align="right" src="http://www.nogeekleftbehind.com/images/KYSBSUGMeeting71Passwords_7EE4/image_thumb.png" width="81" height="104" /></a> Guest Presenter: <b>Dana Epp, MVP (Enterprise Security)</b>    <br />Founder &amp; President of Scorpion Software (makers of AuthAnvil)    </p>
<p>Website: <a href="http://www.scorpionsoft.com/">http://www.scorpionsoft.com/</a>    <br />MVP: <a href="https://mvp.support.microsoft.com/profile/Dana.Epp">https://mvp.support.microsoft.com/profile/Dana.Epp</a>    <br />Blog: <a href="http://silverstr.ufies.org/blog/">http://silverstr.ufies.org/blog/</a></p>
<p>Description: Dana Epp is an industry-recognized expert in security and Microsoft MVP (2006-2010). Dana will talk about local and remote password security in SBS and SMB networks. He’ll also talk about topics such as two-factor authentication and tell you how you can implement this technology for your employees and customers.</p>
<p>Following Dana’s presentation, we’ll have a hands-on lab to demonstrate some of the tools on the market and methods to test (and break) passwords.</p>
<p>6:30 – 6:45 – Local events &amp; introductions   <br />6:45 – 7:30 – Dana Epp presentation (via GoToMeeting)    <br />7:30 – 7:45 – Dana Q&amp;A    <br />7:45 – 8:20 – Hands-on Lab    <br />8:20 – 8:30 – Door prize drawing and wrap-up</p>
<p>Door Prize: This month our door prize is an NFR copy of Windows 7 Ultimate.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nogeekleftbehind.com/2010/01/18/kysbsug-meeting-71-passwords/feed/</wfw:commentRss>
		<slash:comments>149</slash:comments>
		</item>
		<item>
		<title>Training &#8211; Free SBS 2008 Hands-On Labs</title>
		<link>http://www.nogeekleftbehind.com/2009/12/01/training-free-sbs-2008-hands-on-labs/</link>
		<comments>http://www.nogeekleftbehind.com/2009/12/01/training-free-sbs-2008-hands-on-labs/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 16:59:07 +0000</pubDate>
		<dc:creator>timbarrett</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[SBS 2008]]></category>
		<category><![CDATA[Training]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://www.nogeekleftbehind.com/2009/12/01/training-free-sbs-2008-hands-on-labs/</guid>
		<description><![CDATA[If you’ve been wishing for some structured Windows Small Business Server 2008 training offered by Microsoft, wait no more.&#160; Microsoft has announced a set of four hands-on labs for SBS 2008, and (it gets better) it’s free! Title: Windows SBS 2008 Hands-On Labs for Partners Release Date: 9/25/2009 Version: 2.0 Download Size: 12.5 GB The [...]]]></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%2F01%2Ftraining-free-sbs-2008-hands-on-labs%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nogeekleftbehind.com%2F2009%2F12%2F01%2Ftraining-free-sbs-2008-hands-on-labs%2F&amp;style=compact&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.nogeekleftbehind.com/images/TrainingFreeSBS2008HandsOnLabs_A829/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="image" border="0" alt="image" align="right" src="http://www.nogeekleftbehind.com/images/TrainingFreeSBS2008HandsOnLabs_A829/image_thumb.png" width="116" height="159" /></a> If you’ve been wishing for some structured <strong>Windows Small Business Server 2008 training</strong> offered by Microsoft, wait no more.&#160; Microsoft has announced a set of four hands-on labs for SBS 2008, and (it gets better) it’s <strong>free</strong>! </p>
<p>Title: <strong>Windows SBS 2008 Hands-On Labs for Partners     <br /></strong>Release Date: 9/25/2009    <br />Version: 2.0    <br />Download Size: 12.5 GB</p>
<p>The courses available are:</p>
<ol>
<li>Windows SBS 2008 Admin Console</li>
<li>Windows SBS 2008 Working with Clients</li>
<li>Windows SBS 2008 Installation</li>
<li>Windows SBS 2008 Migration from SBS 2003</li>
</ol>
<p>The downloads are available from the Microsoft Connect site:</p>
<blockquote><p>URL: <a title="https://connect.microsoft.com/directory/" href="https://connect.microsoft.com/directory/">https://connect.microsoft.com/directory/</a>      <br />Invitation Code: <strong>SBSP-62B6-K3TH</strong></p>
</blockquote>
<p>System Requirements:</p>
<ul>
<li>A machine that supports <a href="http://www.microsoft.com/servers/hyper-v-server/system-requirements.mspx" target="_blank">Hyper-V</a>*;       <br />&#160;&#160;&#160; <em>a server class** dual- or quad-core CPU is highly recommended</em></li>
<li>5 GB of RAM min. (<em>6-8 GB would be better</em>);       <br />&#160;&#160;&#160; SBS 2008 requires a minimum of 4 GB of RAM,&#160; <br />&#160;&#160;&#160; Parent partition (Hyper-V host) requires 1 GB</li>
<li>80 GB of free hard drive space;      <br />&#160;&#160;&#160; 15 GB will be used initially but the VHDs could grow to a max. of 80 GB</li>
<li><em>Optional &#8211; router that will function between the SBS server and the Internet/corporate network</em></li>
<li><em>Optional &#8211; second physical network adapter to connect the SBS virtual machine to the router</em></li>
</ul>
<p>Here’s a screen shot of the file downloads in the kit:</p>
<p><a href="http://www.nogeekleftbehind.com/images/TrainingFreeSBS2008HandsOnLabs_A829/image_3.png" rel="thumbnail"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.nogeekleftbehind.com/images/TrainingFreeSBS2008HandsOnLabs_A829/image_thumb_3.png" width="365" height="321" /></a> </p>
<p>* Note: If you’ve never installed Hyper-V before, I’ve got a short video    <br />(4:18 minutes) on YouTube demonstrating the installation.</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:2318154e-fca2-4ca6-9fef-3fa520285744" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/X71rOKEZtjk&amp;hl=en"></param><embed src="http://www.youtube.com/v/X71rOKEZtjk&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
</div>
<p>** Server-class hardware is recommended, but not required since this is a HOL and not a production box. For example, here are my demo Hyper-V box specs:</p>
<ul>
<li>HP Compaq dc5800 microtower</li>
<li>Intel Core 2 Duo E6550 2.33 GHz</li>
<li>8 GB RAM</li>
<li>1 ea. 149 GB SATA drive (OS)</li>
<li>1 ea. 1 TB SATA drive (ISOs and VHDs)</li>
<li>Windows Server 2008 R2 Enterprise</li>
</ul>
<p>To make sure that your machine supports Hyper-V (both in the BIOS and on the processor) check out the SecurAble download from GRC.com that tests hardware virtualization: <a title="http://www.grc.com/securable.htm" href="http://www.grc.com/securable.htm">http://www.grc.com/securable.htm</a></p>
<p>Props: <a href="http://sbs.seandaniel.com/2009/11/windows-sbs-2008-hands-on-labs.html" target="_blank">Sean Daniel’s blog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nogeekleftbehind.com/2009/12/01/training-free-sbs-2008-hands-on-labs/feed/</wfw:commentRss>
		<slash:comments>708</slash:comments>
		</item>
	</channel>
</rss>

