<?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>NakedCleaner &#187; PC</title>
	<atom:link href="http://www.nakedcleaner.com/category/pc/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nakedcleaner.com</link>
	<description>Making my head a cleaner place.</description>
	<lastBuildDate>Thu, 14 Jan 2010 16:43:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Packed Bitstream in Win7</title>
		<link>http://www.nakedcleaner.com/2008/11/06/packed-bitstream-in-win7/</link>
		<comments>http://www.nakedcleaner.com/2008/11/06/packed-bitstream-in-win7/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 18:55:37 +0000</pubDate>
		<dc:creator>Ashleigh</dc:creator>
				<category><![CDATA[Media Center]]></category>
		<category><![CDATA[MMCL]]></category>
		<category><![CDATA[MPEG4Modifier]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.nakedcleaner.com/2008/11/06/packed-bitstream-in-win7/</guid>
		<description><![CDATA[The Windows 7 ‘SuperCodec’ does not like Packed Bitstream xVids and DivX’s. It shows itself by looking like the playback is at 15-20fps instead of 23.997/25/29.997. Not a problem though, we can fix that with a little PowerShell and MPEG4ModifierCL (see below).
The script is as below, just save this into a UpdateVideoPacking.ps1
# Enumerate through avi [...]]]></description>
			<content:encoded><![CDATA[<p>The Windows 7 ‘SuperCodec’ does not like Packed Bitstream xVids and DivX’s. It shows itself by looking like the playback is at 15-20fps instead of 23.997/25/29.997. Not a problem though, we can fix that with a little PowerShell and MPEG4ModifierCL (see below).</p>
<p>The script is as below, just save this into a UpdateVideoPacking.ps1</p>
<p><font color="#0000ff"># Enumerate through avi files in directory      <br /># and run MMCL to uncompress them if required </font></p>
<p><font color="#0000ff">foreach ($file in get-childitem *.avi)      <br />{       <br />&#160; $FileTrim = $file.name.TrimEnd(&quot;.avi&quot;)       <br />&#160; $FileNew = $fileTrim + &quot;.up.avi&quot;       <br />&#160; write-host &quot;Working on &quot; $FileTrim &quot;Output To &quot; $FileNew       <br />&#160; mmcl &#8211;unpack $file.name $FileNew       <br />&#160; if($LASTEXITCODE -eq 0)       <br />&#160;&#160;&#160; {       <br />&#160;&#160;&#160;&#160;&#160; if (Test-Path $FileNew)       <br />&#160;&#160;&#160;&#160;&#160;&#160; {&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; write-host &quot;Would delete &quot;$file       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; del $file       <br />&#160;&#160;&#160;&#160;&#160;&#160; }       <br />&#160;&#160;&#160; }       <br />&#160;&#160; write-host &quot;Completed Folder&quot;       <br />}</font></p>
<p>Make sure that the MPEG4Modifier executable (mmcl.exe) is in the path, or the same folder as the script/video’s.</p>
<p>Now pull down and install PowerShell if you have not, launch it and type <font color="#0000ff">set-ExecutionPolicy unrestricted </font><font color="#000000">(will allow the PS1 to run)</font></p>
<p>Now change folder to the video folder you want to process and type <font color="#0000ff">fullpathtoscript\UpdateVideoPacking.ps1</font> this will run the script in the folder, I put both the script and the mmcl.exe in my c:\utils folder, which is in my path.</p>
<p>The script will read the file in, determine if the file needs unpacking, if it does it will create a file with the same name as the original but put .up before the .avi. It will then make sure the unpack worked without error, and delete the original, if you don’t want it to delete the file put a <strong># </strong>in front of the line <font color="#0000ff">del $file</font> this will then just echo the file’s name out to the screen that would have been deleted.</p>
<p>Yes I know the code is a little clunky, and this version only does one folder at a time, I do have a version that will traverse the tree, and will post it if anyone wants it.</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:fb3a1972-4489-4e52-abe7-25a00bb07fdf:144b490c-4b25-4b4a-842b-b558ddcac376" class="wlWriterEditableSmartContent">
<p>MPEG4ModifierCL <a href="http://www.nakedcleaner.com/wp-content/uploads/PackedBitstreaminWin7_10747/MPEG4ModifierCL.zip" target="_blank">Download</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.nakedcleaner.com/2008/11/06/packed-bitstream-in-win7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XBAP and 3D</title>
		<link>http://www.nakedcleaner.com/2007/04/08/xbap-and-3d/</link>
		<comments>http://www.nakedcleaner.com/2007/04/08/xbap-and-3d/#comments</comments>
		<pubDate>Sun, 08 Apr 2007 10:02:59 +0000</pubDate>
		<dc:creator>Ashleigh</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[PC]]></category>

		<guid isPermaLink="false">http://www.nakedcleaner.com/2007/04/08/xbap-and-3d/</guid>
		<description><![CDATA[One of my mates has been playing about with XBAP, Pop Along and have a play.
]]></description>
			<content:encoded><![CDATA[<p>One of my mates has been playing about with XBAP, <a href="http://chriscavanagh.wordpress.com/2007/04/08/3d-physics-xbap/">Pop Along</a> and have a play.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nakedcleaner.com/2007/04/08/xbap-and-3d/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>FSMO Roles and moving them</title>
		<link>http://www.nakedcleaner.com/2007/03/11/fsmo-roles-and-moving-them/</link>
		<comments>http://www.nakedcleaner.com/2007/03/11/fsmo-roles-and-moving-them/#comments</comments>
		<pubDate>Sun, 11 Mar 2007 17:08:45 +0000</pubDate>
		<dc:creator>Ashleigh</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.nakedcleaner.com/2007/03/11/fsmo-roles-and-moving-them/</guid>
		<description><![CDATA[I wrote last week about my move from Exchange 2003 to Exchange 2007, and in that article I mentioned that I moved my Domain Controller over at the same time.
There has been questions about what and how, so I&#8217;ve knocked this together for anyone that needs to do likewise.
In this scenario we have our old [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote last week about my move from Exchange 2003 to Exchange 2007, and in that article I mentioned that I moved my Domain Controller over at the same time.</p>
<p>There has been questions about what and how, so I&#8217;ve knocked this together for anyone that needs to do likewise.</p>
<p>In this scenario we have our old server, and we have our new freshly Server 2003&#8242;d server, OLD and NEW.</p>
<ul>
<li>Install DNS on the NEW server, however do not configure it. To do this just add the DNS role through Add Remove programs. You may also need WINS if you use legacy OS&#8217;s. </li>
<li>Configure the NEW server&#8217;s network with a static IP, and the primary DNS should point to the OLD server for DNS, with itself as a secondary. </li>
<li>Join the domain on the new server (through computer properties) and reboot. </li>
<li>DCPromo the server upto a DC, you should join this server as &#8216;Additional Domain Controller for an Existing Domain&#8217;. This will automatically configure the DNS to replicate the DNS of the domain. Use the defaults for all the settings, unless you have a good reason not to. Make sure you remember the recovery password that you enter.</li>
</ul>
<p>Write after a reboot at this point you will have two DC servers on your LAN (NEW and OLD), the problem is however that OLD will still be the FSMO master for all the roles in the domain, seeming as we are decommissioning this box we need to move all the roles.</p>
<ul>
<li>First off we need to make the NEW server a Global Catalogue server, to do this launch &#8216;Active Directory Sites and Services&#8217;, now expand your site, then expand servers, select the NEW server, then right click and properties of NTDS Settings (on the right pain). Select the &#8216;Global Catalogue check box, now ok out of this screen. </li>
<li>Now change the properties of the NEW server network to point to itself for DNS as primary and the OLD server as secondary.</li>
</ul>
<p>Now that the server is a GC server we can assign it FSMO Roles, lets do that.</p>
<ul>
<li>Launch the &#8216;Active Directory Users and Computers&#8217; from Admin tools. </li>
<li>Select the Domain and right click, select &#8216;connect to domain controller&#8217;, select NEW then ok. </li>
<li>Right click the Domain, select &#8216;Operations Masters&#8217;. </li>
<li>You should now see a screen with three tabs, Select the change button on each tab to migrate that role to the connected server. </li>
<li>Domain Naming Master must now be transferred. Launch the &#8216;Active Directory Domains and Trusts&#8217; tool from Admin Tools. </li>
<li>Right click the root level, and select the &#8216;Connect to Domain Controller and select the NEW server. </li>
<li>Right click the root level, and select &#8216;Operations Master&#8217; then Change. This should move the Ops Master role over to NEW.</li>
</ul>
<p>The last couple of roles can either be done through script (as can all of the above), or with an &#8216;unsupported but shipped&#8217; tool. We will use the later as it&#8217;s easiest to describe without going into how to use the NTDSUTIL.EXE tool.</p>
<ul>
<li>First register the Schema Management tool by typing <strong>regsvr32 schmmgmt.dll </strong>into the run box on the server. </li>
<li>Now run MMC and add the Active Directory Schema snapin to it. </li>
<li>Right click the Domain name, and select &#8216;Change Domain Controller, select NEW server. </li>
<li>Right click the Domain name, and select &#8216;Schema Master&#8217;, then change. </li>
<li>Now we need to change the Site Licensing Server, to do this open &#8216;Active Directory Sites and Services&#8217;, now select Sites, then your domain, then on the right pain right click &#8216;Licensing Site Settings&#8217; and then Change on the Licensing Computer area.</li>
</ul>
<p>Ok nearly done now. Reboot the NEW server, and wait, what we are looking for is an event type of 1869 (or 1119, but we should get an 1869) to show up in the NEW servers Directory Service log. Whatever you do don&#8217;t shutdown the OLD server until you get this, else nobody will be able to logon, as we will not have a GC server on the lan.</p>
<p>When we get that Event happen, we can remove the Global Catalog role from the OLD server, this is done in the same way as we added it to NEW earlier.</p>
<p>Now we do some checks and force the PDC role over, and for this we will use NTDSUTIL.</p>
<ul>
<li>Launch a command prompt </li>
<li>type NTDSUTIL </li>
<li>You should see <strong>ntdsutil: </strong>at the prompt. Here we type Roles and press enter </li>
<li><strong>fsmo maintenance: </strong>connections and enter </li>
<li><strong>server connections: </strong>connect to server NEW (or servername here) and enter </li>
<li><strong>Connected to&nbsp;NEW using credentials of locally logged on user.<br />
    server connections: </strong>CTRL-Z and enter </li>
<li><strong>fsmo maintenance: </strong>Seize PDC </li>
<li>This should result in the server attempting a nice transfer of the role (which should already be on the NEW server). The results will also tell you about the other roles. If any of the roles are still on the OLD server, then type the appropriate command from below to seize the role on the NEW server.
<p>    Seize infrastructure master<br />
    Seize domain naming master<br />
    Seize RID master<br />
    Seize schema master<br />
    Select operation target</li>
</ul>
<p>That should be it. You can now DCPromo out the OLD server, and use the new server as if the OLD one did not exist.</p>
<p>The only things left that may need to do are, setup the helper addresses in DNS so the server can lookup Internet DNS names. Setup your DHCP Scope and options.</p>
<p>If there is anything that I have missed, then please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nakedcleaner.com/2007/03/11/fsmo-roles-and-moving-them/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Vista Trial Time extension</title>
		<link>http://www.nakedcleaner.com/2007/02/01/vista-trial-time-extension/</link>
		<comments>http://www.nakedcleaner.com/2007/02/01/vista-trial-time-extension/#comments</comments>
		<pubDate>Thu, 01 Feb 2007 13:26:27 +0000</pubDate>
		<dc:creator>Ashleigh</dc:creator>
				<category><![CDATA[PC]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://www.nakedcleaner.com/2007/02/01/vista-trial-time-extension/</guid>
		<description><![CDATA[Just noticed that Coding Horror has a way of extending the 30 day trial for Vista to 120 days, and what&#39;s better is that it&#39;s an officialy supported Microsoft way of doing it.
Fire Up a command prompt as an administrator Type slmgr -rearm into the command line

Voila another 30 days on your trial, and you [...]]]></description>
			<content:encoded><![CDATA[<p>Just noticed that <a href="http://www.codinghorror.com/blog/archives/000778.html" target="_blank">Coding Horror</a> has a way of extending the 30 day trial for Vista to 120 days, and what&#39;s better is that it&#39;s an officialy supported Microsoft way of doing it.</p>
<blockquote><p>Fire Up a command prompt as an administrator<br /> Type <strong>slmgr -rearm </strong>into the command line</p>
</blockquote>
<p>Voila another 30 days on your trial, and you can do it 3 times, so 120 days trial.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nakedcleaner.com/2007/02/01/vista-trial-time-extension/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Vista Ultimate Extra&#8217;s</title>
		<link>http://www.nakedcleaner.com/2007/01/29/vista-ultimate-extras/</link>
		<comments>http://www.nakedcleaner.com/2007/01/29/vista-ultimate-extras/#comments</comments>
		<pubDate>Mon, 29 Jan 2007 23:30:35 +0000</pubDate>
		<dc:creator>Ashleigh</dc:creator>
				<category><![CDATA[PC]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://www.nakedcleaner.com/2007/01/29/vista-ultimate-extras/</guid>
		<description><![CDATA[Just thought I would mention that the first Official Ultimate Extras have hit the net. Fire up your Windows Update and download Texas Holdem Pocker and the Bitlocker Extensions. There is also a bunch of recomended Windows Updates as well.
Just rebooting now, will let you know what there like on the other side.
]]></description>
			<content:encoded><![CDATA[<p>Just thought I would mention that the first Official Ultimate Extras have hit the net. Fire up your Windows Update and download Texas Holdem Pocker and the Bitlocker Extensions. There is also a bunch of recomended Windows Updates as well.</p>
<p>Just rebooting now, will let you know what there like on the other side.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nakedcleaner.com/2007/01/29/vista-ultimate-extras/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Intel 2915ABG</title>
		<link>http://www.nakedcleaner.com/2007/01/29/intel-2915abg/</link>
		<comments>http://www.nakedcleaner.com/2007/01/29/intel-2915abg/#comments</comments>
		<pubDate>Mon, 29 Jan 2007 03:39:09 +0000</pubDate>
		<dc:creator>Ashleigh</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[2915ABG]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[dropouts]]></category>
		<category><![CDATA[ICMP]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[Issues]]></category>

		<guid isPermaLink="false">http://www.nakedcleaner.com/2007/01/29/intel-2915abg/</guid>
		<description><![CDATA[I&#39;ve recently done a rebuild of my IBM T43 Laptop and bumped into an issue.
The Intel 2915ABG network card that&#39;s in the device has a load of issues. It seems to be a driver incompatibility between a good number of wireless routers and the drivers. That said I KNOW there are some drivers arounf that [...]]]></description>
			<content:encoded><![CDATA[<p>I&#39;ve recently done a rebuild of my IBM T43 Laptop and bumped into an issue.</p>
<p>The Intel 2915ABG network card that&#39;s in the device has a load of issues. It seems to be a driver incompatibility between a good number of wireless routers and the drivers. That said I KNOW there are some drivers arounf that worked, I know because they did before a rebuild.</p>
<p>I unfortunatly forgot to write down the version that I was using (mistake). So does anyone know what drivers / settings (I know to turn the advanced power off) that work with this family of card.</p>
<p>If so let me know. I&#39;m OK to surf, because all traffic on the inside of my LAN works just fine (so connection to my proxy works just fine), it&#39;s only Internet traffic that&#39;s an issue. Very odd.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nakedcleaner.com/2007/01/29/intel-2915abg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snort 2.7 Beta out</title>
		<link>http://www.nakedcleaner.com/2007/01/26/snort-27-beta-out/</link>
		<comments>http://www.nakedcleaner.com/2007/01/26/snort-27-beta-out/#comments</comments>
		<pubDate>Fri, 26 Jan 2007 22:39:32 +0000</pubDate>
		<dc:creator>Ashleigh</dc:creator>
				<category><![CDATA[PC]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Beta]]></category>
		<category><![CDATA[Intrusion-Detection]]></category>
		<category><![CDATA[Snort]]></category>

		<guid isPermaLink="false">http://www.nakedcleaner.com/2007/01/26/snort-27-beta-out/</guid>
		<description><![CDATA[Pop along to the Snort Site&#160;for the downloads.
I would not recomend installing this as your live version, but advise you to give it a go.
New additions in this version :-

Target-based stream reassembly, including handling of TCP data overlaps and anomalous TCP header flags on a per-destination basis. 11 different target-based policies are supported. See README.stream5 [...]]]></description>
			<content:encoded><![CDATA[<p>Pop along to the <a href="http://www.snort.org/pub-bin/snortnews.cgi#596" target="_blank">Snort Site</a>&nbsp;for the downloads.</p>
<p>I would not recomend installing this as your live version, but advise you to give it a go.</p>
<p>New additions in this version :-</p>
<ul>
<li>Target-based stream reassembly, including handling of TCP data overlaps and anomalous TCP header flags on a per-destination basis. 11 different target-based policies are supported. See README.stream5 for specific configuration options for operating system targets.</li>
<li>UDP session tracking</li>
<li>Option to emulate Stream4 flushing behaviour</li>
<li>Stream5 replaces BOTH Stream4 Flow &#8212; should disable both of these when Stream5 is enabled.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.nakedcleaner.com/2007/01/26/snort-27-beta-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>T-Mobile Hotspots Free to Vista users</title>
		<link>http://www.nakedcleaner.com/2007/01/26/t-mobile-hotspots-free-to-vista-users/</link>
		<comments>http://www.nakedcleaner.com/2007/01/26/t-mobile-hotspots-free-to-vista-users/#comments</comments>
		<pubDate>Fri, 26 Jan 2007 22:35:35 +0000</pubDate>
		<dc:creator>Ashleigh</dc:creator>
				<category><![CDATA[PC]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://www.nakedcleaner.com/2007/01/26/t-mobile-hotspots-free-to-vista-users/</guid>
		<description><![CDATA[However only in the USA and Canada. Bad news for us Brits.
Oh well, BetaNews&#160;reports that T-Mobile hotspots all over the country will allow Vista users to log on for free from the 26th January, and will work for 90 days after Vista&#39;s launch.
Have fun ya&#39;all.
]]></description>
			<content:encoded><![CDATA[<p>However only in the USA and Canada. Bad news for us Brits.</p>
<p>Oh well, <a href="http://www.betanews.com/article/Free_TMobile_Hotspot_for_Vista_Users/1169666834" target="_blank">BetaNews</a>&nbsp;reports that T-Mobile hotspots all over the country will allow Vista users to log on for free from the 26th January, and will work for 90 days after Vista&#39;s launch.</p>
<p>Have fun ya&#39;all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nakedcleaner.com/2007/01/26/t-mobile-hotspots-free-to-vista-users/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BlueRay Decrypter</title>
		<link>http://www.nakedcleaner.com/2007/01/22/blueray-decrypter/</link>
		<comments>http://www.nakedcleaner.com/2007/01/22/blueray-decrypter/#comments</comments>
		<pubDate>Mon, 22 Jan 2007 01:56:17 +0000</pubDate>
		<dc:creator>Ashleigh</dc:creator>
				<category><![CDATA[PC]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[BackupBluRayV001]]></category>
		<category><![CDATA[BluRay-Cracked]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[DRM]]></category>
		<category><![CDATA[Muslix64]]></category>

		<guid isPermaLink="false">http://www.nakedcleaner.com/2007/01/22/blueray-decrypter/</guid>
		<description><![CDATA[muslix64 has done it again. There is now a BluRay decrypter available for anyone that wants to remove the DRM from their BR disk.
This is an early version and has the bellow limitations :

Don&#39;t support BD+
Don&#39;t support Volume unique key
Only support one CPS unit key per disc
I don&#39;t clear the HDMV_copy_control_descriptor in the stream
Don&#39;t have [...]]]></description>
			<content:encoded><![CDATA[<p>muslix64 has done it again. There is now a BluRay decrypter available for anyone that wants to remove the DRM from their BR disk.</p>
<p>This is an early version and has the bellow limitations :</p>
<ul>
<li>Don&#39;t support BD+</li>
<li>Don&#39;t support Volume unique key</li>
<li>Only support one CPS unit key per disc</li>
<li>I don&#39;t clear the HDMV_copy_control_descriptor in the stream</li>
<li>Don&#39;t have any FAQ or document so far&#8230;</li>
<li>You have to provide your own CPS unit key</li>
<li>The playback seems to work with VideoLan</li>
</ul>
<p>However it works, so get yourself a copy. <a href="http://www.nakedcleaner.com/wp-content/uploads/2007/01/backupblurayv001.zip" title="BackupBluRayV001">BackupBluRayV001</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.nakedcleaner.com/2007/01/22/blueray-decrypter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Media Center and US Content</title>
		<link>http://www.nakedcleaner.com/2007/01/21/media-center-and-us-content/</link>
		<comments>http://www.nakedcleaner.com/2007/01/21/media-center-and-us-content/#comments</comments>
		<pubDate>Sun, 21 Jan 2007 04:18:57 +0000</pubDate>
		<dc:creator>Ashleigh</dc:creator>
				<category><![CDATA[Media Center]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[American]]></category>

		<guid isPermaLink="false">http://www.nakedcleaner.com/2007/01/21/media-center-and-us-content/</guid>
		<description><![CDATA[A couple of people at work have asked me how to get some of the US only features working on Vista Media Center.
I have not put it off for any particular reason, It&#39;s just I forgot to do it.
Anyhow, it&#39;s easy! Copy the registry file content below into notepad and save it out into a [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of people at work have asked me how to get some of the US only features working on Vista Media Center.</p>
<p>I have not put it off for any particular reason, It&#39;s just I forgot to do it.</p>
<p>Anyhow, it&#39;s easy! Copy the registry file content below into notepad and save it out into a .reg file.</p>
<p><em>Windows Registry Editor Version 5.00</em></p>
<p><em>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layouts\00000409]<br /> &quot;Layout File&quot;=&quot;KBDUK.DLL&quot;<br /> &quot;Layout Text&quot;=&quot;United Kingdom&quot;</em></p>
<p><em>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout\DosKeybCodes]<br /> &quot;00000409&quot;=&quot;uk&quot;</em></p>
<p><em>[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Media Center\Settings\MCE.GlobalSettings]<br /> &quot;systemGeoISO2&quot;=&quot;US&quot;</em></p>
<p>Yeah I know it looks like this will set your keyboard into US, it does but we swap the location over so that the US is actualy UK.</p>
<p>You can do this for any country by changing the DLL etc over to your keyboard.</p>
<p>Oh, nearly forgot, make sure you do a Guide Update after doing this (Tasks/Settings/TV/Guide/Get Latest Guide Listings)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nakedcleaner.com/2007/01/21/media-center-and-us-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
