<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Personal website of Dave Hope &#187; Windows Server</title>
	<atom:link href="http://davehope.co.uk/Blog/tag/windows-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://davehope.co.uk</link>
	<description>Open source projects, sysadmin stuff and the home of Product Key Finder</description>
	<lastBuildDate>Fri, 27 Jan 2012 13:47:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Windows 2008 SSTP Configuration</title>
		<link>http://davehope.co.uk/Blog/sstp-vpn-server-setup/</link>
		<comments>http://davehope.co.uk/Blog/sstp-vpn-server-setup/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 17:38:00 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Routing]]></category>
		<category><![CDATA[Windows Server]]></category>

		<guid isPermaLink="false">http://davehope.co.uk/?p=886</guid>
		<description><![CDATA[A few weeks ago I was asked how to configure SSTP on a Windows 2008 RRAS server. Most of the MCP documents say that a certificate needs installing, but fail to mention what needs to be done. So I&#8217;ve written up the notes I sent, hopefully it&#8217;ll help someone out. The requirement for SSTP connectivity [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago I was asked how to configure SSTP on a Windows 2008 RRAS server. Most of the MCP documents say that a certificate needs installing, but fail to mention what needs to be done. So I&#8217;ve written up the notes I sent, hopefully it&#8217;ll help someone out.</p>
<p>The requirement for SSTP connectivity are pretty basic:</p>
<ul>
<li>HTTPs (tcp/443) forwarded to your VPN server;</li>
<li>A certificate from a CA that both your clients and your server trust. It&#8217;s worth noting that most people wont be able to use self-signed certificates for SSTP as the client needs to perform a CRL check before connecting;</li>
<li>A windows 2008 or later VPN server</li>
</ul>
<p>Once you&#8217;ve decided on a hostname for your VPN server, which should take a minute or two on a good <a href="http://www.o2.co.uk/">o2</a> line as it&#8217;s just a straightforward purchase, register it in DNS and head off to GoDaddy or somewhere and get yourself an SSL certificate. The CSR should be generated using the &#8220;Certificates&#8221; MMC Snap-In. The CN of the certificate should be the hostname you chose earlier, such as vpn.nwtraders.com</p>
<p>We now need to see what certificates are currently in use for SSTP, on the RRAS server run &#8220;netsh http show ssl&#8221; to see the bindings.</p>
<pre>
C:\Windows\system32>netsh http show ssl

SSL Certificate bindings:
-------------------------

    IP:port                 : <span style="color:red">0.0.0.0:443</span>
    Certificate Hash        : efbaa640423127109869034676552a30fb8ca329
    Application ID          : <span style="color:red">{ba195980-cd49-458b-9e23-c84ee0adcd75}</span>
    Certificate Store Name  : MY
    Verify Client Certificate Revocation    : Enabled
    Verify Revocation Using Cached Client Certificate Only    : Disabled
    Usage Check    : Enabled
    Revocation Freshness Time : 0
    URL Retrieval Timeout   : 0
    Ctl Identifier          :
    Ctl Store Name          :
    DS Mapper Usage    : Disabled
    Negotiate Client Certificate    : Disabled

    IP:port                 : <span style="color:red">[::]:443</span>
    Certificate Hash        : efbaa640423127109869034676552a30fb8ca329
    Application ID          : <span style="color:red">{ba195980-cd49-458b-9e23-c84ee0adcd75}</span>
    Certificate Store Name  : MY
    Verify Client Certificate Revocation    : Enabled
    Verify Revocation Using Cached Client Certificate Only    : Disabled
    Usage Check    : Enabled
    Revocation Freshness Time : 0
    URL Retrieval Timeout   : 0
    Ctl Identifier          :
    Ctl Store Name          :
    DS Mapper Usage    : Disabled
    Negotiate Client Certificate    : Disabled
</pre>
<p>The important thing to note here is the &#8220;IP:port&#8221; and the &#8220;Application ID&#8221;.</p>
<p>We now need to delete the current SSL certificate bindings for both IPv4 and IPv6. To do this, use the IP:Port information from the last command output.</p>
<pre>
C:\Windows\system32>netsh http delete ssl <span style="color:red">0.0.0.0:443</span>

SSL Certificate successfully deleted

C:\Windows\system32>netsh http delete ssl <span style="color:red">[::]:443</span>

SSL Certificate successfully deleted</pre>
<p>Install your issued SSL certificate into the Computer certificate store and jot down the thumpbrint from the certificate details tab. Using the thumbprint, we now install the certificate using netsh and the application ID we started with. Make sure to use the same bindings used earlier.</p>
<pre>C:\>netsh http add sslcert ipport=<span style="color:red">0.0.0.0:443</span> certhash=<span style="color:red">740021b8b9a03b72e515c700ff17cb55b51cc239</span> appid=<span style="color:red">{ba195980-cd49-458b-9e23-c84ee0adcd75}</span> certstorename=MY

SSL Certificate successfully added

C:\>netsh http add sslcert ipport=<span style="color:red">[::]:443</span> certhash=<span style="color:red">740021b8b9a03b72e515c700ff17cb55b51cc239</span> appid=<span style="color:red">{ba195980-cd49-458b-9e23-c84ee0adcd75}</span> certstorename=MY

SSL Certificate successfully added</pre>
<p>Setup SSTP on the client and you should be good to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://davehope.co.uk/Blog/sstp-vpn-server-setup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>It runs on legs of steel and is a master of defence</title>
		<link>http://davehope.co.uk/Blog/it-runs-on-legs-of-steel-and-is-a-master-of-defence/</link>
		<comments>http://davehope.co.uk/Blog/it-runs-on-legs-of-steel-and-is-a-master-of-defence/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 13:30:43 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Windows Server]]></category>

		<guid isPermaLink="false">http://davehope.co.uk/?p=59</guid>
		<description><![CDATA[As I sit here waiting on SC:Essentials installing (I really wish I understood all the different SC applications, and how they differ) I came across the new Windows Server 2008 Unleased website. Go take a look, it&#8217;s pretty good. It&#8217;s got a neat animated robot on it so it wins my vote!]]></description>
			<content:encoded><![CDATA[<p>As I sit here waiting on SC:Essentials installing (I really wish I understood all the different SC applications, and how they differ) I came across the new <a href="http://www.microsoft.com/windowsserver2008/en/us/serverunleashed/default.html">Windows Server 2008 Unleased</a> website. Go take a look, it&#8217;s pretty good. It&#8217;s got a neat animated robot on it so it wins my vote!</p>
]]></content:encoded>
			<wfw:commentRss>http://davehope.co.uk/Blog/it-runs-on-legs-of-steel-and-is-a-master-of-defence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 2008 SP1</title>
		<link>http://davehope.co.uk/Blog/windows-2008-sp1/</link>
		<comments>http://davehope.co.uk/Blog/windows-2008-sp1/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 12:35:39 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://davehope.co.uk/Blog/windows-2008-sp1/</guid>
		<description><![CDATA[For those of you who have played with the Windows Server 2008 RTM you may be left wondering why the version is shows as &#8220;Build 6001: Service Pack 1&#8243;. Hang on, Servcie pack 1? But it hasn&#8217;t even shipped yet! Iain McDonald explains why over on his blog. Vista and Windows 2008 are have an [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you who have played with the Windows Server 2008 RTM you may be left wondering why the version is shows as &#8220;Build 6001: Service Pack 1&#8243;. Hang on, Servcie pack 1? But it hasn&#8217;t even shipped yet!</p>
<p>Iain McDonald explains why over on <a href="http://blogs.msdn.com/iainmcdonald/archive/2008/02/15/windows-server-2008-is-called-sp1-adventures-in-doing-things-right.aspx">his blog</a>. Vista and Windows 2008 are have an almost identical codebase, so by making windows 2008 service pack 1 on launch they&#8217;ll be able to deploy updates for both operating systems . I&#8217;d suggest you read his post though, as it&#8217;s an interesting read!</p>
]]></content:encoded>
			<wfw:commentRss>http://davehope.co.uk/Blog/windows-2008-sp1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 2008 RTM</title>
		<link>http://davehope.co.uk/Blog/windows-2008-rtm/</link>
		<comments>http://davehope.co.uk/Blog/windows-2008-rtm/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 08:30:03 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://davehope.co.uk/Blog/windows-2008-rtm/</guid>
		<description><![CDATA[If you havn&#8217;t already heard, Windows 2008 hit RTM today. You can read a brief story and see pictures of the room where it all happens (Room 26 &#8211; &#8220;the shipping room&#8221;) on the teams technet blog. The Hyper-V version isn&#8217;t out yet, but no doubt will be in the next few months. If you&#8217;re [...]]]></description>
			<content:encoded><![CDATA[<p>If you havn&#8217;t already heard, Windows 2008 hit RTM today. You can read a brief story and see pictures of the room where it all happens (Room 26 &#8211; &#8220;the shipping room&#8221;) on <a href="http://blogs.technet.com/windowsserver/archive/2008/02/04/windows-server-2008-rtm.aspx">the teams technet blog</a>. The Hyper-V version isn&#8217;t out yet, but no doubt will be in the next few months.</p>
<p>If you&#8217;re thinking about upgrading sometime in the near future you&#8217;ll probably want to take a look at <a href="http://www.microsoft.com/presspass/features/2008/feb08/02-04WS2008.mspx">this page</a>.  Ohh, and <a href="http://windowsvistablog.com/blogs/windowsvista/archive/2008/02/04/announcing-the-rtm-of-windows-vista-sp1.aspx">Vista SP1 also hit RTM today</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://davehope.co.uk/Blog/windows-2008-rtm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 2003 Datacenter Guest NIC Driver for Virtual Server</title>
		<link>http://davehope.co.uk/Blog/windows-2003-datacenter-guest-nic-driver-for-virtual-server/</link>
		<comments>http://davehope.co.uk/Blog/windows-2003-datacenter-guest-nic-driver-for-virtual-server/#comments</comments>
		<pubDate>Thu, 27 Sep 2007 08:44:20 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Drivers]]></category>
		<category><![CDATA[Virtual Server]]></category>
		<category><![CDATA[Windows Server]]></category>

		<guid isPermaLink="false">http://davehope.co.uk/Beta/wordpress/Blog/windows-2003-datacenter-guest-nic-driver-for-virtual-server/</guid>
		<description><![CDATA[Came across a problem the other day with running Windows 2003 Datacenter Edition as a guest on Microsoft Virtual Server. The problem? Windows 2003 Datacenter edition doesn&#8217;t have a suitable driver for Virtual Server, meaning that it&#8217;s fairly usless as a guest operating system (which negates one of the main benefits of having datacenter edition [...]]]></description>
			<content:encoded><![CDATA[<p>Came across a problem the other day with running Windows 2003 Datacenter Edition as a guest on Microsoft Virtual Server. The problem? Windows 2003 Datacenter edition doesn&#8217;t have a suitable driver for Virtual Server, meaning that it&#8217;s fairly usless as a guest operating system (which negates one of the main benefits of having datacenter edition &#8211; unlimited VMs with no additional license cost).</p>
<p>I spoke to Peter Meister at Microsoft who was a great help, and whilst waiting for a solution from them I found some drivers which work. Install  <a href="http://www.intel.com/design/network/drivers/int_v505.htm">these drivers</a> in your datacenter edition guest and your virtual network card will start working again, yay!</p>
]]></content:encoded>
			<wfw:commentRss>http://davehope.co.uk/Blog/windows-2003-datacenter-guest-nic-driver-for-virtual-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving a WSUS 3.0 Database</title>
		<link>http://davehope.co.uk/Blog/moving-a-wsus-database/</link>
		<comments>http://davehope.co.uk/Blog/moving-a-wsus-database/#comments</comments>
		<pubDate>Thu, 14 Jun 2007 08:41:44 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[WSUS]]></category>

		<guid isPermaLink="false">http://davehope.co.uk/Beta/wordpress/Blog/16/</guid>
		<description><![CDATA[Due to seemingly non-existant documentation on moving a WSUS 3.0 database to a new server, I figured i&#8217;d write up my experience. Database configuration is all stored in: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\UpdateServices\Server\Setup The keys you&#8217;re interested in are SqlServerName and SqlInstanceIsRemote. Microsoft only officially support Windows authentication, so that&#8217;s what i&#8217;ll cover here. You&#8217;ll be able to connect [...]]]></description>
			<content:encoded><![CDATA[<p>Due to seemingly non-existant documentation on moving a WSUS 3.0 database to a new server, I figured i&#8217;d write up my experience.</p>
<p>Database configuration is all stored in:<br />
<samp>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\UpdateServices\Server\Setup</samp><br />
The keys you&#8217;re interested in are <strong>SqlServerName</strong> and <strong>SqlInstanceIsRemote</strong>. Microsoft only officially support Windows authentication, so that&#8217;s what i&#8217;ll cover here.</p>
<p>You&#8217;ll be able to connect the the Windows Internal Database using Microsoft SQL Server management studio Express (a free download), detach the database and re-attach on your new SQL server.</p>
<p>Once that&#8217;s done, add the computer account of the WSUS server as a database login (e.g. nwtraders\LONDON$) and give it the dbowner role on the SUSDB.</p>
<p>The last step is to set the <strong>SqlServerName</strong> and <strong>SqlIsRemote</strong> values as mentioned earlier. Once done, restart IIS and the UpdateServices service. Job done.</p>
]]></content:encoded>
			<wfw:commentRss>http://davehope.co.uk/Blog/moving-a-wsus-database/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Move ISA Tracing Location</title>
		<link>http://davehope.co.uk/Blog/move-isa-tracing-location/</link>
		<comments>http://davehope.co.uk/Blog/move-isa-tracing-location/#comments</comments>
		<pubDate>Mon, 23 Apr 2007 08:53:41 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Windows Server]]></category>

		<guid isPermaLink="false">http://davehope.co.uk/Beta/wordpress/Blog/move-isa-tracing-location/</guid>
		<description><![CDATA[Looking to free up some space on your Windows drive? Here&#8217;s a nifty tip for ISA Server users out there. By default, ISA stores it&#8217;s debug tracing in c:\Windows\Debug, which is about 1Gb in size. This can be moved to somewhere else (i.e a bigger drive) by modifying the following registry keys: [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ISATrace] "AlternateTracingFile"="D:\\ISA\\Tracing\\ISALOG.BIN" "UseAlternateTracingFile"=dword:ffffffff]]></description>
			<content:encoded><![CDATA[<p>Looking to free up some space on your Windows drive? Here&#8217;s a nifty tip for ISA Server users out there.</p>
<p>By default, ISA stores it&#8217;s debug tracing in c:\Windows\Debug, which is about 1Gb in size. This can be moved to somewhere else (i.e a bigger drive) by modifying the following registry keys:</p>
<pre>

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ISATrace]
"AlternateTracingFile"="D:\\ISA\\Tracing\\ISALOG.BIN"
"UseAlternateTracingFile"=dword:ffffffff
</pre>
]]></content:encoded>
			<wfw:commentRss>http://davehope.co.uk/Blog/move-isa-tracing-location/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

