{"id":386,"date":"2006-05-04T22:01:00","date_gmt":"2006-05-04T22:01:00","guid":{"rendered":"http:\/\/markwilson.me.uk\/blog\/2006\/05\/problems-accessing-virtual-server.htm"},"modified":"2007-05-15T09:34:34","modified_gmt":"2007-05-15T08:34:34","slug":"problems-accessing-virtual-server","status":"publish","type":"post","link":"https:\/\/www.markwilson.co.uk\/blog\/2006\/05\/problems-accessing-virtual-server.htm","title":{"rendered":"Problems accessing the Virtual Server administration website on a Windows Server 2003 domain controller"},"content":{"rendered":"<p><!--114678117896771749-->Although I have several computers at home, most of my server roles are running on a single PC.  That means Active Directory (AD) domain controller (DC), DNS, DHCP, RIS, WSUS, and print services are all on one box (file services are on my <a href=\"https:\/\/www.markwilson.co.uk\/blog\/2004\/10\/probably-smallest-server-in-world.htm\">NSLU2<\/a>) so I figured that adding <a href=\"http:\/\/www.microsoft.com\/virtualserver\/\">Virtual Server 2005 R2<\/a> to the mix shouldn&#8217;t be too big a problem.  It&#8217;s certainly not good practice, but it works.<\/p>\n<p>Another bad practice is to run internet information services (IIS) on a DC, but I already have IIS installed for WSUS, so adding the Virtual Server administration website should have been reasonably straightforward.  Following installation, existing websites on the server were working as expected but any attempt to access the Virtual Server 2005 administration website resulted in an <em>HTTP Error 403 &#8211; Forbidden: Access is denied.<\/em> message, despite entering the domain administrator credentials when prompted (and already being logged on as the domain administrator).<\/p>\n<p>From checking the event log, I found that Virtual Server was logging the following event on startup:<\/p>\n<p><em>Event Type: Warning<br \/>\nEvent Source: Virtual Server<br \/>\nEvent Category: Virtual Server<br \/>\nEvent ID: 1130<br \/>\nDate:  01\/05\/2006<br \/>\nTime:  15:28:23<br \/>\nUser:  NT AUTHORITY\\NETWORK SERVICE<br \/>\nComputer: SERVER1<br \/>\nDescription:<br \/>\nThe service principal names for Virtual Server could not be registered. Constrained delegation cannot be used until the SPNs have been registered manually.  Error 0x80072098 &#8211; Insufficient access rights to perform the operation.<\/em><\/p>\n<p><em>For more information, see Help and Support Center at http:\/\/go.microsoft.com\/fwlink\/events.asp.<\/em><\/p>\n<p>I tried the steps in <a href=\"http:\/\/support.microsoft.com\/?kbid=890893\">Microsoft knowledge base article 890893<\/a> but adding the appropriate SPNs to AD didn&#8217;t seem to make any difference.<\/p>\n<p>A bit of Googling turned up <a href=\"http:\/\/blogs.msdn.com\/david.wang\/archive\/2005\/07\/04\/Why_you_get_login_prompt_on_VS2005_with_Integrated_Auth.aspx\">a blog entry from David Wang<\/a> which although not completely relevant, contained a reference to a similar problem in the comments.  Sure enough, when I checked the IIS logs, the error code was 403 19, as shown below:<\/p>\n<p><code>#Fields: date time s-sitename s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs(User-Agent) sc-status sc-substatus sc-win32-status<br \/>\n2006-05-01 21:29:39 W3SVC2 <em>ipaddress<\/em> GET \/VirtualServer\/VSWebApp.exe view=1 1024 <em>domainname<\/em>\\Administrator <em>ipaddress<\/em> Mozilla\/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+SV1;+.NET+CLR+1.1.4322) 403 19 1314<\/code><\/p>\n<p>I tried David&#8217;s advice of switching the IIS DefaultAppPool identity to LocalSystem and that worked (LocalSystem is a very highly-privileged account), but (despite my lackadaisical approach to co-hosting services and the probably security implications) I didn&#8217;t really feel that it was an ideal solution and I switched back to Network Service.  I then set about trying to work out why the Network Service account (NT AUTHORITY\\NETWORK SERVICE) didn&#8217;t have the appropriate permissions.  <a href=\"http:\/\/support.microsoft.com\/?kbid=332097\">Microsoft knowledge base article 332097<\/a> looked as if it might be relevant (<a href=\"http:\/\/support.microsoft.com\/?kbid=842493\">Microsoft knowledge base article 842493<\/a> is similar) but didn&#8217;t seem to solve the problem (in any case the IIS_WPG group already had the correct permissions) so I fired up the Local Security Settings MMC snap-in and checked out the user rights assignment in the local security policy.<\/p>\n<p>Because my IIS server is also a DC, many of the <a href=\"http:\/\/www.microsoft.com\/technet\/prodtechnol\/WindowsServer2003\/Library\/IIS\/3648346f-e4f5-474b-86c7-5a86e85fa1ff.mspx\">user rights normally associated with the Network Service account<\/a> had been removed (and were overridden by the Default Domain Controllers Policy).  NT AUTHORITY\\NETWORK SERVICE was also missing from the IIS worker process group (IIS_WPG) membership (and could not be added as it is a local account) so I edited the local security policy and the Default Domain Controllers Policy (another bad practice &#8211; I should really have created a new policy for DCs running IIS) as follows:<\/p>\n<ul>\n<li>Replace a process-level token (Default Domain Controllers Policy).<\/li>\n<li>Adjust memory quotas for a process (Default Domain Controllers Policy).<\/li>\n<li>Generate security audits (Default Domain Controllers Policy).<\/li>\n<li>Log on as a batch job (Default Domain Controllers Policy).<\/li>\n<li>Impersonate a client after authentication (local security policy).<\/li>\n<\/ul>\n<p>The following user rights were already in existence:<\/p>\n<ul>\n<li>Bypass traverse checking (inherited from Everyone).<\/li>\n<li>Access this computer from the network (inherited from Everyone).<\/li>\n<li>Log on as a service (Default Domain Controllers Policy).<\/li>\n<\/ul>\n<p>After forcing a group policy refresh (using <code>gpupdate \/force<\/code>) and issuing the <code>iisreset<\/code> command, I was able to access the Virtual Server administration website as expected; although the event 1130 warnings are still being recorded in the event log, along with event 1129 since I enabled the virtual machine remote control (VMRC) server:<\/p>\n<p><em>Event Type:    Warning<br \/>\nEvent Source:    Virtual Server<br \/>\nEvent Category:    Remote Control<br \/>\nEvent ID:    1029<br \/>\nDate:        04\/05\/2006<br \/>\nTime:        21:19:18<br \/>\nUser:        NT AUTHORITY\\NETWORK SERVICE<br \/>\nComputer:    SERVER1<br \/>\nDescription:<br \/>\nThe service principal name for the VMRC server could not be registered. Automatic authentication will always use NTLM authentication.  Error 0x80072098 &#8211; Insufficient access rights to perform the operation.<\/em><\/p>\n<p><em>For more information, see Help and Support Center at http:\/\/go.microsoft.com\/fwlink\/events.asp.<\/em><\/p>\n<p>I stress that running multiple services on a single PC (even with proper server hardware) is not a good idea; nor is running IIS on a DC; and neither is editing either the Default Domain Policy or the Default Domain Controllers Policy.  If you need to do it though, hopefully these notes will help to work out why processes that rely on the Network Service account are not working as they should.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Although I have several computers at home, most of my server roles are running on a single PC. That means Active Directory (AD) domain controller (DC), DNS, DHCP, RIS, WSUS, and print services are all on one box (file services are on my NSLU2) so I figured that adding Virtual Server 2005 R2 to the &hellip; <a href=\"https:\/\/www.markwilson.co.uk\/blog\/2006\/05\/problems-accessing-virtual-server.htm\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">Problems accessing the Virtual Server administration website on a Windows Server 2003 domain controller<\/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":[102,76,101],"class_list":["post-386","post","type-post","status-publish","format-standard","hentry","tag-active-directory","tag-hyper-v","tag-windows-server-2003"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Problems accessing the Virtual Server administration website on a Windows Server 2003 domain controller - 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\/2006\/05\/problems-accessing-virtual-server.htm\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Problems accessing the Virtual Server administration website on a Windows Server 2003 domain controller - markwilson.it\" \/>\n<meta property=\"og:description\" content=\"Although I have several computers at home, most of my server roles are running on a single PC. That means Active Directory (AD) domain controller (DC), DNS, DHCP, RIS, WSUS, and print services are all on one box (file services are on my NSLU2) so I figured that adding Virtual Server 2005 R2 to the &hellip; Continue reading Problems accessing the Virtual Server administration website on a Windows Server 2003 domain controller\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.markwilson.co.uk\/blog\/2006\/05\/problems-accessing-virtual-server.htm\" \/>\n<meta property=\"og:site_name\" content=\"markwilson.it\" \/>\n<meta property=\"article:published_time\" content=\"2006-05-04T22:01:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2007-05-15T08:34:34+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=\"4 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\\\/2006\\\/05\\\/problems-accessing-virtual-server.htm#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2006\\\/05\\\/problems-accessing-virtual-server.htm\"},\"author\":{\"name\":\"Mark Wilson\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\"},\"headline\":\"Problems accessing the Virtual Server administration website on a Windows Server 2003 domain controller\",\"datePublished\":\"2006-05-04T22:01:00+00:00\",\"dateModified\":\"2007-05-15T08:34:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2006\\\/05\\\/problems-accessing-virtual-server.htm\"},\"wordCount\":808,\"commentCount\":10,\"publisher\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\"},\"keywords\":[\"Microsoft Active Directory\",\"Microsoft Virtual Server\\\/Hyper-V\",\"Microsoft Windows Server 2003\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2006\\\/05\\\/problems-accessing-virtual-server.htm#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2006\\\/05\\\/problems-accessing-virtual-server.htm\",\"url\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2006\\\/05\\\/problems-accessing-virtual-server.htm\",\"name\":\"Problems accessing the Virtual Server administration website on a Windows Server 2003 domain controller - markwilson.it\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#website\"},\"datePublished\":\"2006-05-04T22:01:00+00:00\",\"dateModified\":\"2007-05-15T08:34:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2006\\\/05\\\/problems-accessing-virtual-server.htm#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2006\\\/05\\\/problems-accessing-virtual-server.htm\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2006\\\/05\\\/problems-accessing-virtual-server.htm#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Problems accessing the Virtual Server administration website on a Windows Server 2003 domain controller\"}]},{\"@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":"Problems accessing the Virtual Server administration website on a Windows Server 2003 domain controller - 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\/2006\/05\/problems-accessing-virtual-server.htm","og_locale":"en_GB","og_type":"article","og_title":"Problems accessing the Virtual Server administration website on a Windows Server 2003 domain controller - markwilson.it","og_description":"Although I have several computers at home, most of my server roles are running on a single PC. That means Active Directory (AD) domain controller (DC), DNS, DHCP, RIS, WSUS, and print services are all on one box (file services are on my NSLU2) so I figured that adding Virtual Server 2005 R2 to the &hellip; Continue reading Problems accessing the Virtual Server administration website on a Windows Server 2003 domain controller","og_url":"https:\/\/www.markwilson.co.uk\/blog\/2006\/05\/problems-accessing-virtual-server.htm","og_site_name":"markwilson.it","article_published_time":"2006-05-04T22:01:00+00:00","article_modified_time":"2007-05-15T08:34:34+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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.markwilson.co.uk\/blog\/2006\/05\/problems-accessing-virtual-server.htm#article","isPartOf":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2006\/05\/problems-accessing-virtual-server.htm"},"author":{"name":"Mark Wilson","@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468"},"headline":"Problems accessing the Virtual Server administration website on a Windows Server 2003 domain controller","datePublished":"2006-05-04T22:01:00+00:00","dateModified":"2007-05-15T08:34:34+00:00","mainEntityOfPage":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2006\/05\/problems-accessing-virtual-server.htm"},"wordCount":808,"commentCount":10,"publisher":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468"},"keywords":["Microsoft Active Directory","Microsoft Virtual Server\/Hyper-V","Microsoft Windows Server 2003"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.markwilson.co.uk\/blog\/2006\/05\/problems-accessing-virtual-server.htm#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.markwilson.co.uk\/blog\/2006\/05\/problems-accessing-virtual-server.htm","url":"https:\/\/www.markwilson.co.uk\/blog\/2006\/05\/problems-accessing-virtual-server.htm","name":"Problems accessing the Virtual Server administration website on a Windows Server 2003 domain controller - markwilson.it","isPartOf":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/#website"},"datePublished":"2006-05-04T22:01:00+00:00","dateModified":"2007-05-15T08:34:34+00:00","breadcrumb":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2006\/05\/problems-accessing-virtual-server.htm#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.markwilson.co.uk\/blog\/2006\/05\/problems-accessing-virtual-server.htm"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.markwilson.co.uk\/blog\/2006\/05\/problems-accessing-virtual-server.htm#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.markwilson.co.uk\/blog"},{"@type":"ListItem","position":2,"name":"Problems accessing the Virtual Server administration website on a Windows Server 2003 domain controller"}]},{"@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":318,"url":"https:\/\/www.markwilson.co.uk\/blog\/2005\/10\/up-and-running-with-wsus.htm","url_meta":{"origin":386,"position":0},"title":"Up and running with WSUS","author":"Mark Wilson","date":"Thursday 20 October 2005","format":false,"excerpt":"I've been meaning to upgrade my Software Update Services (SUS) installation to Windows Software Update Services (WSUS) for some time now, but the recent rebuild of my SUS server forced the issue. I'm pleased to report that the WSUS installation was reasonably straightforward. Because I had already installed Windows Server\u2026","rel":"","context":"In \"Microsoft\"","block_context":{"text":"Microsoft","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/microsoft"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":884,"url":"https:\/\/www.markwilson.co.uk\/blog\/2007\/08\/how-not-to-upgrade-from-windows-server-2003-to-windows-server-2003-r2.htm","url_meta":{"origin":386,"position":1},"title":"How not to upgrade from Windows Server 2003 to Windows Server 2003 R2","author":"Mark Wilson","date":"Saturday 18 August 2007","format":false,"excerpt":"I just upgraded a server from Windows Server 2003 (with SP2 installed) to Windows Server 2003 R2 (SP2 slipstreamed). It wasn't exactly smooth, because I didn't RTFM... (it's my home server, it's Saturday afternoon, it should have been trivial and I don't have a lot of time to spend planning\u2026","rel":"","context":"In \"Microsoft Windows Server 2003\"","block_context":{"text":"Microsoft Windows Server 2003","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/windows-server-2003"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"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":386,"position":2},"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":703,"url":"https:\/\/www.markwilson.co.uk\/blog\/2007\/02\/migrating-wsus-to-new-server-without.htm","url_meta":{"origin":386,"position":3},"title":"Migrating WSUS to a new server without downloading all the updates","author":"Mark Wilson","date":"Friday 16 February 2007","format":false,"excerpt":"I'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... so a bit more than doubled up then!). Migrating Active Directory\/DNS\/WINS services was straightforward - it just involved setting up the new\u2026","rel":"","context":"In \"Microsoft\"","block_context":{"text":"Microsoft","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/microsoft"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":194,"url":"https:\/\/www.markwilson.co.uk\/blog\/2005\/11\/windows-management-technologies.htm","url_meta":{"origin":386,"position":4},"title":"Windows management technologies","author":"Mark Wilson","date":"Thursday 3 November 2005","format":false,"excerpt":"At the Best of the Microsoft Management Summit 2005 event a few weeks back, Vlad Joanavic gave an overview of some of the \"free\" Windows Management technologies that are available (in addition to the \"paid\" products under the System Center brand). These basically break down into: Windows Software Update Services\u2026","rel":"","context":"In \"Microsoft Active Directory\"","block_context":{"text":"Microsoft Active Directory","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/active-directory"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1161,"url":"https:\/\/www.markwilson.co.uk\/blog\/2008\/08\/microsoft-infrastructure-architecture-considerations-part-2-remote-offices.htm","url_meta":{"origin":386,"position":5},"title":"Microsoft infrastructure architecture considerations: part 2 (remote offices)","author":"Mark Wilson","date":"Wednesday 20 August 2008","format":false,"excerpt":"Continuing from my earlier post which sets the scene for a series of posts on the architectural considerations for designing a predominantly-Microsoft IT infrastructure, in this post, I'll look at some of the considerations for remote offices. Geographically dispersed organisations face a number of challenges in order to support remote\u2026","rel":"","context":"In \"Architecture\"","block_context":{"text":"Architecture","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/architecture"},"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\/386","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=386"}],"version-history":[{"count":0,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts\/386\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/media?parent=386"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/categories?post=386"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/tags?post=386"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}