{"id":703,"date":"2007-02-16T14:29:00","date_gmt":"2007-02-16T14:29:00","guid":{"rendered":"http:\/\/markwilson.me.uk\/blog\/2007\/02\/migrating-wsus-to-new-server-without.htm"},"modified":"2007-05-23T18:21:07","modified_gmt":"2007-05-23T17:21:07","slug":"migrating-wsus-to-new-server-without","status":"publish","type":"post","link":"https:\/\/www.markwilson.co.uk\/blog\/2007\/02\/migrating-wsus-to-new-server-without.htm","title":{"rendered":"Migrating WSUS to a new server without downloading all the updates"},"content":{"rendered":"<p><!--4385732330692982620-->I&#8217;ve spent the last day or so decommissioning my old domain controller, which also doubled up as a DNS, WINS, DHCP, print, RIS, anti-virus and <a href=\"http:\/\/www.microsoft.com\/windowsserversystem\/updateservices\/\">WSUS<\/a> server (okay&#8230; so a bit more than <em>doubled<\/em> up then!). Migrating Active Directory\/DNS\/WINS services was straightforward &#8211; it just involved setting up the new server, replicating the data, updating client settings (via DHCP) then removing the old services. DHCP was similarly straightforward (I&#8217;ve blogged before about <a href=\"https:\/\/www.markwilson.co.uk\/blog\/2005\/10\/migrating-dhcp-databases-between.htm\">migrating DHCP databases between servers<\/a>) and RIS just needed to be installed on the new server, the images copied across, and the remote installation services setup wizard run. I recreated my single print queue manually but I could just as well have used the <a href=\"http:\/\/www.microsoft.com\/WindowsServer2003\/techinfo\/overview\/printmigrator3.1.mspx\">Microsoft Windows Server 2003 Print Migrator<\/a>. That left just left my anti-virus management console (reinstall the console and reconfigure the clients) and WSUS.<\/p>\n<p>I could just have installed WSUS, resynchronised with Microsoft Update and approved the necessary updates; however that would have involved downloading more than 10GB of updates (which could have taken my bandwidth usage for the month to a level that would result in my Internet connection being throttled under my ISP&#8217;s sustainable usage policy).<\/p>\n<p>One potential WSUS migration option would have been to <a href=\"http:\/\/technet2.microsoft.com\/WindowsServer\/en\/Library\/c0f1a661-eb48-4156-81a2-267d846f844f1033.mspx?mfr=true\">backup and restore the WSUS configuration<\/a> but I wasn&#8217;t convinced about how that would work in a migration scenario involving a change of servername. Then I found a blog post from Nathan Winters about <a href=\"http:\/\/nathanwinters.blogspot.com\/2006\/01\/how-to-migrate-content-and-approval.html\">migrating WSUS between servers<\/a> which helped me to import the content without going out to the Internet and downloading it again. Nathan suggests that the approvals database gets imported too, but that&#8217;s not the case &#8211; the <code>wsusutil import<\/code> command only imports the update metadata (not the file, approvals, or server settings). Similarly <code>wsusutil migratesus<\/code> migrates approvals from a SUS server (not WSUS) and <code>wsusutil movecontent<\/code> is for moving the content within the local file system. More details on <a href=\"http:\/\/technet2.microsoft.com\/WindowsServer\/en\/library\/2686bd2b-910a-479b-961e-cea2a20280241033.mspx?mfr=true\">managing WSUS from the command line<\/a> can be found in the Microsoft Windows Server TechCenter.<\/p>\n<p>By chance, I&#8217;d installed my new WSUS server as a replica of the original one so I could synchronise with the old server as my upstream source, leaving the new server with the content (from a a manual file copy followed by a metadata import) and the approvals information (from the synchronisation with the old server). All that remained was to finalise the server settings (synchronisation options etc.) and update group policy so that my clients went to the new server.<\/p>\n<p>I hit a problem when I found that WSUS 2.0 doesn&#8217;t allow replica servers to be converted to standalone mode (that&#8217;s expected when WSUS 3.0 is released later this year), effectively preventing me from repointing WSUS to download updates from Microsoft Update. Luckily, Mohammed Athif Khaleel&#8217;s PatchAholic blog features a post on <a href=\"http:\/\/msmvps.com\/blogs\/athif\/archive\/2005\/09\/10\/66061.aspx\">changing the mode of a WSUS server<\/a> and a follow-up comment from <a href=\"http:\/\/msmvps.com\/utility\/Redirect.aspx?U=http%3a%2f%2fforum.sysadmins.ru%2fprofile.php%3fmode%3dviewprofile%26u%3d11117\">SpJam<\/a> includes a script to switch a server from replica to standalone mode (modified here to reflect subsequent comments):<\/p>\n<p><code>rem Restore values after exec spEnableReplica stored procedure<br \/>\n\u00e2\u20ac\u0153%ProgramFiles%\\Update Services\\tools\\osql\\osql.exe\u00e2\u20ac\u009d -S %COMPUTERNAME%\\WSUS -E -b -n -Q \u00e2\u20ac\u0153USE SUSDB UPDATE dbo.tbConfigurationA SET SyncToMU = \u00e2\u20ac\u02dc1\u00e2\u20ac\u00b2 UPDATE dbo.tbConfigurationB SET AutoRefreshDeployments = \u00e2\u20ac\u02dc1\u00e2\u20ac\u00b2 UPDATE dbo.tbConfigurationC SET ReplicaMode = \u00e2\u20ac\u02dc0\u00e2\u20ac\u00b2 UPDATE dbo.tbConfigurationC SET AutoDeployMandatory = \u00e2\u20ac\u02dc1\u00e2\u20ac\u00b2 UPDATE dbo.tbAutoDeploymentRule SET Enabled = \u00e2\u20ac\u02dc0\u00e2\u20ac\u00b2\u00e2\u20ac\u009d<\/code><\/p>\n<p><code>rem Add removed values in tables<br \/>\n\u00e2\u20ac\u0153%ProgramFiles%\\Update Services\\tools\\osql\\osql.exe\u00e2\u20ac\u009d -S %COMPUTERNAME%\\WSUS -E -b -n -Q \u00e2\u20ac\u0153USE SUSDB Insert into dbo.tbTargetGroupInAutoDeploymentRule(AutoDeploymentRuleID, TargetGroupID) values (1, \u00e2\u20ac\u02dcA0A08746-4DBE-4a37-9ADF-9E7652C0B421\u00e2\u20ac\u00b2)\u00e2\u20ac\u009d<br \/>\n\u00e2\u20ac\u0153%ProgramFiles%\\Update Services\\tools\\osql\\osql.exe\u00e2\u20ac\u009d -S %COMPUTERNAME%\\WSUS -E -b -n -Q \u00e2\u20ac\u0153USE SUSDB Insert into dbo.tbTargetGroupInAutoDeploymentRule(AutoDeploymentRuleID, TargetGroupID) values (2, \u00e2\u20ac\u02dcA0A08746-4DBE-4a37-9ADF-9E7652C0B421\u00e2\u20ac\u00b2)\u00e2\u20ac\u009d<br \/>\n\u00e2\u20ac\u0153%ProgramFiles%\\Update Services\\tools\\osql\\osql.exe\u00e2\u20ac\u009d -S %COMPUTERNAME%\\WSUS -E -b -n -Q \u00e2\u20ac\u0153USE SUSDB Insert into dbo.tbUpdateClassificationInAutoDeploymentRule(AutoDeploymentRuleID, UpdateClassificationID) values (1, 1)\u00e2\u20ac\u009d<br \/>\n\u00e2\u20ac\u0153%ProgramFiles%\\Update Services\\tools\\osql\\osql.exe\u00e2\u20ac\u009d -S %COMPUTERNAME%\\WSUS -E -b -n -Q \u00e2\u20ac\u0153USE SUSDB Insert into dbo.tbUpdateClassificationInAutoDeploymentRule(AutoDeploymentRuleID, UpdateClassificationID) values (1, 5)\u00e2\u20ac\u009d<br \/>\n\u00e2\u20ac\u0153%ProgramFiles%\\Update Services\\tools\\osql\\osql.exe\u00e2\u20ac\u009d -S %COMPUTERNAME%\\WSUS -E -b -n -Q \u00e2\u20ac\u0153USE SUSDB Insert into dbo.tbUpdateClassificationInAutoDeploymentRule(AutoDeploymentRuleID, UpdateClassificationID) values (2, 1)\u00e2\u20ac\u009d<br \/>\n\u00e2\u20ac\u0153%ProgramFiles%\\Update Services\\tools\\osql\\osql.exe\u00e2\u20ac\u009d -S %COMPUTERNAME%\\WSUS -E -b -n -Q \u00e2\u20ac\u0153USE SUSDB Insert into dbo.tbUpdateClassificationInAutoDeploymentRule(AutoDeploymentRuleID, UpdateClassificationID) values (2, 5)\u00e2\u20ac\u009d<\/code><\/p>\n<p>It looked as if the script worked as advertised (except that automatic approval options were still not available) until I started to encounter the following error message when running reports or attempting to view update information:<\/p>\n<p><em>Windows Server Update Services error<\/em><\/p>\n<p><em>Error connecting to the Windows Server Update Services database<br \/>\nThere was an error connecting to the Windows Server Update Services database. Either the database is not available or you do not have the correct privileges to access the database.<\/em><\/p>\n<p><em>If you believe you have received this message in error, please check with your system administrator.<\/em><\/p>\n<p><em>Click here to reload the site: Windows Server Update Services<\/em><\/p>\n<p>Thinking that I had corrupted the database and that I might need to go back and start the WSUS migration from scratch, I decided to restart the server &#8220;just in case&#8221;. After the restart, everything seemed to be working (including the previously-missing automatic approval options). I&#8217;ve since approved some more updates and run various reports and (so far) there have been no problems administering WSUS.<\/p>\n<p>The final step was to edit the group policy that I use to control automatic update options on my clients &#8211; a minor edit to change the server which clients should contact for updates.<\/p>\n<p>So, to summarise, my WSUS migration process was:<\/p>\n<ol>\n<li>Install BITS 2.0 (a fully-patched Windows Server 2003 server should already have this).<\/li>\n<li>Install WSUS (in replica mode) and WMSDE.<\/li>\n<li>Export the update metadata on the old server using <code>%programfiles%\\Update Services\\Tools\\wsusutil export <em>filename<\/em>.cab <em>logfilename<\/em>.txt<\/code>.<\/li>\n<li>Copy <em>filename<\/em>.cab (created above) and the contents of the WsusContent folder to the new server (e.g. using an external disk to network connectivity issues).<\/li>\n<li>Import the update metadata using <code>%programfiles%\\Update Services\\Tools\\wsusutil import <em>filename<\/em>.cab <em>logfilename<\/em>.txt<\/code> (note that this takes a long time &#8211; it was just over three hours in my case).<\/li>\n<li>Synchronise WSUS with an upstream server.<\/li>\n<li>Save the script above as <em>filename<\/em>.cmd and execute it from the command line. The output will detail each command followed by the number of affected rows in the database.<\/li>\n<li>Reboot the server.<\/li>\n<li>Configure server settings (e.g. set Microsoft Update as the update source) and administer WSUS as normal.<\/li>\n<\/ol>\n<p>I&#8217;d be interested to hear if anyone has any variations on this approach &#8211; for example, I don&#8217;t really recommend installing WSUS in replica mode and then hacking the database (and this wouldn&#8217;t be an option if there was any network segregation in place). Indeed, since I completed the exercise I found <a href=\"http:\/\/www.wsus.info\/forums\/index.php?showtopic=7559\">reference to a tool called WSUSMigrate<\/a> which is part of the <a href=\"http:\/\/www.microsoft.com\/windowsserversystem\/updateservices\/downloads\/default.mspx\">WSUS API samples and tools<\/a> and can be used to migrate the approvals data &#8211; that looks like a much better approach.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I&#8217;ve spent the last day or so decommissioning my old domain controller, which also doubled up as a DNS, WINS, DHCP, print, RIS, anti-virus and WSUS server (okay&#8230; so a bit more than doubled up then!). Migrating Active Directory\/DNS\/WINS services was straightforward &#8211; it just involved setting up the new server, replicating the data, updating &hellip; <a href=\"https:\/\/www.markwilson.co.uk\/blog\/2007\/02\/migrating-wsus-to-new-server-without.htm\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">Migrating WSUS to a new server without downloading all the updates<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[],"tags":[1,20],"class_list":["post-703","post","type-post","status-publish","format-standard","hentry","tag-microsoft","tag-patch-management"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Migrating WSUS to a new server without downloading all the updates - markwilson.it<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.markwilson.co.uk\/blog\/2007\/02\/migrating-wsus-to-new-server-without.htm\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Migrating WSUS to a new server without downloading all the updates - markwilson.it\" \/>\n<meta property=\"og:description\" content=\"I&#8217;ve spent the last day or so decommissioning my old domain controller, which also doubled up as a DNS, WINS, DHCP, print, RIS, anti-virus and WSUS server (okay&#8230; so a bit more than doubled up then!). Migrating Active Directory\/DNS\/WINS services was straightforward &#8211; it just involved setting up the new server, replicating the data, updating &hellip; Continue reading Migrating WSUS to a new server without downloading all the updates\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.markwilson.co.uk\/blog\/2007\/02\/migrating-wsus-to-new-server-without.htm\" \/>\n<meta property=\"og:site_name\" content=\"markwilson.it\" \/>\n<meta property=\"article:published_time\" content=\"2007-02-16T14:29:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2007-05-23T17:21:07+00:00\" \/>\n<meta name=\"author\" content=\"Mark Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@markwilsonit\" \/>\n<meta name=\"twitter:site\" content=\"@markwilsonit\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mark Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2007\\\/02\\\/migrating-wsus-to-new-server-without.htm#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2007\\\/02\\\/migrating-wsus-to-new-server-without.htm\"},\"author\":{\"name\":\"Mark Wilson\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\"},\"headline\":\"Migrating WSUS to a new server without downloading all the updates\",\"datePublished\":\"2007-02-16T14:29:00+00:00\",\"dateModified\":\"2007-05-23T17:21:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2007\\\/02\\\/migrating-wsus-to-new-server-without.htm\"},\"wordCount\":940,\"commentCount\":10,\"publisher\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\"},\"keywords\":[\"Microsoft\",\"Patch Management\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2007\\\/02\\\/migrating-wsus-to-new-server-without.htm#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2007\\\/02\\\/migrating-wsus-to-new-server-without.htm\",\"url\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2007\\\/02\\\/migrating-wsus-to-new-server-without.htm\",\"name\":\"Migrating WSUS to a new server without downloading all the updates - markwilson.it\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#website\"},\"datePublished\":\"2007-02-16T14:29:00+00:00\",\"dateModified\":\"2007-05-23T17:21:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2007\\\/02\\\/migrating-wsus-to-new-server-without.htm#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2007\\\/02\\\/migrating-wsus-to-new-server-without.htm\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2007\\\/02\\\/migrating-wsus-to-new-server-without.htm#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Migrating WSUS to a new server without downloading all the updates\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/\",\"name\":\"markwilson.it\",\"description\":\"get-info -class technology | write-output &gt; \\\/dev\\\/web\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\",\"name\":\"Mark Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\",\"width\":800,\"height\":800,\"caption\":\"Mark Wilson\"},\"logo\":{\"@id\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\"},\"description\":\"A Chartered IT Professional, with recent experience in technology leadership, IT strategy and practice management roles, Mark Wilson is an Enterprise Architect in the Advisory and Management Group at risual. During a career spanning more than two decades, Mark has gained widespread recognition as an expert in his field including both industry and national press exposure. In addition to certifications from Microsoft, VMware, Red Hat, The Open Group and Axelos, Mark held a Microsoft Most Valuable Professional (MVP) award for three years and is now part of the MVP Reconnect programme. Mark is also well-known on social media and maintains an award-winning blog.\",\"sameAs\":[\"http:\\\/\\\/www.markwilson.co.uk\\\/\",\"https:\\\/\\\/www.instagram.com\\\/markwilsonuk\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/markawilson\\\/\",\"https:\\\/\\\/x.com\\\/markwilsonit\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCWHlZCoHRTocdvtrOJ2IL4A\"],\"url\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/author\\\/mark-wilson\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Migrating WSUS to a new server without downloading all the updates - markwilson.it","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.markwilson.co.uk\/blog\/2007\/02\/migrating-wsus-to-new-server-without.htm","og_locale":"en_GB","og_type":"article","og_title":"Migrating WSUS to a new server without downloading all the updates - markwilson.it","og_description":"I&#8217;ve spent the last day or so decommissioning my old domain controller, which also doubled up as a DNS, WINS, DHCP, print, RIS, anti-virus and WSUS server (okay&#8230; so a bit more than doubled up then!). Migrating Active Directory\/DNS\/WINS services was straightforward &#8211; it just involved setting up the new server, replicating the data, updating &hellip; Continue reading Migrating WSUS to a new server without downloading all the updates","og_url":"https:\/\/www.markwilson.co.uk\/blog\/2007\/02\/migrating-wsus-to-new-server-without.htm","og_site_name":"markwilson.it","article_published_time":"2007-02-16T14:29:00+00:00","article_modified_time":"2007-05-23T17:21:07+00:00","author":"Mark Wilson","twitter_card":"summary_large_image","twitter_creator":"@markwilsonit","twitter_site":"@markwilsonit","twitter_misc":{"Written by":"Mark Wilson","Estimated reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.markwilson.co.uk\/blog\/2007\/02\/migrating-wsus-to-new-server-without.htm#article","isPartOf":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2007\/02\/migrating-wsus-to-new-server-without.htm"},"author":{"name":"Mark Wilson","@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468"},"headline":"Migrating WSUS to a new server without downloading all the updates","datePublished":"2007-02-16T14:29:00+00:00","dateModified":"2007-05-23T17:21:07+00:00","mainEntityOfPage":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2007\/02\/migrating-wsus-to-new-server-without.htm"},"wordCount":940,"commentCount":10,"publisher":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468"},"keywords":["Microsoft","Patch Management"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.markwilson.co.uk\/blog\/2007\/02\/migrating-wsus-to-new-server-without.htm#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.markwilson.co.uk\/blog\/2007\/02\/migrating-wsus-to-new-server-without.htm","url":"https:\/\/www.markwilson.co.uk\/blog\/2007\/02\/migrating-wsus-to-new-server-without.htm","name":"Migrating WSUS to a new server without downloading all the updates - markwilson.it","isPartOf":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/#website"},"datePublished":"2007-02-16T14:29:00+00:00","dateModified":"2007-05-23T17:21:07+00:00","breadcrumb":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2007\/02\/migrating-wsus-to-new-server-without.htm#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.markwilson.co.uk\/blog\/2007\/02\/migrating-wsus-to-new-server-without.htm"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.markwilson.co.uk\/blog\/2007\/02\/migrating-wsus-to-new-server-without.htm#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.markwilson.co.uk\/blog"},{"@type":"ListItem","position":2,"name":"Migrating WSUS to a new server without downloading all the updates"}]},{"@type":"WebSite","@id":"https:\/\/www.markwilson.co.uk\/blog\/#website","url":"https:\/\/www.markwilson.co.uk\/blog\/","name":"markwilson.it","description":"get-info -class technology | write-output &gt; \/dev\/web","publisher":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.markwilson.co.uk\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Person","Organization"],"@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468","name":"Mark Wilson","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1","url":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1","width":800,"height":800,"caption":"Mark Wilson"},"logo":{"@id":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1"},"description":"A Chartered IT Professional, with recent experience in technology leadership, IT strategy and practice management roles, Mark Wilson is an Enterprise Architect in the Advisory and Management Group at risual. During a career spanning more than two decades, Mark has gained widespread recognition as an expert in his field including both industry and national press exposure. In addition to certifications from Microsoft, VMware, Red Hat, The Open Group and Axelos, Mark held a Microsoft Most Valuable Professional (MVP) award for three years and is now part of the MVP Reconnect programme. Mark is also well-known on social media and maintains an award-winning blog.","sameAs":["http:\/\/www.markwilson.co.uk\/","https:\/\/www.instagram.com\/markwilsonuk\/","https:\/\/www.linkedin.com\/in\/markawilson\/","https:\/\/x.com\/markwilsonit","https:\/\/www.youtube.com\/channel\/UCWHlZCoHRTocdvtrOJ2IL4A"],"url":"https:\/\/www.markwilson.co.uk\/blog\/author\/mark-wilson"}]}},"jetpack_featured_media_url":"","jetpack-related-posts":[{"id":1545,"url":"https:\/\/www.markwilson.co.uk\/blog\/2009\/12\/migrating-infrastructure-services-to-a-windows-server-2008-r2-computer.htm","url_meta":{"origin":703,"position":0},"title":"Migrating infrastructure services to a Windows Server 2008 R2 computer","author":"Mark Wilson","date":"Friday 11 December 2009","format":false,"excerpt":"Having built a low-power\u00c2\u00a0server to run my home infrastructure, I need to get moving on decommissioning the old virtual machines so I can turn off the Dell PowerEdge 840 that runs them. The first step was to migrate the Active Directory Domain Services from my existing Windows Server 2003 R2\u2026","rel":"","context":"In \"Microsoft Windows Server 2003 R2\"","block_context":{"text":"Microsoft Windows Server 2003 R2","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/windows-server-2003-r2"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":179,"url":"https:\/\/www.markwilson.co.uk\/blog\/2005\/10\/migrating-dhcp-databases-between.htm","url_meta":{"origin":703,"position":1},"title":"Migrating DHCP databases between Windows servers","author":"Mark Wilson","date":"Tuesday 11 October 2005","format":false,"excerpt":"One side effect of rebuilding the server that runs pretty much everything on my home network was that I had to migrate the DHCP database (twice - first to a virtual machine operating as a temporary server, and then back to the original hardware after it had been rebuilt). I\u2026","rel":"","context":"In \"Microsoft Windows 2000\"","block_context":{"text":"Microsoft Windows 2000","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/windows-2000"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":222,"url":"https:\/\/www.markwilson.co.uk\/blog\/2006\/01\/configuring-solaris-10-dhcp-client-to.htm","url_meta":{"origin":703,"position":2},"title":"Configuring a Solaris 10 DHCP client to register with a Windows Server 2003 DNS server","author":"Mark Wilson","date":"Friday 20 January 2006","format":false,"excerpt":"Last week, I wrote about configuring a hostname for a Solaris 10 DHCP client. Alan Thompson very kindly left a comment on that post about using DHCP to set the hostname on the network (i.e. in the DNS) and I'm pleased to say that it works a treat on my\u2026","rel":"","context":"In \"DNS\"","block_context":{"text":"DNS","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/dns"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":312,"url":"https:\/\/www.markwilson.co.uk\/blog\/2005\/07\/best-practices-for-managing-automatic.htm","url_meta":{"origin":703,"position":3},"title":"Best practices for managing automatic IP addressing with DHCP","author":"Mark Wilson","date":"Thursday 21 July 2005","format":false,"excerpt":"Dynamic host configuration protocol (DHCP) is often taken for granted - we expect it to work; however there are a few items which need to be considered and this post is intended as a general discussion of DHCP best practice. Most administrators will be familiar with the overall DHCP concept\u2026","rel":"","context":"In \"Microsoft Windows 2000\"","block_context":{"text":"Microsoft Windows 2000","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/windows-2000"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":661,"url":"https:\/\/www.markwilson.co.uk\/blog\/2005\/10\/this-is-why-im-not-fan-of-java.htm","url_meta":{"origin":703,"position":4},"title":"This is why I&#8217;m not a fan of Java","author":"Mark Wilson","date":"Monday 10 October 2005","format":false,"excerpt":"I just wasted 2 days (one of which was on my weekend), and a lot of sleep, trying to work out why I couldn't upgrade the Windows 2000 server which looks after my domain, DHCP, RIS, SUS and a whole load of other bits at home. Every time I tried\u2026","rel":"","context":"In \"Java\"","block_context":{"text":"Java","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/java"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":2254,"url":"https:\/\/www.markwilson.co.uk\/blog\/2010\/12\/using-dhcp-reserved-client-options-for-particular-clients.htm","url_meta":{"origin":703,"position":5},"title":"Using DHCP reserved client options for certain devices","author":"Mark Wilson","date":"Thursday 30 December 2010","format":false,"excerpt":"I've been struggling with poor Internet connectivity for a while now - the speed is fine (any speed tests I conduct indicate a perfectly healthy 3-5Mbps on on \"up to 8Mbps\" ADSL line) but I frequently suffer from timeout, only to find that a refresh a few moments later brings\u2026","rel":"","context":"In \"ADSL\"","block_context":{"text":"ADSL","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/adsl"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts\/703","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/comments?post=703"}],"version-history":[{"count":0,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts\/703\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/media?parent=703"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/categories?post=703"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/tags?post=703"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}