{"id":880,"date":"2007-08-14T19:11:02","date_gmt":"2007-08-14T18:11:02","guid":{"rendered":"http:\/\/www.markwilson.co.uk\/blog\/2007\/08\/a-few-commands-to-get-started-with-windows-server-core.htm"},"modified":"2007-08-14T19:19:43","modified_gmt":"2007-08-14T18:19:43","slug":"a-few-commands-to-get-started-with-windows-server-core","status":"publish","type":"post","link":"https:\/\/www.markwilson.co.uk\/blog\/2007\/08\/a-few-commands-to-get-started-with-windows-server-core.htm","title":{"rendered":"A few commands to get started with Windows Server Core"},"content":{"rendered":"<p>Quoting <a href=\"http:\/\/winserverteam.org.uk\/blogs\/scotty\/archive\/2007\/08\/11\/learning-core-server.aspx\">Scotty McLeod<\/a>:<\/p>\n<blockquote cite=\"http:\/\/winserverteam.org.uk\/blogs\/scotty\/archive\/2007\/08\/11\/learning-core-server.aspx\"><p><a href=\"http:\/\/winserverteam.org.uk\/blogs\/mark\/\">Mark<\/a> mailed me last night to ask about my crib sheet for Core Server but as it was Friday evening was taking a rest from the digital world. A hour and a half later he mailed me back to say he had found all he needed.<\/p>\n<p>Now this was from the mail Mark&#8217;s first real go in anger at installing and configuring Core Server but we have to remember he is an great Windows professional and old enough to have used command lines for a significant proportion of his life with computers.<\/p><\/blockquote>\n<p>I&#8217;m honoured that Scotty refers to me as a professional but somewhat concerned at the same time that my age (I&#8217;m only 35!) is linked with command line usage.  Actually, I think it&#8217;s got more to do with geekiness and although I can&#8217;t confess to being a Linux\/Unix expert, I do love diving into a command shell.  I guess what Scotty is saying is that I&#8217;m old enough to have cut my teeth in the computing world before GUIs were the norm &#8211; and he&#8217;s right.<\/p>\n<p>Anyway, back to Server Core.  I love it.  I hate it.  No, I love it. Well, I love the idea and I&#8217;m sure I <em>will<\/em> love using the product but, because it&#8217;s not yet finished, the administration of a Server Core box can be a chore.  Consequently, here&#8217;s my checklist of tasks from when I needed to get a Server Core box up and running last Friday (based on the June CTP build).<\/p>\n<ol>\n<li>Enable remote desktop (from a Windows Vista client):<br \/>\n<code>cscript %windir%\\system32\\SCRegEdit.wsf \/ar 0 <\/code><\/li>\n<li>Change the machine name:<br \/>\n<code>netdom renamecomputer %computername% \/newname:<em>newcomputername<\/em> <\/code><\/li>\n<li>Set the IP address for the primary NIC:<br \/>\n<code>netsh interface ipv4 set address \"Local Area Connection\" <em>ipaddress<\/em> <em>subnetmask<\/em> <em>gatewayipaddress<\/em><\/code><\/li>\n<li>Set the DNS server addresses:<br \/>\n<code>netsh interface ipv4 add dns \"Local Area Connection\" <em>ipaddress<\/em> [index=<em>indexnumber<\/em>]<\/code><\/li>\n<li>Disable the firewall (at least until everything is working):<br \/>\n<code>netsh firewall set opmode disable<\/code><\/li>\n<li>Join a domain:<br \/>\n<code>netdom join %computername% \/domain:<em>domainname<\/em> \/userd:<em>domainname<\/em>\\<em>username<\/em> \/passwordd:*<\/code><\/li>\n<li>Restart the server:<br \/>\n<code>shutdown -r<\/code><\/li>\n<li>Change the drive letter allocation for an existing disk (e.g. the CD-ROM drive):<br \/>\n<code>diskpart<br \/>\nselect volume <em>volumenumber<\/em><br \/>\nassign letter=driveletter<\/code><\/li>\n<li>Format additional disks (in my case, these had been partitioned during setup but additional <code>diskpart.exe<\/code> commands could be used):<br \/>\n<code>diskpart<br \/>\nselect disk <em>disknumber<\/em><br \/>\nselect partition <em>partitionnumber<\/em><br \/>\nformat fs=ntfs label=\"<em>volumelable<\/em>\" quiet<br \/>\n<\/code><\/li>\n<li>Label a disk (e.g. the system disk):<br \/>\n<code>label <em>driveletter<\/em>: \"<em>volumelable<\/em>\"<\/code><\/li>\n<li>Add a domain user to a local group (note that there are some serious restrictions around this &#8211; <a href=\"http:\/\/support.microsoft.com\/kb\/324639\/\">Microsoft knowledge base article 324639<\/a> has more details):<br \/>\n<code>net localgroup <em>groupname<\/em> \/add <em>domainname<\/em>\\<em>username<\/em><\/code><\/li>\n<\/ol>\n<p>This has just scraped the surface with a few commands that I needed &#8211; it would have taken me <em>a lot<\/em> longer to write this post without these excellent resources:<\/p>\n<ul>\n<li><a href=\"http:\/\/blogs.iis.net\/metegokt\/archive\/2007\/06\/26\/administering-iis7-on-server-core-installations-of-windows-server-2008.aspx\">Administering IIS 7 on Server Core installations of Windows Server 2008<\/a> (including IIS deployment and configuration tips and Server Core administration tips).<\/li>\n<li><a href=\"http:\/\/www.windowsnetworking.com\/articles_tutorials\/Creating-core-Longhorn-server.html\">Creating a core Longhorn server<\/a>.<\/li>\n<li><a href=\"http:\/\/4sysops.com\/archives\/windows-server-2008-longhorn-getting-started-with-server-core\/\">Getting started with Server Core<\/a>.<\/ul>\n<\/li>\n<p>Other links that may be useful include the <a href=\"http:\/\/technet2.microsoft.com\/windowsserver\/en\/library\/552ed70a-208d-48c4-8da8-2e27b530eac71033.mspx?mfr=true\">Windows command line reference<\/a> and my own post on <a href=\"https:\/\/www.markwilson.co.uk\/blog\/2005\/10\/using-netsh-to-set-multiple-dns-server.htm\">using <code>netsh<\/code> to set multiple DNS server addresses<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Quoting Scotty McLeod: Mark mailed me last night to ask about my crib sheet for Core Server but as it was Friday evening was taking a rest from the digital world. A hour and a half later he mailed me back to say he had found all he needed. Now this was from the mail &hellip; <a href=\"https:\/\/www.markwilson.co.uk\/blog\/2007\/08\/a-few-commands-to-get-started-with-windows-server-core.htm\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">A few commands to get started with Windows Server Core<\/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":[104],"class_list":["post-880","post","type-post","status-publish","format-standard","hentry","tag-windows-server-2008"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>A few commands to get started with Windows Server Core - 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\/08\/a-few-commands-to-get-started-with-windows-server-core.htm\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"A few commands to get started with Windows Server Core - markwilson.it\" \/>\n<meta property=\"og:description\" content=\"Quoting Scotty McLeod: Mark mailed me last night to ask about my crib sheet for Core Server but as it was Friday evening was taking a rest from the digital world. A hour and a half later he mailed me back to say he had found all he needed. Now this was from the mail &hellip; Continue reading A few commands to get started with Windows Server Core\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.markwilson.co.uk\/blog\/2007\/08\/a-few-commands-to-get-started-with-windows-server-core.htm\" \/>\n<meta property=\"og:site_name\" content=\"markwilson.it\" \/>\n<meta property=\"article:published_time\" content=\"2007-08-14T18:11:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2007-08-14T18:19:43+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=\"3 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\\\/08\\\/a-few-commands-to-get-started-with-windows-server-core.htm#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2007\\\/08\\\/a-few-commands-to-get-started-with-windows-server-core.htm\"},\"author\":{\"name\":\"Mark Wilson\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\"},\"headline\":\"A few commands to get started with Windows Server Core\",\"datePublished\":\"2007-08-14T18:11:02+00:00\",\"dateModified\":\"2007-08-14T18:19:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2007\\\/08\\\/a-few-commands-to-get-started-with-windows-server-core.htm\"},\"wordCount\":463,\"commentCount\":8,\"publisher\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\"},\"keywords\":[\"Microsoft Windows Server 2008\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2007\\\/08\\\/a-few-commands-to-get-started-with-windows-server-core.htm#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2007\\\/08\\\/a-few-commands-to-get-started-with-windows-server-core.htm\",\"url\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2007\\\/08\\\/a-few-commands-to-get-started-with-windows-server-core.htm\",\"name\":\"A few commands to get started with Windows Server Core - markwilson.it\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#website\"},\"datePublished\":\"2007-08-14T18:11:02+00:00\",\"dateModified\":\"2007-08-14T18:19:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2007\\\/08\\\/a-few-commands-to-get-started-with-windows-server-core.htm#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2007\\\/08\\\/a-few-commands-to-get-started-with-windows-server-core.htm\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2007\\\/08\\\/a-few-commands-to-get-started-with-windows-server-core.htm#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"A few commands to get started with Windows Server Core\"}]},{\"@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":"A few commands to get started with Windows Server Core - 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\/08\/a-few-commands-to-get-started-with-windows-server-core.htm","og_locale":"en_GB","og_type":"article","og_title":"A few commands to get started with Windows Server Core - markwilson.it","og_description":"Quoting Scotty McLeod: Mark mailed me last night to ask about my crib sheet for Core Server but as it was Friday evening was taking a rest from the digital world. A hour and a half later he mailed me back to say he had found all he needed. Now this was from the mail &hellip; Continue reading A few commands to get started with Windows Server Core","og_url":"https:\/\/www.markwilson.co.uk\/blog\/2007\/08\/a-few-commands-to-get-started-with-windows-server-core.htm","og_site_name":"markwilson.it","article_published_time":"2007-08-14T18:11:02+00:00","article_modified_time":"2007-08-14T18:19:43+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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.markwilson.co.uk\/blog\/2007\/08\/a-few-commands-to-get-started-with-windows-server-core.htm#article","isPartOf":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2007\/08\/a-few-commands-to-get-started-with-windows-server-core.htm"},"author":{"name":"Mark Wilson","@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468"},"headline":"A few commands to get started with Windows Server Core","datePublished":"2007-08-14T18:11:02+00:00","dateModified":"2007-08-14T18:19:43+00:00","mainEntityOfPage":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2007\/08\/a-few-commands-to-get-started-with-windows-server-core.htm"},"wordCount":463,"commentCount":8,"publisher":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468"},"keywords":["Microsoft Windows Server 2008"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.markwilson.co.uk\/blog\/2007\/08\/a-few-commands-to-get-started-with-windows-server-core.htm#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.markwilson.co.uk\/blog\/2007\/08\/a-few-commands-to-get-started-with-windows-server-core.htm","url":"https:\/\/www.markwilson.co.uk\/blog\/2007\/08\/a-few-commands-to-get-started-with-windows-server-core.htm","name":"A few commands to get started with Windows Server Core - markwilson.it","isPartOf":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/#website"},"datePublished":"2007-08-14T18:11:02+00:00","dateModified":"2007-08-14T18:19:43+00:00","breadcrumb":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2007\/08\/a-few-commands-to-get-started-with-windows-server-core.htm#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.markwilson.co.uk\/blog\/2007\/08\/a-few-commands-to-get-started-with-windows-server-core.htm"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.markwilson.co.uk\/blog\/2007\/08\/a-few-commands-to-get-started-with-windows-server-core.htm#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.markwilson.co.uk\/blog"},{"@type":"ListItem","position":2,"name":"A few commands to get started with Windows Server Core"}]},{"@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":845,"url":"https:\/\/www.markwilson.co.uk\/blog\/2007\/07\/windows-server-2008-server-core.htm","url_meta":{"origin":880,"position":0},"title":"Windows Server 2008 Server Core","author":"Mark Wilson","date":"Monday 16 July 2007","format":false,"excerpt":"Scotty McLeod recently gave a presentation to the Windows Server UK User Group on Windows Server 2008 Server Core. I mentioned Server Core in a previous post but here's some more on the subject, based on Scotty's presentation (it's also worth checking out Micheal Pietroforte's post on Server Core essentials).\u2026","rel":"","context":"In \"Microsoft Windows Server 2008\"","block_context":{"text":"Microsoft Windows Server 2008","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/windows-server-2008"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1029,"url":"https:\/\/www.markwilson.co.uk\/blog\/2008\/03\/customising-windows-server-2008-server-core.htm","url_meta":{"origin":880,"position":1},"title":"Customising Windows Server 2008 server core","author":"Mark Wilson","date":"Thursday 27 March 2008","format":false,"excerpt":"A few months back, I wrote a post with a few commands to get started with server core on Windows Server 2008. Since then, I've had some fun tweaking server core installations (including some cheekiness installing third party web servers and browsers). Sander Berkouwer wrote a series of blog posts\u2026","rel":"","context":"In \"Microsoft Windows Server 2008\"","block_context":{"text":"Microsoft Windows Server 2008","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/windows-server-2008"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1125,"url":"https:\/\/www.markwilson.co.uk\/blog\/2008\/07\/windows-server-user-group-uk-on-linkedin.htm","url_meta":{"origin":880,"position":2},"title":"Windows Server User Group UK on LinkedIn","author":"Mark Wilson","date":"Monday 21 July 2008","format":false,"excerpt":"Last year, Scotty McLeod set up the Windows Server User Group UK with the intention of creating a lively discussion area (backed up with regular meetings) for UK-based IT Professionals who are interested in the development of the Windows Server platform. Unfortunately, Scotty was involved in a serious accident at\u2026","rel":"","context":"In \"Microsoft Windows Server 2008\"","block_context":{"text":"Microsoft Windows Server 2008","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/windows-server-2008"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1028,"url":"https:\/\/www.markwilson.co.uk\/blog\/2008\/03\/surfing-with-server-core.htm","url_meta":{"origin":880,"position":3},"title":"Surfing with server core","author":"Mark Wilson","date":"Thursday 27 March 2008","format":false,"excerpt":"The whole point of the server core installation mode for Windows Server 2008 is a reduced attack surface - no Windows Explorer, no Internet Explorer, no .NET Framework. That's all well and good but sometimes it's useful to download a file over HTTP to a server core machine. No problem\u2026","rel":"","context":"In \"Microsoft Windows Server 2008\"","block_context":{"text":"Microsoft Windows Server 2008","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/windows-server-2008"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":841,"url":"https:\/\/www.markwilson.co.uk\/blog\/2007\/07\/windows-server-user-group-uk.htm","url_meta":{"origin":880,"position":4},"title":"Windows Server UK user group","author":"Mark Wilson","date":"Wednesday 11 July 2007","format":false,"excerpt":"Scotty McLeod has been working hard to get the Windows Server User Group UK website off the existing SharePoint platform and onto something more appropriate (SharePoint is great for some things but it was not great for the user group website - hey, even SharePoint blogs uses Community Server! Come\u2026","rel":"","context":"In \"Microsoft Windows Server 2008\"","block_context":{"text":"Microsoft Windows Server 2008","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/windows-server-2008"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":851,"url":"https:\/\/www.markwilson.co.uk\/blog\/2007\/07\/apache-http-server-on-windows-server-2008-server-core.htm","url_meta":{"origin":880,"position":5},"title":"Apache HTTP server on Windows Server 2008 Server Core","author":"Mark Wilson","date":"Monday 16 July 2007","format":false,"excerpt":"Microsoft's James O'Neill wrote about how: \"Some bright spark tried running Apache on [Windows Server 2008 Server] Core and having no special Windows dependencies it works.\" I couldn't find any references to this elsewhere on the 'net so I had to give it a go - it's actually really easy:\u2026","rel":"","context":"In \"Apache\"","block_context":{"text":"Apache","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/apache"},"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\/880","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=880"}],"version-history":[{"count":0,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts\/880\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/media?parent=880"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/categories?post=880"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/tags?post=880"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}