<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://uksbsguy.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">David Overton&amp;#39;s Blog</title><subtitle type="html">This blog is purely the personal opinions of David Overton. . If you can&amp;#39;t 
find the information you were looking for e-mail me at &lt;a href="mailto:admin@davidoverton.com"&gt;admin@davidoverton.com&lt;/a&gt;. If you want to narrow down the content consider these links: 
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://uksbsguy.com/blogs/doverton/archive/tags/Windows+Client/default.aspx"&gt;&lt;strong&gt;Windows&lt;/strong&gt;&lt;/a&gt; 

&lt;li&gt;&lt;a href="http://uksbsguy.com/blogs/doverton/archive/tags/SBS+2008/default.aspx"&gt;&lt;strong&gt;SBS 
2008&lt;/strong&gt;&lt;/a&gt; or &lt;a href="http://uksbsguy.com/blogs/doverton/archive/tags/SBS+2003/default.aspx"&gt;&lt;strong&gt;SBS 
2003&lt;/strong&gt;&lt;/a&gt; 
&lt;li&gt;&lt;a href="http://uksbsguy.com/blogs/doverton/archive/tags/Office+2007/default.aspx"&gt;&lt;strong&gt;Office 
2007&lt;/strong&gt;&lt;/a&gt; or &lt;a href="http://uksbsguy.com/blogs/doverton/archive/tags/Office+2003/default.aspx"&gt;&lt;strong&gt;Office 
2003&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;</subtitle><id>http://uksbsguy.com/blogs/doverton/atom.aspx</id><link rel="alternate" type="text/html" href="http://uksbsguy.com/blogs/doverton/default.aspx" /><link rel="self" type="application/atom+xml" href="http://uksbsguy.com/blogs/doverton/atom.aspx" /><generator uri="http://communityserver.org" version="4.1.40407.4157">Community Server</generator><updated>2009-04-11T08:50:00Z</updated><entry><title>How to copy or archive files by year using the command line and robocopy</title><link rel="alternate" type="text/html" href="/blogs/doverton/archive/2009/05/06/how-to-copy-or-archive-files-by-year-using-the-command-line-and-robocopy.aspx" /><id>/blogs/doverton/archive/2009/05/06/how-to-copy-or-archive-files-by-year-using-the-command-line-and-robocopy.aspx</id><published>2009-05-06T10:26:17Z</published><updated>2009-05-06T10:26:17Z</updated><content type="html">&lt;p&gt;I got this question via e-mail and decided I would post the answer here in a blog.&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;I want transfer all files created in Office Word 2003 by year (annual batchs - ex: 2005, 2006, etc.) to external HD. How can to do this?&lt;/p&gt;    &lt;p&gt;I will appreciate your answer.&lt;/p&gt;    &lt;p&gt;Edgar &lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;To do this via the command line you can use Robocopy which is present in Windows Vista and Windows 7.&amp;#160; If you have Windows XP &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=9d467a69-57ff-4ae7-96ee-b18c4790cffd&amp;amp;displaylang=en" target="_blank"&gt;download the Server 2003 Resource Toolkit&lt;/a&gt; and install it.&amp;#160; Robocopy will be part of the install and found in the install directory.&lt;/p&gt;  &lt;p&gt;The actual command would look like this and would need to be entered into a command prompt:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font face="Courier New"&gt;for /L %x in (2009,-1,2000) do robocopy &lt;em&gt;source destination&lt;/em&gt;\%x *.doc? /minage:%x0101 /maxage:%x1231 /s&lt;/font&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;To break it down a bit..&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;font face="Courier New"&gt;for /L %x in (2009,-1,2000) do&lt;/font&gt;&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;This creates a counter from 2009 up in steps of -1 (or down in steps of 1) until 2000 is reached.&amp;#160; Each time the counter changes it is set into %x, so %x will become 2009, 2008 and so on.&amp;#160; It then executes the command after to &amp;quot;do&amp;quot;.&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;font face="Courier New"&gt;robocopy &lt;em&gt;source destination&lt;/em&gt;\%x *.doc? /minage:%x0101 /maxage:%x1231 /s&lt;/font&gt;&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;The robocopy command is very flexible.&amp;#160; Details of it can be found on the wiki page &lt;a href="http://en.wikipedia.org/wiki/Robocopy" target="_blank"&gt;here&lt;/a&gt;.&amp;#160; &lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;The first two parameters are the sounce and destination locations.&amp;#160; so it might be c:\users\david\documents and F:\document_backup.&amp;#160; Note the \%x on the end.&amp;#160; This means it will put the files inside a folder on the destination location that matches the year you are archiving.&lt;/li&gt;    &lt;li&gt;*.doc? is a limiter to the files to be copied - if you want all files, simply remove it.&amp;#160; This will copy all Office 2003 and 2007 document files - if you only want Office 2003, use *.doc and don&amp;#39;t include the question mark.&lt;/li&gt;    &lt;li&gt;The minage and maxage state how old the file is.&amp;#160; It can either be in days or a date in the form of yyyymmdd.&amp;#160; So with the %x set to 2009, the command will have /minage:20090101 /maxage:20091231 which equates to everything in 2009 and so on.&lt;/li&gt;    &lt;li&gt;The /s copies all subdirectories too&lt;/li&gt;    &lt;li&gt;You can optionally put the /MOV (to move the files) or /MOVE (to move all files and empty directories) command on the end.&lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;I hope that helps&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;David&lt;/p&gt;  &lt;div style="padding-bottom:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;float:none;padding-top:0px;" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:edc49fa0-df30-4cdb-b2db-5e6399cda500" class="wlWriterEditableSmartContent"&gt;Technorati Tags: &lt;a href="http://technorati.com/tags/Windows" rel="tag"&gt;Windows&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Microsoft" rel="tag"&gt;Microsoft&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Robocopy" rel="tag"&gt;Robocopy&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Command+Line" rel="tag"&gt;Command Line&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Archiving" rel="tag"&gt;Archiving&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Office+2007" rel="tag"&gt;Office 2007&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Word" rel="tag"&gt;Word&lt;/a&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://uksbsguy.com/aggbug.aspx?PostID=8433" width="1" height="1"&gt;</content><author><name>doverton</name><uri>http://uksbsguy.com/members/doverton/default.aspx</uri></author><category term="Windows 7, Vista and XP" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Windows+7_2C00_+Vista+and+XP/default.aspx" /><category term="Office System" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Office+System/default.aspx" /><category term="Microsoft" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Microsoft/default.aspx" /><category term="Windows Client" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Windows+Client/default.aspx" /><category term="Windows XP" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Windows+XP/default.aspx" /><category term="Office 2007" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Office+2007/default.aspx" /><category term="Word" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Word/default.aspx" /><category term="Tips" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Tips/default.aspx" /><category term="Office 2003" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Office+2003/default.aspx" /><category term="Windows 7" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Windows+7/default.aspx" /><category term="Windows Vista and XP" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Windows+Vista+and+XP/default.aspx" /><category term="Windows Vista" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Windows+Vista/default.aspx" /></entry><entry><title>Where to buy Small Business Server 2008, Installing, Migrating and Configuring book</title><link rel="alternate" type="text/html" href="/blogs/doverton/archive/2009/05/05/where-to-buy-small-business-server-2008-installing-migrating-and-configuring-book.aspx" /><id>/blogs/doverton/archive/2009/05/05/where-to-buy-small-business-server-2008-installing-migrating-and-configuring-book.aspx</id><published>2009-05-05T09:37:00Z</published><updated>2009-05-05T09:37:00Z</updated><content type="html">&lt;p&gt;I&amp;#39;ve had a few people ask where they can buy my book so I thought I would lay out the options.&amp;nbsp; You can always purchase both the book and / or the e-book from Packt Publishing at &lt;a href="http://www.packtpub.com/small-business-server-2008-installation-migration-configuration/book" title="http://www.packtpub.com/small-business-server-2008-installation-migration-configuration/book"&gt;http://www.packtpub.com/small-business-server-2008-installation-migration-configuration/book&lt;/a&gt; however for those who wish to buy elsewhere, you can.&lt;/p&gt;
&lt;table width="669" cellpadding="1" cellspacing="1" border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td width="147" valign="top"&gt;
&lt;p&gt;&lt;a href="http://davidoverton.com/r.ashx?1N"&gt;&lt;img src="http://davidoverton.com/images/book/amazon-uk.JPG" border="0" style="vertical-align:middle;border:0;" alt="" /&gt;&lt;/a&gt;&lt;img height="1" width="1" src="http://www.assoc-amazon.co.uk/e/ir?t=usg-21&amp;amp;l=as2&amp;amp;o=2&amp;amp;a=1847196306" border="0" alt="" /&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://davidoverton.com/r.ashx?1N"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td width="147" valign="top"&gt;
&lt;p&gt;&lt;a href="http://davidoverton.com/r.ashx?1O"&gt;&lt;img src="http://davidoverton.com/images/book/amazon-us.JPG" border="0" style="vertical-align:middle;border:0;" alt="" /&gt;&lt;/a&gt;&lt;img height="1" width="1" src="http://www.assoc-amazon.com/e/ir?t=usg-20&amp;amp;l=as2&amp;amp;o=1&amp;amp;a=1847196306" border="0" alt="" /&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://davidoverton.com/r.ashx?1O"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td width="181" valign="top"&gt;
&lt;p&gt;&lt;a href="http://www.packtpub.com/small-business-server-2008-installation-migration-configuration/book"&gt;&lt;img height="123" width="99" src="http://images.packtpub.com/images/100x123/1847196306.png" alt="Small Business Server 2008 &amp;ndash; Installation, Migration, and Configuration" border="0" title="Small Business Server 2008 &amp;ndash; Installation, Migration, and Configuration" /&gt;&lt;/a&gt; &lt;br /&gt;&lt;b&gt;Cover price&lt;/b&gt; &lt;br /&gt;&amp;pound;24.99&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Packt Special Offer&lt;/b&gt; &lt;br /&gt;&lt;b&gt;&amp;pound;22.49 save 10% &lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Multi-buy Discount&lt;/b&gt; &lt;br /&gt;&lt;b&gt;&amp;pound;20.49 save 18% &lt;/b&gt;&lt;br /&gt;order two or more items&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.packtpub.com/"&gt;Free shipping! US, UK, Europe &amp;amp; selected Asian countries&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td width="187" valign="top"&gt;
&lt;p&gt;&lt;a href="http://www.packtpub.com/small-business-server-2008-installation-migration-configuration/book"&gt;&lt;img height="61" width="48" src="http://images.packtpub.com/images/pdfimages/1847196306.png" alt="Small Business Server 2008 &amp;ndash; Installation, Migration, and Configuration - PDF eBook" border="0" title="Small Business Server 2008 &amp;ndash; Installation, Migration, and Configuration - PDF eBook" /&gt;&lt;/a&gt; &lt;br /&gt;&lt;b&gt;Adobe PDF eBook&lt;/b&gt; &lt;br /&gt;Small Business Server 2008 &amp;ndash; Installation, Migration, and Configuration [eBook] &lt;br /&gt;File size: 16.37 MB &lt;br /&gt;Packt eBooks can be printed and are now copy-paste enabled. &lt;br /&gt;&lt;b&gt;eBook only&lt;/b&gt; (click book above)&lt;br /&gt;&amp;pound;16.99 &lt;br /&gt;&amp;pound;14.44 &lt;/p&gt;
&lt;p&gt;&lt;b&gt;Save 15% off eBook &lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Book and eBook bundle&lt;/b&gt; &lt;br /&gt;&amp;pound;39.43 &lt;br /&gt;&lt;b&gt;&amp;pound;25.42&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="147" valign="top"&gt;Amazon in UK&lt;/td&gt;
&lt;td width="147" valign="top"&gt;Amazon in USA&lt;/td&gt;
&lt;td width="181" valign="top"&gt;Anywhere else in the world (book)&lt;/td&gt;
&lt;td width="187" valign="top"&gt;Anywhere in the world (e-book)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I hope you enjoy the book.&amp;nbsp; For a brief summary of the &lt;a target="_blank" href="http://davidoverton.com/blogs/doverton/pages/sbs-2008-book.aspx"&gt;chapters go here&lt;/a&gt; and you can preview a chapter from the book &lt;a target="_blank" href="http://www.packtpub.com/files/small-business-server-2008-sample-chapter-4-installing-sbs-2008-and-connecting-to-the-internet.pdf"&gt;here -(Sample Chapter 4 Installing SBS 2008 and Connecting to the Internet [2.0 MB])&lt;/a&gt;. &lt;/p&gt;
&lt;p&gt;If you wish to request a copy to review, look at the &lt;a href="http://www.packtpub.com/free"&gt;Request a Review Copy&lt;/a&gt; page.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;David&lt;/p&gt;
&lt;div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:03b5c532-d4d1-4090-b36a-22d1671cb0a0" style="padding-bottom:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;float:none;padding-top:0px;"&gt;Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/SBS+2008"&gt;SBS 2008&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Small+Business+Server+2008"&gt;Small Business Server 2008&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Installing"&gt;Installing&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Configuring"&gt;Configuring&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Migrating"&gt;Migrating&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Microsoft"&gt;Microsoft&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Book"&gt;Book&lt;/a&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://uksbsguy.com/aggbug.aspx?PostID=8430" width="1" height="1"&gt;</content><author><name>doverton</name><uri>http://uksbsguy.com/members/doverton/default.aspx</uri></author><category term="SBS 2003" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/SBS+2003/default.aspx" /><category term="SBSC" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/SBSC/default.aspx" /><category term="Microsoft" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Microsoft/default.aspx" /><category term="SBS 2003 R2" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/SBS+2003+R2/default.aspx" /><category term="Small business" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Small+business/default.aspx" /><category term="SBS 2008" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/SBS+2008/default.aspx" /><category term="Book" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Book/default.aspx" /></entry><entry><title>Migrating SBS 2000 to Windows SBS 2008 - download document now available</title><link rel="alternate" type="text/html" href="/blogs/doverton/archive/2009/05/02/migrating-sbs-2000-to-windows-sbs-2008-download-document-now-available.aspx" /><id>/blogs/doverton/archive/2009/05/02/migrating-sbs-2000-to-windows-sbs-2008-download-document-now-available.aspx</id><published>2009-05-01T23:29:00Z</published><updated>2009-05-01T23:29:00Z</updated><content type="html">&lt;p&gt;Should you have a SBS 2000 system that you wish to move to SBS 2008 there is now a documented process on how to do this.&lt;/p&gt;
&lt;blockquote&gt;
&lt;h3&gt;Migrating Microsoft Small Business Server 2000 to Windows Small Business Server 2008&lt;/h3&gt;
&lt;h6&gt;Outlines the steps necessary to migrate settings and data from an existing server running Microsoft Small Business Server 2000 to a new computer running Windows SBS 2008.&lt;/h6&gt;
&lt;p&gt;File Name: Migrating_SBS2000_to_SBS2008.doc&lt;/p&gt;
&lt;p&gt;Date Published: 5/1/2009&lt;/p&gt;
&lt;p&gt;Download Size:96 KB&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=b86e2af5-782b-4001-bf86-d872028a4619"&gt;Download details: Migrating SBS 2000 to Windows SBS 2008&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Note that Exchange is not migrated in itself, so PST backups of all mail folders is required using the process documented in the KB article &lt;a href="http://support.microsoft.com/kb/196492" title="http://support.microsoft.com/kb/196492"&gt;http://support.microsoft.com/kb/196492&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;David&lt;/p&gt;
&lt;div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:87f5ac59-5b02-4073-bca6-6805ab40bc4f" style="padding-bottom:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;float:none;padding-top:0px;"&gt;Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/SBS+2008"&gt;SBS 2008&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/SBS+2000"&gt;SBS 2000&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Migration"&gt;Migration&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Microsoft"&gt;Microsoft&lt;/a&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://uksbsguy.com/aggbug.aspx?PostID=8421" width="1" height="1"&gt;</content><author><name>doverton</name><uri>http://uksbsguy.com/members/doverton/default.aspx</uri></author><category term="Community" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Community/default.aspx" /><category term="SBSC" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/SBSC/default.aspx" /><category term="Microsoft" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Microsoft/default.aspx" /><category term="Documentation" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Documentation/default.aspx" /><category term="Tips" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Tips/default.aspx" /><category term="SBS 2008" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/SBS+2008/default.aspx" /></entry><entry><title>UK event to learn more about Windows 7 (London, Birmingham, Leeds and Edinburgh)</title><link rel="alternate" type="text/html" href="/blogs/doverton/archive/2009/04/27/uk-event-to-learn-more-about-windows-7-london-birmingham-leeds-and-edinburgh.aspx" /><id>/blogs/doverton/archive/2009/04/27/uk-event-to-learn-more-about-windows-7-london-birmingham-leeds-and-edinburgh.aspx</id><published>2009-04-27T06:17:00Z</published><updated>2009-04-27T06:17:00Z</updated><content type="html">&lt;p&gt;With the launch of Windows 7 coming this year I thought you might like to know what Microsoft is saying about it.&amp;nbsp; We have four events around the UK to help partners understand more.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;b&gt;Event Overview&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;With the launch of Windows 7, within three years of general availability of Windows Vista, we are delighted to invite you to an event so you can experience for yourself the buzz and excitement of Windows 7.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;The Windows 7 team will show you how you can protect and grow your revenues between now and the launch date and will take you through the journey of converting your customers to Windows 7, whether they currently are on Windows Vista or Windows XP &amp;ndash; allowing you the opportunity to extend the sale and ensuring you are selling today. &lt;/p&gt;
&lt;p&gt;For your chance to see a demonstration of what the press are raving about and experience what businesses will love about Windows 7 first hand, then join us at this additional session.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="text-decoration:underline;"&gt;&lt;br /&gt;Agenda &lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;5.00pm - Registration&lt;/p&gt;
&lt;p&gt;5.30pm - The journey to Windows 7 / Demonstration of Windows 7&lt;/p&gt;
&lt;p&gt;7.00pm - Q&amp;amp;A session&lt;/p&gt;
&lt;p&gt;7.30pm - Event close&lt;/p&gt;
&lt;p&gt;&lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=15-47-C3-29-AD-EF-AA-FC-21-D0-7B-9F-A2-0E-C5-61&amp;amp;Culture=en-GB"&gt;14&lt;sup&gt;th&lt;/sup&gt; May &amp;ndash; Edinburgh&lt;/a&gt; Invitation Code: &lt;b&gt;DFBD37&lt;/b&gt; Phone Number: 0870 166 6680 ref: 4116&lt;/p&gt;
&lt;p&gt;&lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=15-47-C3-29-AD-EF-AA-FC-CB-AD-DB-9D-B6-F3-DE-27&amp;amp;Culture=en-GB"&gt;19&lt;sup&gt;th&lt;/sup&gt; May - Birmingham&lt;/a&gt; Invitation Code: &lt;b&gt;3095B3&lt;/b&gt; Phone number: 0870 166 6670 ref 4117&lt;/p&gt;
&lt;p&gt;&lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=15-47-C3-29-AD-EF-AA-FC-CA-8D-04-23-B2-B4-E0-8E&amp;amp;Culture=en-GB"&gt;4&lt;sup&gt;th&lt;/sup&gt; June &amp;ndash; London&lt;/a&gt; Invitation Code: &lt;b&gt;875122&lt;/b&gt; Phone Number: 0870 166 6680 ref: 4118&lt;/p&gt;
&lt;p&gt;&lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=15-47-C3-29-AD-EF-AA-FC-81-A7-BF-9D-B4-55-50-8D&amp;amp;Culture=en-GB"&gt;16&lt;sup&gt;th&lt;/sup&gt; June - Leeds&lt;/a&gt; Invitation Code: &lt;b&gt;C3EE9D&lt;/b&gt; Phone number: 0870 166 6670 ref 4119&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Enjoy&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;David&lt;/p&gt;
&lt;div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:573bec84-e84c-4e87-8df0-3638fcda464a" style="padding-bottom:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;float:none;padding-top:0px;"&gt;Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/Windows"&gt;Windows&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Windows+Client"&gt;Windows Client&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Windows+7"&gt;Windows 7&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Microsoft"&gt;Microsoft&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Event"&gt;Event&lt;/a&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://uksbsguy.com/aggbug.aspx?PostID=8398" width="1" height="1"&gt;</content><author><name>doverton</name><uri>http://uksbsguy.com/members/doverton/default.aspx</uri></author><category term="Event" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Event/default.aspx" /><category term="Microsoft" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Microsoft/default.aspx" /><category term="Windows Client" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Windows+Client/default.aspx" /><category term="Partner" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Partner/default.aspx" /><category term="Windows 7" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Windows+7/default.aspx" /></entry><entry><title>How to encrypt backups and optionally the system disks on Windows Server 2008 and SBS 2008 and Windows Vista too</title><link rel="alternate" type="text/html" href="/blogs/doverton/archive/2009/04/26/how-to-encrypt-backups-and-optionally-the-system-disks-on-windows-server-2008-and-sbs-2008.aspx" /><id>/blogs/doverton/archive/2009/04/26/how-to-encrypt-backups-and-optionally-the-system-disks-on-windows-server-2008-and-sbs-2008.aspx</id><published>2009-04-26T10:34:00Z</published><updated>2009-04-26T10:34:00Z</updated><content type="html">&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;someone asked in the forums how if the backups on SBS 2008 and Windows Server 2008 were encrypted and the answer is no, even if the drives being backed up are BitLocker protected (&lt;a target="_blank" href="http://blogs.technet.com/filecab/archive/2008/04/29/complete-pc-backup-vista-and-vista-sp1-windows-server-backup-longhorn-server-and-bitlocker-faq.aspx"&gt;more details here&lt;/a&gt;).&amp;nbsp; However you can get encrypted backups with a bit of effort.&amp;nbsp; To do this you will need to at least BitLocker enable your removable drives and optionally your system disk.&amp;nbsp; I used the information at &lt;a href="http://blogs.msdn.com/askdavid/archive/2007/06/08/enabling-bitlocker-on-removable-drives-usb-flash-drives-usb-hard-drives.aspx" title="http://blogs.msdn.com/askdavid/archive/2007/06/08/enabling-bitlocker-on-removable-drives-usb-flash-drives-usb-hard-drives.aspx"&gt;http://blogs.msdn.com/askdavid/archive/2007/06/08/enabling-bitlocker-on-removable-drives-usb-flash-drives-usb-hard-drives.aspx&lt;/a&gt; as a guide to putting together what I needed to do, so many thanks David Chandra for this.&amp;nbsp; This same process can also be used on Windows Vista&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;There are a couple of snags however and you need to work out which scenario you wish to have (if you have a TPM chip then option 2 &amp;amp; 3 can be replaced with entering a key into the TPM prompt:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;encrypt just the backup disks you will need to run a script each time a volume is added back to the system&lt;/li&gt;
&lt;li&gt;encrypt the system disk and the backup disks and you will need a USB key or key information to be entered every time you reboot the server&lt;/li&gt;
&lt;li&gt;encrypt the system disk and the backup disks, but store the system unlock information unencrypted on the server so you do not have to enter decryption information every time.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Given the choices above the steps are as follows (they build from option 1 through to option 3):&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Option 1 &lt;ol&gt;
&lt;li&gt;Add BitLocker to the server&lt;/li&gt;
&lt;li&gt;Encrypt the Backup Hard Disks&lt;/li&gt;
&lt;li&gt;Add an unlock script&lt;/li&gt;
&lt;/ol&gt;&lt;/li&gt;
&lt;li&gt;Option 2 &lt;ol&gt;
&lt;li&gt;Prepare the system disk for BitLocker encryption&lt;/li&gt;
&lt;li&gt;Encrypt the system&lt;/li&gt;
&lt;/ol&gt;&lt;/li&gt;
&lt;li&gt;Option 3 &lt;ol&gt;
&lt;li&gt;Store the unlock key on the boot partition for automatic use&lt;/li&gt;
&lt;/ol&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;&amp;nbsp;Option 1 (encrypting the backup disks)&lt;/h2&gt;
&lt;p&gt;You will need to repeat the steps below (excluding adding Bitlocker to the system) for each disk you want to encrypt.&amp;nbsp; You can do this to an existing disk or a new disk.&lt;/p&gt;
&lt;table width="679" cellpadding="1" cellspacing="1" border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td width="300" valign="top"&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0000FindAddRoles_5F00_0C907C67.png"&gt;&lt;img height="140" width="304" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0000FindAddRoles_5F00_thumb_5F00_64EA003C.png" alt="0000 - Find Add Roles" border="0" title="0000 - Find Add Roles" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt; &lt;/td&gt;
&lt;td width="374" valign="top"&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="text-decoration:underline;"&gt;Add Bitlocker role&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;To start this task we need to add the BitLocker role to SBS 2008.&amp;nbsp; While BitLocker is built into Windows Server 2008 it is not installed.&amp;nbsp; To install it start &lt;strong&gt;Server Manager &lt;/strong&gt;from the &lt;strong&gt;Start Menu&lt;/strong&gt; and then scroll the right hand window down until you can find&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="300" valign="top"&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0001EnableFeatureinSBS2008_5F00_40C4A5AD.png"&gt;&lt;img height="185" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0001EnableFeatureinSBS2008_5F00_thumb_5F00_20A998F0.png" alt="0001 - Enable Feature in SBS 2008" border="0" title="0001 - Enable Feature in SBS 2008" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt; &lt;/td&gt;
&lt;td width="374" valign="top"&gt;In the list of roles that can be added, select the BitLocker role and continue through the wizard until BitLocker is available&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="300" valign="top"&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0002givethebackupdrivealetter_5F00_52A1397A.png"&gt;&lt;img height="215" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0002givethebackupdrivealetter_5F00_thumb_5F00_0498DA05.png" alt="0002 - give the backup drive a letter" border="0" title="0002 - give the backup drive a letter" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt; &lt;/td&gt;
&lt;td width="374" valign="top"&gt;To be able to easily BitLocker the drive we need to add a drive letter.&amp;nbsp; Run the command &lt;strong&gt;diskmgmt.msc&lt;/strong&gt; to start the Disk Management tool.&amp;nbsp; Find the Backup disk and right click on it and select &lt;strong&gt;Change Drive Letter and Paths&lt;/strong&gt;.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="300" valign="top"&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0003assignadriveletterstep1_5F00_32862CBD.png"&gt;&lt;img height="159" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0003assignadriveletterstep1_5F00_thumb_5F00_796F4FBA.png" alt="0003 - assign a drive letter - step 1" border="0" title="0003 - assign a drive letter - step 1" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt; &lt;/td&gt;
&lt;td width="374" valign="top"&gt;You will notice that the disk, which present and used does not have a drive letter, so we need to change this.&amp;nbsp; Press the &lt;strong&gt;Add&lt;/strong&gt; button to add a drive letter that we can easily refer to in the command lines.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="300" valign="top"&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0003assignadriveletterstep2_5F00_647DCD47.png"&gt;&lt;img height="118" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0003assignadriveletterstep2_5F00_thumb_5F00_126B2000.png" alt="0003 - assign a drive letter - step 2" border="0" title="0003 - assign a drive letter - step 2" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt; &lt;/td&gt;
&lt;td width="374" valign="top"&gt;Pick the next available drive letter and press OK.&amp;nbsp; In my example the drive letter is &amp;quot;&lt;strong&gt;E:&lt;/strong&gt;&amp;quot;.&amp;nbsp; In all the command lines below replace &lt;strong&gt;E:&lt;/strong&gt; with the right drive letter for your system.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="300" valign="top"&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0004getstatusandthenbitlockerbackupdrive_5F00_2B66F045.png"&gt;&lt;img height="88" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0004getstatusandthenbitlockerbackupdrive_5F00_thumb_5F00_595442FD.png" alt="0004 - get status and then bitlocker backup drive" border="0" title="0004 - get status and then bitlocker backup drive" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt; &lt;/td&gt;
&lt;td width="374" valign="top"&gt;Open and administrative Command Prompt from the start menu and check the title bar says &lt;strong&gt;Administrator Command Prompt&lt;/strong&gt;.&amp;nbsp; Check that the disk is ready for encrypting with the command &lt;strong&gt;script manage-bde.wsf -status&lt;/strong&gt;. Note this has to be run from &lt;strong&gt;\Windows\System32&lt;/strong&gt;.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="300" valign="top"&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0005encryptednotekeyinfo_5F00_72501342.png"&gt;&lt;img height="163" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0005encryptednotekeyinfo_5F00_thumb_5F00_0B4BE388.png" alt="0005 - encrypted - note key info" border="0" title="0005 - encrypted - note key info" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt; &lt;/td&gt;
&lt;td width="374" valign="top"&gt;Time to encrypt the disk and save the recovery keys.&amp;nbsp; I&amp;#39;m going to save them to C:, but they can be saved to any disk in the system except the one being encrypted. &lt;br /&gt;Type &lt;strong&gt;script manage-bde.wsf -on E: -recoverykey C: -recoverypassword&lt;/strong&gt;. &lt;br /&gt;You will see several pieces of information including the disk ID, the file name for the &lt;strong&gt;&lt;em&gt;recovery key file&lt;/em&gt;&lt;/strong&gt; and the numeric password should you not have these to hand.&amp;nbsp; You will need to make a note of this information, but do NOT store with the drive. &lt;br /&gt;&lt;br /&gt;To create an unlock command, enter the command below replacing &lt;strong&gt;&lt;em&gt;&amp;lt;recovery key file&amp;gt; &lt;/em&gt;&lt;/strong&gt;with the filename from your output.&amp;nbsp; The filename for the command in my example is &lt;strong&gt;c:\unlock_backup_disk3.cmd&lt;/strong&gt; and you should change it to be appropriate to your system. &lt;br /&gt;&lt;strong&gt;echo cscript c:\windows\system32\manage-bde.wsf -unlock E: -recoverykey &lt;em&gt;&amp;lt;recovery key file&amp;gt;&lt;/em&gt;&lt;/strong&gt; &lt;strong&gt;&amp;gt; c:\unlock_backup_disk3.cmd&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="300" valign="top"&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0006encryptedstatusat21and100percent_5F00_39393640.png"&gt;&lt;img height="208" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0006encryptedstatusat21and100percent_5F00_thumb_5F00_52350685.png" alt="0006 - encrypted - status at 21 and 100 percent" border="0" title="0006 - encrypted - status at 21 and 100 percent" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt; &lt;/td&gt;
&lt;td width="374" valign="top"&gt;The disk will now begin encrypting and depending on how much data is stored on it, may take some time.&amp;nbsp; You can check the status with the command &lt;strong&gt;cscript c:\windows\system32\manage-bde.wsf -status&lt;/strong&gt; as shows in the screen shot until the disk is 100% encrypted.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="300" valign="top"&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0006removeEdrive_5F00_0022593E.png"&gt;&lt;img height="160" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0006removeEdrive_5F00_thumb_5F00_6B30D6CA.png" alt="0006 - remove E drive" border="0" title="0006 - remove E drive" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt; &lt;/td&gt;
&lt;td width="374" valign="top"&gt;If you intend on encrypting the system disk then you can remove the drive letter.&amp;nbsp; The backup will still work if the drive has a drive letter, but it will now show up in the SBS Console and Computer windows, but should not be modified in any way.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;Option 2 &amp;amp; 3 (encrypting the system disk and enabling automatic unlocking of the USB drives)&lt;/h2&gt;
&lt;table width="676" cellpadding="1" cellspacing="1" border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td width="302" valign="top"&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0007downloadthepreptool_5F00_3219F9C8.png"&gt;&lt;img height="244" width="237" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0007downloadthepreptool_5F00_thumb_5F00_11FEED0B.png" alt="0007 - download the prep tool" border="0" title="0007 - download the prep tool" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt; &lt;/td&gt;
&lt;td width="369" valign="top"&gt;Download preparation tool from Microsoft at &lt;a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=320b9aa9-47e8-44f9-b8d0-4d7d6a75add0" title="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=320b9aa9-47e8-44f9-b8d0-4d7d6a75add0"&gt;http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=320b9aa9-47e8-44f9-b8d0-4d7d6a75add0&lt;/a&gt; and then install the tool.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="305" valign="top"&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0007encryptmaindrive_5F00_2AFABD50.png"&gt;&lt;img height="244" width="220" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0007encryptmaindrive_5F00_thumb_5F00_58E81008.png" alt="0007 - encrypt main drive" border="0" title="0007 - encrypt main drive" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt; &lt;/td&gt;
&lt;td width="367" valign="top"&gt;
&lt;p&gt;Start the tool from the &lt;strong&gt;Start Menu&lt;/strong&gt; - it is under &lt;strong&gt;Accessories&lt;/strong&gt;, &lt;strong&gt;System Tools&lt;/strong&gt;, &lt;strong&gt;BitLocker&lt;/strong&gt; and is called &lt;strong&gt;BitLocker Drive Preparation Tool&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;As is always the case when making major changes to a system ensure you have a backup of the system.&lt;/p&gt;
&lt;p&gt;Press &lt;strong&gt;Continue&lt;/strong&gt; to start the tool.&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="307" valign="top"&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0009prepcompleted_5F00_43F68D95.png"&gt;&lt;img height="244" width="220" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0009prepcompleted_5F00_thumb_5F00_1FD13306.png" alt="0009 - prep completed" border="0" title="0009 - prep completed" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="365" valign="top"&gt;The tool will shrink your system drive and create a small S: drive which will contain the boot files.&amp;nbsp; Once it is complete, press &lt;strong&gt;Finish&lt;/strong&gt;.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="309" valign="top"&gt;&amp;nbsp;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0010restart_5F00_0ADFB093.png"&gt;&lt;img height="106" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0010restart_5F00_thumb_5F00_38CD034B.png" alt="0010 - restart" border="0" title="0010 - restart" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="364" valign="top"&gt;You will need to restart your computer to continue the preparation.&amp;nbsp; Press &lt;strong&gt;Restart Now&lt;/strong&gt; to do so.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="310" valign="top"&gt;&amp;nbsp;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0012enabled_5F00_23DB80D8.png"&gt;&lt;img height="185" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0012enabled_5F00_thumb_5F00_51C8D390.png" alt="0012 - enabled" border="0" title="0012 - enabled" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="363" valign="top"&gt;Once you have rebooted and logged back in the tool will continue.&amp;nbsp; Once it is finished, press &lt;strong&gt;Close&lt;/strong&gt; to exit the tool. &lt;br /&gt;Your drives are now prepared to be encrypted.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="311" valign="top"&gt;&amp;nbsp;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0013startmainOSencryption_5F00_7FB62648.png"&gt;&lt;img height="216" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0013startmainOSencryption_5F00_thumb_5F00_18B1F68E.png" alt="0013 - start main OS encryption" border="0" title="0013 - start main OS encryption" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="362" valign="top"&gt;To encrypt the system disk enter the command below.&amp;nbsp; I put a recovery key on the backup disk (which is encrypted) and also onto another disk to enable system start up.&amp;nbsp; &lt;br /&gt;&lt;br /&gt;For the system to start up it will need an unencrypted file system with the startup key present.&amp;nbsp; You can either chose to put this onto the S: drive which is less secure as removing the boot disk will provide someone with all the encryption keys or if you wish for your system to be more secure you can put this onto a removable USB drive.&amp;nbsp; &lt;br /&gt;If your only desire was to encrypt the backups and have them automatically available when plugged into the server then this is fine.&amp;nbsp; If you want greater overall security then you should use the removable key method.&amp;nbsp; Note that to reboot the server this will be required, so automatic updates could cause a problem.&amp;nbsp; &lt;br /&gt;Leaving this removable media in the system means that any would-be thief would still have the decryption means. &lt;br /&gt;&lt;br /&gt;The command you need is: &lt;br /&gt;&lt;strong&gt;cscript manage-bde.wsf -on C: -recoverykey E: -recoverypassword -startupkey S: &lt;br /&gt;&lt;br /&gt;E:&lt;/strong&gt; is the removable media I&amp;#39;m backing the key up to and &lt;strong&gt;S:&lt;/strong&gt; is the system disk.&amp;nbsp; Change S: to the startup usb key you will user to reboot the system with greater security. &lt;br /&gt;&lt;br /&gt;Once again, mate a note of the key security information highlighted in the screen shot.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="312" valign="top"&gt;&amp;nbsp;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0014enableautounlock_5F00_03C0741B.png"&gt;&lt;img height="244" width="240" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0014enableautounlock_5F00_thumb_5F00_31ADC6D3.png" alt="0014 - enable auto unlock" border="0" title="0014 - enable auto unlock" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="361" valign="top"&gt;You can once again see the progress being made by the encryption by using the &lt;strong&gt;cscript manage-bde.wsf -status&lt;/strong&gt; command.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="313" valign="top"&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0015disableandreenablebackup_5F00_5F9B198B.png"&gt;&lt;img height="171" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/0015disableandreenablebackup_5F00_thumb_5F00_63A5675D.png" alt="0015 - disable and re-enable backup" border="0" title="0015 - disable and re-enable backup" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt; &lt;/td&gt;
&lt;td width="360" valign="top"&gt;Finally, your SBS backup will no longer function correctly as the S: drive is not included in the backup set, but is a crucial part of the system backup.&amp;nbsp; You will need to &lt;strong&gt;Disable Backup&lt;/strong&gt; and re-create it before the backup will work again. &lt;br /&gt;&lt;br /&gt;When you are re-creating the backup, when selecting the target device it will claim it is going to format the backup target, but for me it did not and previous backups were still available.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;This whole process took a while as I had in total about 100GB to encrypt, between the system disk and backups, but I now have secure backups.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;David&lt;/p&gt;
&lt;div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:437c76b2-b00e-4f5f-a2b6-19ff33757730" style="padding-bottom:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;float:none;padding-top:0px;"&gt;Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/SBS+2008"&gt;SBS 2008&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Windows+Server+2008"&gt;Windows Server 2008&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Security"&gt;Security&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Bitlocker"&gt;Bitlocker&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Microsoft"&gt;Microsoft&lt;/a&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://uksbsguy.com/aggbug.aspx?PostID=8392" width="1" height="1"&gt;</content><author><name>doverton</name><uri>http://uksbsguy.com/members/doverton/default.aspx</uri></author><category term="Security" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Security/default.aspx" /><category term="Microsoft" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Microsoft/default.aspx" /><category term="Windows Client" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Windows+Client/default.aspx" /><category term="Documentation" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Documentation/default.aspx" /><category term="Small business" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Small+business/default.aspx" /><category term="Windows Server 2008" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Windows+Server+2008/default.aspx" /><category term="SBS 2008" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/SBS+2008/default.aspx" /><category term="Windows Vista and XP" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Windows+Vista+and+XP/default.aspx" /><category term="Windows Vista" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Windows+Vista/default.aspx" /></entry><entry><title>Business Productivity Online Suite training for partners in Manchester and Birmingham</title><link rel="alternate" type="text/html" href="/blogs/doverton/archive/2009/04/24/business-productivity-online-suite-training-for-partners-in-manchester-and-birmingham.aspx" /><id>/blogs/doverton/archive/2009/04/24/business-productivity-online-suite-training-for-partners-in-manchester-and-birmingham.aspx</id><published>2009-04-24T07:58:00Z</published><updated>2009-04-24T07:58:00Z</updated><content type="html">&lt;table cellpadding="0" cellspacing="0" border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td width="681" valign="top"&gt;
&lt;p&gt;&lt;img height="106" width="688" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image001_5F00_7DB7BA12.jpg" alt="clip_image001" border="0" title="clip_image001" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="417" valign="top"&gt;
&lt;p&gt;&lt;b&gt;Business Productivity Online Suite Launch&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Join us in Birmingham and Manchester&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;The UK software market is evolving, and customers are looking to embrace the change. Forecasted growth for subscription software is expected to achieve an annual growth rate of +30% during the next three years - considerably outpacing traditional market growth and providing a tremendous resale and service opportunity for Microsoft partners. &lt;/p&gt;
&lt;p&gt;In a tough economy, subscription services are more digestible to cash strapped customers. Microsoft&amp;#39;s Business Productivity Online Suite (BPOS), provides a new IT solution for their needs, delivering enterprise-class software as a subscription service, hosted by Microsoft and sold by you. &lt;/p&gt;
&lt;p&gt;Costing &amp;pound;10.04 for the entire suite, per user per month, BPOS includes: &lt;/p&gt;
&lt;p&gt;&amp;gt; Microsoft Exchange Online &lt;/p&gt;
&lt;p&gt;&amp;gt; Microsoft SharePoint Online &lt;/p&gt;
&lt;p&gt;&amp;gt; Microsoft Office Live Meeting &lt;/p&gt;
&lt;p&gt;&amp;gt; Microsoft Office Communications Online &lt;/p&gt;
&lt;p&gt;&amp;gt; Microsoft Exchange Hosted Services&lt;/p&gt;
&lt;p&gt;For Microsoft Partners BPOS provides an annuity revenue opportunity with incremental implementation, integration, customisation, and managed services opportunities.&lt;/p&gt;
&lt;p&gt;Join us at this event to gain further insight, and to understand the sales and implementation opportunities for your business. &lt;/p&gt;
&lt;p&gt;Please confirm your attendance by registering for;&lt;/p&gt;
&lt;p&gt;20/05/09: Manchester &amp;ndash; &lt;a href="https://training.partner.microsoft.com/plc/details.aspx?publisher=12&amp;amp;delivery=266436&amp;amp;site=UK&amp;amp;lang=en-UK"&gt;Click here&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Daresbury Science and Innovation Campus&lt;/p&gt;
&lt;p&gt;Keckwick Lane&lt;/p&gt;
&lt;p&gt;Daresbury, WA4 4FS&lt;/p&gt;
&lt;p&gt;21/05/09: Birmingham &amp;ndash; &lt;a href="https://training.partner.microsoft.com/plc/details.aspx?publisher=12&amp;amp;delivery=266438&amp;amp;site=UK&amp;amp;lang=en-UK"&gt;Click here&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Coventry TechnoCentre, CUE Ltd&lt;/p&gt;
&lt;p&gt;Coventry University Technology Park &lt;/p&gt;
&lt;p&gt;Puma Way &lt;/p&gt;
&lt;p&gt;Coventry, CV1 2TT&lt;/p&gt;
&lt;p&gt;To further understand this opportunity watch the Quick Start training video &lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11320516&amp;amp;s1=53651115-de3c-9afc-0cd7-3c2d77ded7e5"&gt;here&lt;/a&gt;. &lt;/p&gt;
&lt;p&gt;Yours sincerely, &lt;/p&gt;
&lt;p&gt;Simon Gautrey&lt;/p&gt;
&lt;p&gt;Software-plus-Services Lead&lt;/p&gt;
&lt;p&gt;Small and Mid- Market Solutions &amp;amp; Partners, UK&lt;/p&gt;
&lt;/td&gt;
&lt;td width="283" valign="top"&gt;
&lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Date/Venue: &lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;20/05/09: Manchester &lt;/b&gt;&amp;ndash; &lt;a href="https://training.partner.microsoft.com/plc/details.aspx?publisher=12&amp;amp;delivery=266436&amp;amp;site=UK&amp;amp;lang=en-UK"&gt;Click here&lt;/a&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;Daresbury Science and Innovation Campus&lt;/p&gt;
&lt;p&gt;Keckwick Lane&lt;/p&gt;
&lt;p&gt;Daresbury, WA4 4FS&lt;/p&gt;
&lt;p&gt;&lt;b&gt;21/05/09: Birmingham&lt;/b&gt; &amp;ndash; &lt;a href="https://training.partner.microsoft.com/plc/details.aspx?publisher=12&amp;amp;delivery=266438&amp;amp;site=UK&amp;amp;lang=en-UK"&gt;Click here&lt;/a&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;Coventry TechnoCentre, CUE Ltd&lt;/p&gt;
&lt;p&gt;Coventry University Technology Park &lt;/p&gt;
&lt;p&gt;Puma Way &lt;/p&gt;
&lt;p&gt;Coventry, CV1 2TT&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Agenda: &lt;/b&gt;&lt;/p&gt;
&lt;p&gt;09.30 &amp;ndash; Registration&lt;/p&gt;
&lt;p&gt;Overview on Microsoft Online Services &lt;/p&gt;
&lt;p&gt;Technical Overview:&lt;/p&gt;
&lt;p&gt;- Deployment &amp;amp; Administration&lt;/p&gt;
&lt;p&gt;- Co-existence with on-premise&lt;/p&gt;
&lt;p&gt;- Migration from on-premise&lt;/p&gt;
&lt;p&gt;- Security&lt;/p&gt;
&lt;p&gt;- Reliability&lt;/p&gt;
&lt;p&gt;Outline of Licensing Models (&amp;amp; scenarios)&lt;/p&gt;
&lt;p&gt;Next steps for Partners&lt;/p&gt;
&lt;p&gt;12.30 &amp;ndash; Close&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://uksbsguy.com/aggbug.aspx?PostID=8387" width="1" height="1"&gt;</content><author><name>doverton</name><uri>http://uksbsguy.com/members/doverton/default.aspx</uri></author><category term="Office System" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Office+System/default.aspx" /><category term="Exchange" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Exchange/default.aspx" /><category term="Hosted" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Hosted/default.aspx" /><category term="Event" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Event/default.aspx" /><category term="Microsoft" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Microsoft/default.aspx" /><category term="Software plus Service" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Software+plus+Service/default.aspx" /><category term="SharePoint" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/SharePoint/default.aspx" /></entry><entry><title>SBS 2008, Installation, Migration and Configuration – Chapter 13 - Introduction to SBS 2008 management</title><link rel="alternate" type="text/html" href="/blogs/doverton/archive/2009/04/19/sbs-2008-installation-migration-and-configuration-chapter-13-introduction-to-sbs-2008-management.aspx" /><id>/blogs/doverton/archive/2009/04/19/sbs-2008-installation-migration-and-configuration-chapter-13-introduction-to-sbs-2008-management.aspx</id><published>2009-04-19T08:05:00Z</published><updated>2009-04-19T08:05:00Z</updated><content type="html">&lt;h2&gt;Introduction to SBS 2008 management&lt;/h2&gt;
&lt;p&gt;All computers, like cars, need regular maintenance, but unlike cars where this can be a once a year exercise and perhaps even once every two years, this needs to be done more frequently with SBS 2008.&lt;/p&gt;
&lt;p&gt;In this chapter we will cover the daily checks and what to consider if they are not all green on the reports. &lt;/p&gt;
&lt;p&gt;I start by covering the basic tools available before I cover off the steps to be worked on.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Windows SBS Console&lt;/li&gt;
&lt;li&gt;Windows SBS Console (Advanced Mode)&lt;/li&gt;
&lt;li&gt;Windows SBS Native Tools Management&lt;/li&gt;
&lt;li&gt;Exchange Management Shell&lt;/li&gt;
&lt;li&gt;Command Prompt run as Administrator &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I also work through the following checks:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Daily maintenance check via reports&lt;/li&gt;
&lt;li&gt;Maintenance areas 
&lt;ul&gt;
&lt;li&gt;Security &lt;/li&gt;
&lt;li&gt;Backup and Recovery&lt;/li&gt;
&lt;li&gt;Forefront Updates&lt;/li&gt;
&lt;li&gt;Storage&lt;/li&gt;
&lt;li&gt;Event Log Messages&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Troubleshooting common problems 
&lt;ul&gt;
&lt;li&gt;External Network&lt;/li&gt;
&lt;li&gt;Internal Network&lt;/li&gt;
&lt;li&gt;Spam&lt;/li&gt;
&lt;li&gt;Poor Performance&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The Windows SBS Console Advanced mode &lt;/p&gt;
&lt;p&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image002_5F00_4DCF9B7E.jpg"&gt;&lt;img height="155" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image002_5F00_thumb_5F00_026FF7BA.jpg" alt="clip_image002" border="0" title="clip_image002" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Native Tools Management&lt;/p&gt;
&lt;p&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image004_5F00_1B6BC7FF.jpg"&gt;&lt;img height="144" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image004_5F00_thumb_5F00_34679844.jpg" alt="clip_image004" border="0" title="clip_image004" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Exchange Management Shell&lt;/p&gt;
&lt;p&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image006_5F00_4D636889.jpg"&gt;&lt;img height="123" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image006_5F00_thumb_5F00_144C8B87.jpg" alt="clip_image006" border="0" title="clip_image006" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;How to do a full, bare metal backup&lt;/p&gt;
&lt;p&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image008_5F00_4239DE3F.jpg"&gt;&lt;img height="193" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image008_5F00_thumb_5F00_74317EC9.jpg" alt="clip_image008" border="0" title="clip_image008" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;To order the book, go to &lt;/strong&gt;&lt;a href="http://davidoverton.com/r.ashx?1M"&gt;&lt;span style="color:#669966;"&gt;&lt;strong&gt;http://davidoverton.com/r.ashx?1M&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&lt;strong&gt; . To find out more about my SBS 2008 BOOK - SBS 2008, Installation, Migration and Configuration&lt;/strong&gt;&lt;a target="_blank" href="http://davidoverton.com/blogs/doverton/pages/sbs-2008-book.aspx"&gt;&lt;span style="color:#003399;"&gt;&lt;strong&gt; click here&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&amp;nbsp; &lt;/p&gt;
&lt;p&gt;thanks David&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:7d5d34d2-b199-486f-8c31-62ed0b0d7da3" style="padding-bottom:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;float:none;padding-top:0px;"&gt;Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/SBS+2008"&gt;SBS 2008&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Book"&gt;Book&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Microsoft"&gt;Microsoft&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Migration"&gt;Migration&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Installation"&gt;Installation&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Configuration"&gt;Configuration&lt;/a&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://uksbsguy.com/aggbug.aspx?PostID=8288" width="1" height="1"&gt;</content><author><name>doverton</name><uri>http://uksbsguy.com/members/doverton/default.aspx</uri></author><category term="Microsoft" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Microsoft/default.aspx" /><category term="SBS 2008" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/SBS+2008/default.aspx" /><category term="Book" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Book/default.aspx" /></entry><entry><title>SBS 2008, Installation, Migration and Configuration – Chapter 12 - Working with SBS Services as user</title><link rel="alternate" type="text/html" href="/blogs/doverton/archive/2009/04/18/sbs-2008-installation-migration-and-configuration-chapter-12-working-with-sbs-services-as-user.aspx" /><id>/blogs/doverton/archive/2009/04/18/sbs-2008-installation-migration-and-configuration-chapter-12-working-with-sbs-services-as-user.aspx</id><published>2009-04-18T08:03:00Z</published><updated>2009-04-18T08:03:00Z</updated><content type="html">&lt;h2&gt;Working with SBS Services as user &lt;/h2&gt;
&lt;p&gt;To get the business benefit from SBS 2008 you will need to embed the use of the services and facilities use into the users psyche to enable them to benefit from it and use it.&lt;/p&gt;
&lt;p&gt;In this chapter we will cover the following areas:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;E-mail, Calendar and Contacts&lt;/li&gt;
&lt;li&gt;File Management&lt;/li&gt;
&lt;li&gt;Remote access to the server, network and services&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Many people believe the above are simple and well known, but taking Outlook as an example, learning how to do the tasks below in Outlook on a PC and via Outlook Web Access is often a real productivity tool.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Viewing yours and other people&amp;rsquo;s calendar &lt;/li&gt;
&lt;li&gt;Scheduling a meeting for multiple people and ensure their diaries are all free for the time period&lt;/li&gt;
&lt;li&gt;Telling people when you are going to be away or unavailable&lt;/li&gt;
&lt;li&gt;Finding e-mails that have been filed&lt;/li&gt;
&lt;li&gt;Recovering e-mails that have been deleted and removed from the deleted items folder&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image002_5F00_6F80284A.jpg"&gt;&lt;img height="198" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image002_5F00_thumb_5F00_443B9143.jpg" alt="clip_image002" border="0" title="clip_image002" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image004_5F00_0F2F0213.jpg"&gt;&lt;img height="214" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image004_5F00_thumb_5F00_080FC59B.jpg" alt="clip_image004" border="0" title="clip_image004" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;To order the book, go to &lt;/strong&gt;&lt;a href="http://davidoverton.com/r.ashx?1M"&gt;&lt;span style="color:#669966;"&gt;&lt;strong&gt;http://davidoverton.com/r.ashx?1M&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&lt;strong&gt; . To find out more about my SBS 2008 BOOK - SBS 2008, Installation, Migration and Configuration&lt;/strong&gt;&lt;a target="_blank" href="http://davidoverton.com/blogs/doverton/pages/sbs-2008-book.aspx"&gt;&lt;span style="color:#003399;"&gt;&lt;strong&gt; click here&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&amp;nbsp; &lt;/p&gt;
&lt;p&gt;thanks David&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:7d5d34d2-b199-486f-8c31-62ed0b0d7da3" style="padding-bottom:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;float:none;padding-top:0px;"&gt;Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/SBS+2008"&gt;SBS 2008&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Book"&gt;Book&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Microsoft"&gt;Microsoft&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Migration"&gt;Migration&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Installation"&gt;Installation&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Configuration"&gt;Configuration&lt;/a&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://uksbsguy.com/aggbug.aspx?PostID=8287" width="1" height="1"&gt;</content><author><name>doverton</name><uri>http://uksbsguy.com/members/doverton/default.aspx</uri></author><category term="Microsoft" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Microsoft/default.aspx" /><category term="SBS 2008" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/SBS+2008/default.aspx" /><category term="Book" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Book/default.aspx" /></entry><entry><title>SBS 2008, Installation, Migration and Configuration – Chapter 11 - Managing users and their computers</title><link rel="alternate" type="text/html" href="/blogs/doverton/archive/2009/04/17/sbs-2008-installation-migration-and-configuration-chapter-11-managing-users-and-their-computers.aspx" /><id>/blogs/doverton/archive/2009/04/17/sbs-2008-installation-migration-and-configuration-chapter-11-managing-users-and-their-computers.aspx</id><published>2009-04-17T08:02:00Z</published><updated>2009-04-17T08:02:00Z</updated><content type="html">&lt;h2&gt;Managing users and their computers&lt;/h2&gt;
&lt;p&gt;In this chapter we will cover the tasks required to add and manage users as well as the tasks to add and manage their desktop and notebook computers. This is done using the standard SBS 2008 tools, but discussing the customising of settings to give you a solution that meets both the administrator&amp;rsquo;s and the user&amp;rsquo;s needs.&lt;/p&gt;
&lt;p&gt;This includes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Managing roles&lt;/li&gt;
&lt;li&gt;Adding Users&lt;/li&gt;
&lt;li&gt;Managing users storage&lt;/li&gt;
&lt;li&gt;Adding computers to the network&lt;/li&gt;
&lt;li&gt;Ensuring computers are up to date with updates&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;To order the book, go to &lt;/strong&gt;&lt;a href="http://davidoverton.com/r.ashx?1M"&gt;&lt;span style="color:#669966;"&gt;&lt;strong&gt;http://davidoverton.com/r.ashx?1M&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&lt;strong&gt; . To find out more about my SBS 2008 BOOK - SBS 2008, Installation, Migration and Configuration&lt;/strong&gt;&lt;a target="_blank" href="http://davidoverton.com/blogs/doverton/pages/sbs-2008-book.aspx"&gt;&lt;span style="color:#003399;"&gt;&lt;strong&gt; click here&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&amp;nbsp; &lt;/p&gt;
&lt;p&gt;thanks David&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:7d5d34d2-b199-486f-8c31-62ed0b0d7da3" style="padding-bottom:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;float:none;padding-top:0px;"&gt;Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/SBS+2008"&gt;SBS 2008&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Book"&gt;Book&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Microsoft"&gt;Microsoft&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Migration"&gt;Migration&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Installation"&gt;Installation&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Configuration"&gt;Configuration&lt;/a&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://uksbsguy.com/aggbug.aspx?PostID=8286" width="1" height="1"&gt;</content><author><name>doverton</name><uri>http://uksbsguy.com/members/doverton/default.aspx</uri></author><category term="Microsoft" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Microsoft/default.aspx" /><category term="SBS 2008" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/SBS+2008/default.aspx" /><category term="Book" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Book/default.aspx" /></entry><entry><title>SBS 2008, Installation, Migration and Configuration – Chapter 10 - Securing the server</title><link rel="alternate" type="text/html" href="/blogs/doverton/archive/2009/04/16/sbs-2008-installation-migration-and-configuration-chapter-10-securing-the-server.aspx" /><id>/blogs/doverton/archive/2009/04/16/sbs-2008-installation-migration-and-configuration-chapter-10-securing-the-server.aspx</id><published>2009-04-16T08:00:00Z</published><updated>2009-04-16T08:00:00Z</updated><content type="html">&lt;h2&gt;Securing the server&lt;/h2&gt;
&lt;p&gt;This chapter covers the process of finishing the network protection and routing setup and configuring the protection of the data on the server. I cover&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Configuring the firewall ports&lt;/li&gt;
&lt;li&gt;Configuring and testing the backups&lt;/li&gt;
&lt;li&gt;Configuring anti-malware&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image002_5F00_78B96591.jpg"&gt;&lt;img height="178" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image002_5F00_thumb_5F00_38834C17.jpg" alt="clip_image002" border="0" title="clip_image002" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;As the anti-malware solution of One-Care is to be discontinued by Microsoft, I also include information about the configuration of tools by other vendors so as to not interfere with SBS 2008&amp;rsquo;s normal running. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;To order the book, go to &lt;/strong&gt;&lt;a href="http://davidoverton.com/r.ashx?1M"&gt;&lt;span style="color:#669966;"&gt;&lt;strong&gt;http://davidoverton.com/r.ashx?1M&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&lt;strong&gt; . To find out more about my SBS 2008 BOOK - SBS 2008, Installation, Migration and Configuration&lt;/strong&gt;&lt;a target="_blank" href="http://davidoverton.com/blogs/doverton/pages/sbs-2008-book.aspx"&gt;&lt;span style="color:#003399;"&gt;&lt;strong&gt; click here&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&amp;nbsp; &lt;/p&gt;
&lt;p&gt;thanks David&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:7d5d34d2-b199-486f-8c31-62ed0b0d7da3" style="padding-bottom:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;float:none;padding-top:0px;"&gt;Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/SBS+2008"&gt;SBS 2008&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Book"&gt;Book&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Microsoft"&gt;Microsoft&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Migration"&gt;Migration&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Installation"&gt;Installation&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Configuration"&gt;Configuration&lt;/a&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://uksbsguy.com/aggbug.aspx?PostID=8285" width="1" height="1"&gt;</content><author><name>doverton</name><uri>http://uksbsguy.com/members/doverton/default.aspx</uri></author><category term="Microsoft" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Microsoft/default.aspx" /><category term="SBS 2008" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/SBS+2008/default.aspx" /><category term="Book" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Book/default.aspx" /></entry><entry><title>SBS 2008, Installation, Migration and Configuration – Chapter 9 - Configuring your services</title><link rel="alternate" type="text/html" href="/blogs/doverton/archive/2009/04/15/sbs-2008-installation-migration-and-configuration-chapter-9-installing-sbs-2008.aspx" /><id>/blogs/doverton/archive/2009/04/15/sbs-2008-installation-migration-and-configuration-chapter-9-installing-sbs-2008.aspx</id><published>2009-04-15T07:59:00Z</published><updated>2009-04-15T07:59:00Z</updated><content type="html">&lt;h2&gt;Configuring your services &lt;/h2&gt;
&lt;p&gt;This chapter covers the process of finalising the network setup moving all network services to be served from the SBS 2008 server. &lt;/p&gt;
&lt;p&gt;In this chapter we will carry out the following tasks, some of which are optional:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Accept the customer feedback option (as it is in this section of the console)&lt;/li&gt;
&lt;li&gt;Configure your internet domain name for remote access and e-mail&lt;/li&gt;
&lt;li&gt;Check your internet network settings&lt;/li&gt;
&lt;li&gt;Enable e-mail routing via your ISP (smart hosts) if required&lt;/li&gt;
&lt;li&gt;Installing a paid for SSL certificate (optional)&lt;/li&gt;
&lt;li&gt;Configure OfficeLive for Small Business for SBS 2008 (optional)&lt;/li&gt;
&lt;li&gt;Configure a VPN (also known as RAS) for external access (optional)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The configuration and purchasing of a Domain Name and setting up for Office Live Small Business is a key benefit of SBS 2008 for those who don&amp;rsquo;t use this already today.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image002_5F00_2DA694FE.jpg"&gt;&lt;img height="198" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image002_5F00_thumb_5F00_0D1F554C.jpg" alt="clip_image002" border="0" title="clip_image002" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image004_5F00_261B2591.jpg"&gt;&lt;img height="198" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image004_5F00_thumb_5F00_5812C61B.jpg" alt="clip_image004" border="0" title="clip_image004" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;To order the book, go to &lt;/strong&gt;&lt;a href="http://davidoverton.com/r.ashx?1M"&gt;&lt;span style="color:#669966;"&gt;&lt;strong&gt;http://davidoverton.com/r.ashx?1M&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&lt;strong&gt; . To find out more about my SBS 2008 BOOK - SBS 2008, Installation, Migration and Configuration&lt;/strong&gt;&lt;a target="_blank" href="http://davidoverton.com/blogs/doverton/pages/sbs-2008-book.aspx"&gt;&lt;span style="color:#003399;"&gt;&lt;strong&gt; click here&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&amp;nbsp; &lt;/p&gt;
&lt;p&gt;thanks David&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:7d5d34d2-b199-486f-8c31-62ed0b0d7da3" style="padding-bottom:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;float:none;padding-top:0px;"&gt;Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/SBS+2008"&gt;SBS 2008&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Book"&gt;Book&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Microsoft"&gt;Microsoft&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Migration"&gt;Migration&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Installation"&gt;Installation&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Configuration"&gt;Configuration&lt;/a&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://uksbsguy.com/aggbug.aspx?PostID=8284" width="1" height="1"&gt;</content><author><name>doverton</name><uri>http://uksbsguy.com/members/doverton/default.aspx</uri></author><category term="Microsoft" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Microsoft/default.aspx" /><category term="SBS 2008" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/SBS+2008/default.aspx" /><category term="Book" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Book/default.aspx" /></entry><entry><title>SBS 2008, Installation, Migration and Configuration – Chapter 8 - Migrating users and data from SBS 2003</title><link rel="alternate" type="text/html" href="/blogs/doverton/archive/2009/04/14/sbs-2008-installation-migration-and-configuration-chapter-8-migrating-users-and-data-from-sbs-2003.aspx" /><id>/blogs/doverton/archive/2009/04/14/sbs-2008-installation-migration-and-configuration-chapter-8-migrating-users-and-data-from-sbs-2003.aspx</id><published>2009-04-14T07:56:00Z</published><updated>2009-04-14T07:56:00Z</updated><content type="html">&lt;h2&gt;Migrating users and data from SBS 2003&lt;/h2&gt;
&lt;p&gt;This chapter covers the finalising of the migration tasks with the migration of the users and the remaining data from the SBS 2003 system to SBS 2008. This chapter covers:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Migrating file shares&lt;/li&gt;
&lt;li&gt;Migrating the Fax data&lt;/li&gt;
&lt;li&gt;Migrate users and Groups&lt;/li&gt;
&lt;li&gt;Migrate LOB applications&lt;/li&gt;
&lt;li&gt;Finish the Migration&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I&amp;rsquo;m a firm believer in scripts and this chapter provides some scripts to simplify the task ahead.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;To order the book, go to &lt;/strong&gt;&lt;a href="http://davidoverton.com/r.ashx?1M"&gt;&lt;span style="color:#669966;"&gt;&lt;strong&gt;http://davidoverton.com/r.ashx?1M&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&lt;strong&gt; . To find out more about my SBS 2008 BOOK - SBS 2008, Installation, Migration and Configuration&lt;/strong&gt;&lt;a target="_blank" href="http://davidoverton.com/blogs/doverton/pages/sbs-2008-book.aspx"&gt;&lt;span style="color:#003399;"&gt;&lt;strong&gt; click here&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&amp;nbsp; &lt;/p&gt;
&lt;p&gt;thanks David&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:7d5d34d2-b199-486f-8c31-62ed0b0d7da3" style="padding-bottom:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;float:none;padding-top:0px;"&gt;Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/SBS+2008"&gt;SBS 2008&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Book"&gt;Book&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Microsoft"&gt;Microsoft&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Migration"&gt;Migration&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Installation"&gt;Installation&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Configuration"&gt;Configuration&lt;/a&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://uksbsguy.com/aggbug.aspx?PostID=8283" width="1" height="1"&gt;</content><author><name>doverton</name><uri>http://uksbsguy.com/members/doverton/default.aspx</uri></author><category term="Microsoft" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Microsoft/default.aspx" /><category term="SBS 2008" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/SBS+2008/default.aspx" /><category term="Book" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Book/default.aspx" /></entry><entry><title>SBS 2008, Installation, Migration and Configuration – Chapter 7 - Migrating the CompanyWeb SharePoint site</title><link rel="alternate" type="text/html" href="/blogs/doverton/archive/2009/04/13/sbs-2008-installation-migration-and-configuration-chapter-7-migrating-the-companyweb-sharepoint-site.aspx" /><id>/blogs/doverton/archive/2009/04/13/sbs-2008-installation-migration-and-configuration-chapter-7-migrating-the-companyweb-sharepoint-site.aspx</id><published>2009-04-13T07:54:00Z</published><updated>2009-04-13T07:54:00Z</updated><content type="html">&lt;h2&gt;Migrating the CompanyWeb SharePoint site&lt;/h2&gt;
&lt;p&gt;This chapter covers the migration of data in the CompanyWeb - &lt;a href="http://companyweb"&gt;http://companyweb&lt;/a&gt;, a Windows SharePoint Site from SBS 2003 to a site called OldCompanyWeb on SBS 2008.&lt;/p&gt;
&lt;p&gt;SBS 2008 ships with Windows SharePoint v3 which is different enough to stop a simple import of data from the Windows SharePoint v2 site that is hosted on SBS 2003. For that reason the recommended approach is to have two sites and to advise the users to utilise the new site going forward, but to retain data in the old site too. Should it be desired, the data and documents can be copied between the sites once the migration is completed.&lt;/p&gt;
&lt;p&gt;This chapter walks you through:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;On the SBS 2003 server 
&lt;ul&gt;
&lt;li&gt;Prepare and check CompanyWeb on SBS 2003 for migration&lt;/li&gt;
&lt;li&gt;Backup the database&lt;/li&gt;
&lt;li&gt;Copy the files to a removable device or create a network share&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;On the SBS 2008 server 
&lt;ul&gt;
&lt;li&gt;Configure the DNS for the migrated site&lt;/li&gt;
&lt;li&gt;Import the data&lt;/li&gt;
&lt;li&gt;Create the OldCompanyWeb site&lt;/li&gt;
&lt;li&gt;Tidy up the site&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;To order the book, go to &lt;/strong&gt;&lt;a href="http://davidoverton.com/r.ashx?1M"&gt;&lt;span style="color:#669966;"&gt;&lt;strong&gt;http://davidoverton.com/r.ashx?1M&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&lt;strong&gt; . To find out more about my SBS 2008 BOOK - SBS 2008, Installation, Migration and Configuration&lt;/strong&gt;&lt;a target="_blank" href="http://davidoverton.com/blogs/doverton/pages/sbs-2008-book.aspx"&gt;&lt;span style="color:#003399;"&gt;&lt;strong&gt; click here&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&amp;nbsp; &lt;/p&gt;
&lt;p&gt;thanks David&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:7d5d34d2-b199-486f-8c31-62ed0b0d7da3" style="padding-bottom:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;float:none;padding-top:0px;"&gt;Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/SBS+2008"&gt;SBS 2008&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Book"&gt;Book&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Microsoft"&gt;Microsoft&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Migration"&gt;Migration&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Installation"&gt;Installation&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Configuration"&gt;Configuration&lt;/a&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://uksbsguy.com/aggbug.aspx?PostID=8282" width="1" height="1"&gt;</content><author><name>doverton</name><uri>http://uksbsguy.com/members/doverton/default.aspx</uri></author><category term="Microsoft" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Microsoft/default.aspx" /><category term="SBS 2008" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/SBS+2008/default.aspx" /><category term="Book" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Book/default.aspx" /></entry><entry><title>SBS 2008, Installation, Migration and Configuration – Chapter 6 - Migrating e-mail from Exchange 2003 to Exchange 2007</title><link rel="alternate" type="text/html" href="/blogs/doverton/archive/2009/04/12/sbs-2008-installation-migration-and-configuration-chapter-6-migrating-e-mail-from-exchange-2003-to-exchange-2007.aspx" /><id>/blogs/doverton/archive/2009/04/12/sbs-2008-installation-migration-and-configuration-chapter-6-migrating-e-mail-from-exchange-2003-to-exchange-2007.aspx</id><published>2009-04-12T07:50:00Z</published><updated>2009-04-12T07:50:00Z</updated><content type="html">&lt;h2&gt;Migrating e-mail from Exchange 2003 to Exchange 2007&lt;/h2&gt;
&lt;p&gt;This chapter covers the migration of e-mail in Exchange 2003 on the SBS 2003 server to Exchange 2007 on SBS 2008. This will again require activities on both servers to complete this task.&lt;/p&gt;
&lt;p&gt;Migrating e-mail is a lengthy process and one you need to plan for in terms of cleaning up e-mail before migration to shorten the process. I walk you through all the activities until the migration is complete.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image002_5F00_1F3EAC57.jpg"&gt;&lt;img height="214" width="244" src="http://davidoverton.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/doverton/clip_5F00_image002_5F00_thumb_5F00_25F1B5DA.jpg" alt="clip_image002" border="0" title="clip_image002" style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;To order the book, go to &lt;/strong&gt;&lt;a href="http://davidoverton.com/r.ashx?1M"&gt;&lt;span style="color:#669966;"&gt;&lt;strong&gt;http://davidoverton.com/r.ashx?1M&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&lt;strong&gt; . To find out more about my SBS 2008 BOOK - SBS 2008, Installation, Migration and Configuration&lt;/strong&gt;&lt;a target="_blank" href="http://davidoverton.com/blogs/doverton/pages/sbs-2008-book.aspx"&gt;&lt;span style="color:#003399;"&gt;&lt;strong&gt; click here&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&amp;nbsp; &lt;/p&gt;
&lt;p&gt;thanks David&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:7d5d34d2-b199-486f-8c31-62ed0b0d7da3" style="padding-bottom:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;float:none;padding-top:0px;"&gt;Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/SBS+2008"&gt;SBS 2008&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Book"&gt;Book&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Microsoft"&gt;Microsoft&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Migration"&gt;Migration&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Installation"&gt;Installation&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Configuration"&gt;Configuration&lt;/a&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://uksbsguy.com/aggbug.aspx?PostID=8281" width="1" height="1"&gt;</content><author><name>doverton</name><uri>http://uksbsguy.com/members/doverton/default.aspx</uri></author><category term="Microsoft" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Microsoft/default.aspx" /><category term="SBS 2008" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/SBS+2008/default.aspx" /><category term="Book" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Book/default.aspx" /></entry><entry><title>SBS 2008, Installation, Migration and Configuration – Chapter 5 - Migrating systems and settings from SBS 2003</title><link rel="alternate" type="text/html" href="/blogs/doverton/archive/2009/04/11/sbs-2008-installation-migration-and-configuration-chapter-5-installing-sbs-2008.aspx" /><id>/blogs/doverton/archive/2009/04/11/sbs-2008-installation-migration-and-configuration-chapter-5-installing-sbs-2008.aspx</id><published>2009-04-11T07:50:00Z</published><updated>2009-04-11T07:50:00Z</updated><content type="html">&lt;h2&gt;Migrating systems and settings from SBS 2003&lt;/h2&gt;
&lt;p&gt;This chapter covers the migration of the configuration settings from the SBS 2003 system to SBS 2008. This will require activity on both servers.&lt;/p&gt;
&lt;p&gt;We will cover the following items in this chapter:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Starting the Migration Wizard &lt;/li&gt;
&lt;li&gt;Initially configuring the SBS 2008 network &lt;/li&gt;
&lt;li&gt;Configure Internet Access &lt;/li&gt;
&lt;li&gt;Migrate the SBS 2003 network settings across &lt;/li&gt;
&lt;li&gt;Cleaning up the group policy settings &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;There are a number of checks in the migration process which if they throw up an error the recommendation is to stop and fix the problem. If the problem is particularly severe or points to a flaw in the original SBS 2003 system then most likely way to avoid further issues later in the migration would be to follow this process to repair the damage and re-start again.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;To order the book, go to &lt;/strong&gt;&lt;a href="http://davidoverton.com/r.ashx?1M"&gt;&lt;span style="color:#669966;"&gt;&lt;strong&gt;http://davidoverton.com/r.ashx?1M&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&lt;strong&gt; . To find out more about my SBS 2008 BOOK - SBS 2008, Installation, Migration and Configuration&lt;/strong&gt;&lt;a target="_blank" href="http://davidoverton.com/blogs/doverton/pages/sbs-2008-book.aspx"&gt;&lt;span style="color:#003399;"&gt;&lt;strong&gt; click here&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&amp;nbsp; &lt;/p&gt;
&lt;p&gt;thanks David&lt;/p&gt;
&lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:7d5d34d2-b199-486f-8c31-62ed0b0d7da3" style="padding-bottom:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;float:none;padding-top:0px;"&gt;Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/SBS+2008"&gt;SBS 2008&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Book"&gt;Book&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Microsoft"&gt;Microsoft&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Migration"&gt;Migration&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Installation"&gt;Installation&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Configuration"&gt;Configuration&lt;/a&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://uksbsguy.com/aggbug.aspx?PostID=8280" width="1" height="1"&gt;</content><author><name>doverton</name><uri>http://uksbsguy.com/members/doverton/default.aspx</uri></author><category term="Microsoft" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Microsoft/default.aspx" /><category term="SBS 2008" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/SBS+2008/default.aspx" /><category term="Book" scheme="http://uksbsguy.com/blogs/doverton/archive/tags/Book/default.aspx" /></entry></feed>