<?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>Andy McDonald &#187; Core</title>
	<atom:link href="http://www.andymcdonald.co.uk/tag/core/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.andymcdonald.co.uk</link>
	<description>IT Contractor and Junior Football Coach</description>
	<lastBuildDate>Fri, 10 Jun 2011 09:08:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to configure RDP on Windows 2008 Core.</title>
		<link>http://www.andymcdonald.co.uk/2009/03/12/how-to-configure-rdp-on-windows-2008-core/</link>
		<comments>http://www.andymcdonald.co.uk/2009/03/12/how-to-configure-rdp-on-windows-2008-core/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 11:35:55 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Active Directory 2008]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Core]]></category>
		<category><![CDATA[RDP]]></category>

		<guid isPermaLink="false">http://www.andymcdonald.co.uk/?p=56</guid>
		<description><![CDATA[Once we have installed Windows 2008 we need to configure RDP (Remote Desktop Protocol) so we can connect to our new server remotely.
First we need to allow the server to be administered remotely. W can do this by running the following command
winrm quickconfig
This willenable the basic configuration so you can connect to the server remotely [...]]]></description>
			<content:encoded><![CDATA[<p>Once we have installed Windows 2008 we need to configure RDP (Remote Desktop Protocol) so we can connect to our new server remotely.</p>
<p>First we need to allow the server to be administered remotely. W can do this by running the following command</p>
<p>winrm quickconfig</p>
<p>This willenable the basic configuration so you can connect to the server remotely using an MMC concole</p>
<p>By default RDP is disabled so we need to logon from the console (or VMware server) with an Administrator account and use the following commands</p>
<ol>
<li>cd \</li>
<li>cd windows</li>
<li>cd system32</li>
<li>cscript scregedit.wsf /ar o (the last character is a zero)</li>
<li>cscript scregedit.wsf /ar /v (this displays the registry entry so you can verify it has been changed)</li>
</ol>
<p>The disable RDP</p>
<ol>
<li>cd \</li>
<li>cd windows</li>
<li>cd system32</li>
<li>cscript scregedit.wsf /ar 1</li>
<li>cscript scregedit.wsf /ar /v (this displays the registry entry so you can verify it has been changed)</li>
</ol>
<p>When running the verify command the following applies</p>
<pre>1 indicated RDP is disabled
0 ondicates RDP is enabled</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.andymcdonald.co.uk/2009/03/12/how-to-configure-rdp-on-windows-2008-core/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RDP stops working on Windows 2008 Core when promoted to DC</title>
		<link>http://www.andymcdonald.co.uk/2009/02/18/rdp-stops-working-on-windows-2008-core-when-promoted-to-dc/</link>
		<comments>http://www.andymcdonald.co.uk/2009/02/18/rdp-stops-working-on-windows-2008-core-when-promoted-to-dc/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 11:07:08 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Active Directory 2008]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Core]]></category>
		<category><![CDATA[RDP]]></category>
		<category><![CDATA[Windows 2008]]></category>

		<guid isPermaLink="false">http://www.andymcdonald.co.uk/?p=45</guid>
		<description><![CDATA[RDP (Remote Desktop Protocol) stops working on Windows 2008 Core when promoted to DC (Domain Controller)
I had a fully configured Windows 2008 Enterprise server running in Core more. RDP was configured correctly and I could log on to the desktop using MSTSC.
I then promoted the server using DCPROMO to be the first DC in a [...]]]></description>
			<content:encoded><![CDATA[<p>RDP (Remote Desktop Protocol) stops working on Windows 2008 Core when promoted to DC (Domain Controller)</p>
<p>I had a fully configured Windows 2008 Enterprise server running in Core more. RDP was configured correctly and I could log on to the desktop using MSTSC.</p>
<p>I then promoted the server using DCPROMO to be the first DC in a new domain in a new forest. Once this was complete the machine rebooted.</p>
<p>At this point I could no longer log on to the server using RDP. I tried a few things like disabling the firewall, and running the following command but nothing would work.</p>
<pre>c:windowssystem32 &gt; cscript scregedit.wsf /ar 0</pre>
<h2>Solution</h2>
<ol>
<li>run the command c:windowssystem32 &gt; cscript scregedit.wsf /ar 1 to disable RDP</li>
<li>run the command c:windowssystem32 &gt; cscript scregedit.wsf /ar /v this will display the registry setting so you can check the value is set to 1</li>
<li>reboot the server</li>
<li>run the command c:windowssystem32 &gt; cscript scregedit.wsf /ar 0 this will enable RDP</li>
<li>run the command c:windowssystem32 &gt; cscript scregedit.wsf /ar /v this will display the registry setting so you can check the value is set to 0</li>
<li>reboot the server</li>
</ol>
<p>Please note I am running these commands from the system32 folder. by default your command promt will be at c:usersadministrator to change directory to the system32 folder use the following commands</p>
<ul>
<li><span style="font-family: Courier New;">cd </span></li>
<li><span style="font-family: Courier New;">cd windows</span></li>
<li><span style="font-family: Courier New;">cd system32</span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.andymcdonald.co.uk/2009/02/18/rdp-stops-working-on-windows-2008-core-when-promoted-to-dc/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

