<?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>Ugh!!'s Greymatter Honeypot &#187; Vista</title>
	<atom:link href="http://www.u-g-h.com/tag/vista/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.u-g-h.com</link>
	<description>Distracting the Mind with Information Overload</description>
	<lastBuildDate>Wed, 08 Feb 2012 23:39:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Running Virtual Server 2005 on Vista</title>
		<link>http://www.u-g-h.com/2008/01/05/running-virtual-server-2005-on-vista/</link>
		<comments>http://www.u-g-h.com/2008/01/05/running-virtual-server-2005-on-vista/#comments</comments>
		<pubDate>Sat, 05 Jan 2008 22:20:28 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[virtual-server]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[walkthrough]]></category>

		<guid isPermaLink="false">http://www.u-g-h.com/index.php/2008/01/05/running-virtual-server-2005-on-vista/</guid>
		<description><![CDATA[I&#8217;ve just spent the evening struggling trying to get Virtual Server running on Vista. How hard can it be, you ask? It&#8217;s a Microsoft application to be installed on a Microsoft OS, right? Well, Vista has been very much engineered to &#8220;protect&#8221; the user, so basically some components you need aren&#8217;t installed, the default installation [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just spent the evening struggling trying to get <a  href="http://www.microsoft.com/windowsserversystem/virtualserver/">Virtual Server</a> running on Vista. How hard can it be, you ask? It&#8217;s a Microsoft application to be installed on a Microsoft OS, right? Well, Vista has been very much engineered to &#8220;protect&#8221; the user, so basically some components you need aren&#8217;t installed, the default installation for these components doesn&#8217;t have the right settings you need, you need to explicitly set up permissions for the app to run, and finally, if you don&#8217;t run the client as an Administrator, you won&#8217;t be able to get it working.</p>
<p>So here&#8217;s how to do it:</p>
<p><strong>Step 1</strong>: Install IIS. By default Vista doesn&#8217;t install Internet Information Server (IIS), even if you are running the Professional edition. Adding it is pretty simple, go to Control Panel and choose the option to &#8220;Turn Windows features On or Off&#8221;. Now, if you just turn IIS on, the default options don&#8217;t have all the features you need to run VS2005. The options I turned on are as follows (there may be a couple of extra ones, but it took some trial and error to get this right):</p>
<p><code>-&gt; Web Management Tools<br />
--&gt; IIS 6 Management Compatibility<br />
---&gt;IIS Metabase and IIS 6 configuration compatibility (not sure if you really need this one)<br />
--&gt;IIS Management Console<br />
-&gt;World Wide Web Services<br />
--&gt;Application Development Features<br />
---&gt;CGI<br />
---&gt;ISAPI Extensions<br />
--&gt;Common Http Features<br />
---&gt;Default Document<br />
---&gt;Directory Browsing<br />
---&gt;HTTP Errors<br />
---&gt;Static Content<br />
--&gt;Health and Diagnostics<br />
---&gt;HTTP Logging<br />
---&gt;Request Monitor<br />
--&gt;Performance Features<br />
---&gt;Static Content Compression<br />
--&gt;Security<br />
---&gt;Windows Authentication (this is the important one)<br />
</code></p>
<p>Simple enough when you know which options to pick.</p>
<p><strong>Step 2</strong>: Install VS2005.  Before you install IIS, VS2005 won&#8217;t install properly. Well, you can install bits of it, but without the web console you won&#8217;t be able to create new VMs (which is all I really wanted to do). Anyway, one IIS is installed with the settings above, VS2005 will install successfully.</p>
<p><strong>Step 3</strong>: Add more settings to IIS. If you thought you had your installation all sown up, you&#8217;re wrong. If you try running the administration console you&#8217;ll get the following error:</p>
<p><a  href="http://www.u-g-h.com/wp-content/uploads/2008/01/servererror.JPG" title="servererror.JPG" class="thickbox no_icon" rel="gallery-586"><img src="http://www.u-g-h.com/wp-content/uploads/2008/01/servererror.thumbnail.JPG" title="servererror.JPG" alt="servererror.JPG" align="left" /></a> Basically, the HTTP Error 404.2 is just IIS telling you that the page you are requesting cannot be served because of the ISAPI and CGI  Restriction list settings on the Web server. Running executables in IIS can give rise to quite a few nasty situations, so by default IIS won&#8217;t do it. You can change this configuration by going to the IIS administration console and in the Feature View for the root level there&#8217;s an option to modify ISAPI and CGI restrictions. I tried to add in the VS2005 executable, but just couldn&#8217;t get it to work. The only thing that worked was to choose &#8220;Edit Feature Settings&#8221; and Allow unspecified CGI and ISAPI modules. Now, if you&#8217;re just messing around, this is fine, but you need to realise that you&#8217;re blowing an enormous hole in IIS&#8217; security like this. It&#8217;s fine if you&#8217;re just on a development machine, but you shouldn&#8217;t do this on a production box. But then .. you wouldn&#8217;t be using Vista there, would you &#8230;</p>
<p><strong>Step 4</strong>: We&#8217;re almost there. The only thing you need to do now is rung the Virtual Server Administration website. BUT, it won&#8217;t run correctly unless you first run your browser as an Administrator. Now you know</p>
<p>Anyway, I hope the short walkthrough will save you some time in the long run. It was a pretty informative experience.</p>
<p><a  class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.u-g-h.com%2F2008%2F01%2F05%2Frunning-virtual-server-2005-on-vista%2F&#038;title=Running%20Virtual%20Server%202005%20on%20Vista" id="wpa2a_2"><img src="http://www.u-g-h.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.u-g-h.com/2008/01/05/running-virtual-server-2005-on-vista/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Vista revitalised</title>
		<link>http://www.u-g-h.com/2007/08/07/vista-revitalised/</link>
		<comments>http://www.u-g-h.com/2007/08/07/vista-revitalised/#comments</comments>
		<pubDate>Tue, 07 Aug 2007 22:40:09 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[SP1]]></category>
		<category><![CDATA[updates]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://www.u-g-h.com/index.php/2007/08/07/vista-revitalised/</guid>
		<description><![CDATA[I found a post on Techmeme that mentioned that there was an update out for Vista to deal with some performance and reliability issues. I downloaded it, installed it and my computer feels visably quicker. I don&#8217;t know if there&#8217;s a physiological element here; whether knowing that I&#8217;ve installed a performance update makes my computer [...]]]></description>
			<content:encoded><![CDATA[<p>I found a <a  href="http://www.techmeme.com/070807/p109#a070807p109">post on Techmeme</a> that mentioned that there was an update out for Vista to deal with some <a  href="http://support.microsoft.com/?kbid=938979">performance and reliability issues</a>. I downloaded it, installed it and my computer feels visably quicker. I don&#8217;t know if there&#8217;s a physiological element here; whether knowing that I&#8217;ve installed a <a  href="http://www.windowsconnected.com/blogs/joshs_blog/archive/2007/08/07/windows-vista-performance-reliability-updates-ship.aspx">performance update</a> makes my computer feel quicker but here&#8217;s a list of issues that this <a  href="http://www.windowsconnected.com/blogs/joshs_blog/archive/2007/08/07/windows-vista-performance-reliability-updates-ship.aspx">fixes</a>:</p>
<table class="list ul">
<tr>
<td class="bullet">•</td>
<td class="text">You  experience a long delay when you try to exit the Photos screen saver.</td>
</tr>
<tr>
<td class="bullet">•</td>
<td class="text">A memory leak occurs when you use the Windows Energy screen saver.</td>
</tr>
<tr>
<td class="bullet">•</td>
<td class="text">If User Account Control is disabled on the computer, you cannot install a network printer successfully. This problem occurs if the network printer is hosted by a Windows XP-based or a Windows Server 2003-based computer.</td>
</tr>
<tr>
<td class="bullet">•</td>
<td class="text">When you write data to an AVI file by using the <strong>AVIStreamWrite</strong> function, the file header of the AVI file is corrupted.</td>
</tr>
<tr>
<td class="bullet">•</td>
<td class="text">When you copy or move a large file, the &#8220;estimated time remaining&#8221; takes a long time to be calculated and displayed.</td>
</tr>
<tr>
<td class="bullet">•</td>
<td class="text">After you resume the computer from hibernation, it takes a long time to display the logon screen.</td>
</tr>
<tr>
<td class="bullet">•</td>
<td class="text">When you synchronize an offline file to a server, the offline file is  corrupted.</td>
</tr>
<tr>
<td class="bullet">•</td>
<td class="text">If you edit an image file that uses the RAW image format, data loss occurs in the image file. This problem occurs if the RAW image is from any of the following digital SLR camera models:</p>
<table class="list ul">
<tr>
<td class="bullet">•</td>
<td class="text">Canon EOS 1D</td>
</tr>
<tr>
<td class="bullet">•</td>
<td class="text">Canon EOS 1DS</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="bullet">•</td>
<td class="text">After you resume  the computer from hibernation, the computer loses its default gateway address.</td>
</tr>
<tr>
<td class="bullet">•</td>
<td class="text">Poor memory management  performance occurs.</td>
</tr>
</table>
<p>Looks pretty stable, you might want to <a  href="http://support.microsoft.com/?kbid=938979">try it out</a>. There&#8217;s speculation around whether this is the <a  href="http://www.windows-now.com/blogs/robert/archive/2007/08/07/windows-vista-pre-sp1-performance-and-reliability-updates-released.aspx">pre-SP1 update</a>.</p>
<p><a  class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.u-g-h.com%2F2007%2F08%2F07%2Fvista-revitalised%2F&#038;title=Vista%20revitalised" id="wpa2a_4"><img src="http://www.u-g-h.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.u-g-h.com/2007/08/07/vista-revitalised/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running the BBC iPlayer on Vista</title>
		<link>http://www.u-g-h.com/2007/08/05/running-the-bbc-iplayer-on-vista/</link>
		<comments>http://www.u-g-h.com/2007/08/05/running-the-bbc-iplayer-on-vista/#comments</comments>
		<pubDate>Sun, 05 Aug 2007 19:07:20 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[iPlayer]]></category>
		<category><![CDATA[streaming-media]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://www.u-g-h.com/index.php/2007/08/05/running-the-bbc-iplayer-on-vista/</guid>
		<description><![CDATA[Well, I&#8217;ve been keeping my eye on the BBC iPlayer project for a few months now. They&#8217;ve been the subject of quite a bit of criticism recently based on the fact that their client runs on Windows XP only, no Mac, no Linux, no Vista. However, this week I came across a thread that implies [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I&#8217;ve been keeping my eye on the <a  href="http://www.theregister.co.uk/2007/06/27/iplayer_launch/">BBC iPlayer</a> project for a few months now. They&#8217;ve been the subject of quite a bit of criticism recently based on the fact that their client runs on Windows XP only, no Mac, no Linux, no Vista. However, this week I came across a thread that implies it runs under Vista without too many problems.</p>
<p style="text-align: center"><a  href="http://www.u-g-h.com/wp-content/uploads/2007/08/iplayerff.JPG" title="iplayerff.JPG" class="thickbox no_icon" rel="gallery-435"><img src="http://www.u-g-h.com/wp-content/uploads/2007/08/iplayerff.thumbnail.JPG" title="iplayerff.JPG" alt="iplayerff.JPG" align="left" /></a></p>
<p>So, I thought I&#8217;d give it a try. I headed down to the website. The first problem was the website detecting that I wasn&#8217;t running IE, or XP, which it was picking up from the <a  href="http://en.wikipedia.org/wiki/User_agent">UserAgent</a> string (the identification attributes that browsers sent to web server to let them know what capabilities they have). The screen shot at the side shows the reported issues with downloading the application.</p>
<p style="text-align: center"><a  href="http://www.u-g-h.com/wp-content/uploads/2007/08/iplayervista.JPG" title="iplayervista.JPG" class="thickbox no_icon" rel="gallery-435"><img src="http://www.u-g-h.com/wp-content/uploads/2007/08/iplayervista.thumbnail.JPG" title="iplayervista.JPG" alt="iplayervista.JPG" align="right" /></a></p>
<p>Luckily, this is quite <a  href="http://www.fiddlertool.com/useragent.aspx">easy to spoof</a>, so I was quickly on my way downloading the package. I was all set to change the compatibility mode of the executables used by the application, but guess what .. it worked first time! (see screenshot)</p>
<p>I&#8217;ll keep you posted if I have any problems!</p>
<p><a  class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.u-g-h.com%2F2007%2F08%2F05%2Frunning-the-bbc-iplayer-on-vista%2F&#038;title=Running%20the%20BBC%20iPlayer%20on%20Vista" id="wpa2a_6"><img src="http://www.u-g-h.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.u-g-h.com/2007/08/05/running-the-bbc-iplayer-on-vista/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google makes Microsoft change Vista</title>
		<link>http://www.u-g-h.com/2007/06/20/google-makes-microsoft-change-vista/</link>
		<comments>http://www.u-g-h.com/2007/06/20/google-makes-microsoft-change-vista/#comments</comments>
		<pubDate>Wed, 20 Jun 2007 19:56:27 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[companies]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://www.u-g-h.com/index.php/2007/06/20/google-makes-microsoft-change-vista/</guid>
		<description><![CDATA[Interesting news today about how Microsoft is having to modify Vista to make it easier for third parties to deploy their own desktop search products on their flagship operating system. This will be part of SP1 for Vista and should be ready to be released through their normal software distribution channels. This change was instigated [...]]]></description>
			<content:encoded><![CDATA[<p>Interesting news today about how <a  href="http://www.reuters.com/article/technology-media-telco-SP/idUSN1920519520070620">Microsoft is having to modify Vista</a> to make it easier for third parties to deploy their own desktop search products on their flagship operating system. This will be part of SP1 for Vista and should be ready to be released through their normal <a  href="http://www.specopssoft.com/products/specopsdeploy/">software distribution</a> channels. This change was instigated by a <a  href="http://blog.outer-court.com/archive/2007-06-20.html#n16">complaint</a> Google made regarding how Microsoft made it very difficult to turn off Vista&#8217;s built in search facility if an alternative search product was installed. This causes a drain on system resources and potential software conflicts.</p>
<p>An interesting idea that <a  href="http://www.marketingpilgrim.com/2007/06/thank-google-for-any-delays-to-microsoft-vista-service-pack-1.html">Marketing Pilgrim put forward</a> is that Microsoft will be dragging it&#8217;s feet on this service pack to try and get as many people hooked on it&#8217;s product set as possible. Originally SP1 was slated to be available later this year, but this announcement pushes it into the beginning of next year. Is Google really to blame? Or is Microsoft simply using this as an excuse to hide slippage on their SP1 release? Interesting .. the games big companies play.</p>
<p><a  class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.u-g-h.com%2F2007%2F06%2F20%2Fgoogle-makes-microsoft-change-vista%2F&#038;title=Google%20makes%20Microsoft%20change%20Vista" id="wpa2a_8"><img src="http://www.u-g-h.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.u-g-h.com/2007/06/20/google-makes-microsoft-change-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vista RC/Beta set to reboot over and over and over &#8230;</title>
		<link>http://www.u-g-h.com/2007/04/25/vista-rcbeta-set-to-reboot-over-and-over-and-over/</link>
		<comments>http://www.u-g-h.com/2007/04/25/vista-rcbeta-set-to-reboot-over-and-over-and-over/#comments</comments>
		<pubDate>Wed, 25 Apr 2007 10:30:48 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[exit-strategy]]></category>
		<category><![CDATA[reboot]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://www.u-g-h.com/index.php/2007/04/25/vista-rcbeta-set-to-reboot-over-and-over-and-over/</guid>
		<description><![CDATA[Here&#8217;s a novel way to stop people using your beta software. Windows Vista betas and Release Candidates are set to expire at the end of this month and in order to stop people using these versions the software is set to reboot without warning after two hours of use. No opportunity to save your data, [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a novel way to stop people using your beta software. <a  href="http://windowsvistablog.com/blogs/windowsvista/archive/2007/04/24/windows-vista-beta-2-rc1-and-rc2-set-to-expire.aspx">Windows Vista betas and Release Candidates are set to expire </a>at the end of this month and in order to stop people using these versions the software is set to reboot <strong>without warning</strong> after two hours of use. No opportunity to save your data, no prior warning, just reboot your box.</p>
<p>I think it&#8217;s a great idea. It lets you use the OS for a restricted time, so you can still get your data off or run an upgrade if you need, but reduces the utility of the OS for any real jobs. Rebooting without warning may seem a bit mean, but users will be warned they are running an expired OS from a couple of weeks beforehand. The 2-hour window will continue for a couple of months after which those versions will be locked forever and just won&#8217;t work.</p>
<p>Quite a graceful exit path, I must say.</p>
<p><a  class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.u-g-h.com%2F2007%2F04%2F25%2Fvista-rcbeta-set-to-reboot-over-and-over-and-over%2F&#038;title=Vista%20RC%2FBeta%20set%20to%20reboot%20over%20and%20over%20and%20over%20%26%238230%3B" id="wpa2a_10"><img src="http://www.u-g-h.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.u-g-h.com/2007/04/25/vista-rcbeta-set-to-reboot-over-and-over-and-over/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Getting Vista to speak to NAS devices</title>
		<link>http://www.u-g-h.com/2007/02/23/getting-vista-to-speak-to-nas-devices/</link>
		<comments>http://www.u-g-h.com/2007/02/23/getting-vista-to-speak-to-nas-devices/#comments</comments>
		<pubDate>Fri, 23 Feb 2007 22:01:03 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://www.u-g-h.com/index.php/2007/02/23/getting-vista-to-speak-to-nas-devices/</guid>
		<description><![CDATA[Andy has a great post that describes a solution to a problem he had. Basically, when Vista tries to access a shared folder on a remote computer or device, it will refuse to send your password using older encryptions methods. The problem stems from the fact that older devices do not understand newer encryption method; [...]]]></description>
			<content:encoded><![CDATA[<p>Andy has a <a  href="http://geekswithblogs.net/ajames/archive/2007/02/23/107131.aspx">great post</a> that describes a solution to a problem he had. Basically, when Vista tries to access a shared folder on a remote computer or device, it will refuse to send your password using older encryptions methods. The problem stems from the fact that older devices do not understand newer encryption method; so there&#8217;s your problem.</p>
<p>He describes how to solve the problem for both Home and Business/Enterprise/Ultimate editions. Didn&#8217;t realise that you&#8217;d need two different ways to do it. I suppose the Home edition comes without the admin tools you need to do things easily.</p>
<p><a  class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.u-g-h.com%2F2007%2F02%2F23%2Fgetting-vista-to-speak-to-nas-devices%2F&#038;title=Getting%20Vista%20to%20speak%20to%20NAS%20devices" id="wpa2a_12"><img src="http://www.u-g-h.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.u-g-h.com/2007/02/23/getting-vista-to-speak-to-nas-devices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All the Vista gadgets you can eat</title>
		<link>http://www.u-g-h.com/2007/02/17/all-the-vista-gadgets-you-can-eat/</link>
		<comments>http://www.u-g-h.com/2007/02/17/all-the-vista-gadgets-you-can-eat/#comments</comments>
		<pubDate>Sat, 17 Feb 2007 17:17:12 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://www.u-g-h.com/index.php/2007/02/17/all-the-vista-gadgets-you-can-eat/</guid>
		<description><![CDATA[One of the nice touches in Vista is the gadget bar on the screen (yes, I know, it&#8217;s not an orginal idea). When I installed Vista I looked around for gadgets and while there are more than there were in December, there still isn&#8217;t a great deal to choose from. Enter Amnesty Generator. This little [...]]]></description>
			<content:encoded><![CDATA[<p>One of the nice touches in Vista is the gadget bar on the screen (yes, I know, it&#8217;s not an orginal idea). When I installed Vista I looked around for gadgets and while there are more than there were in December, there still isn&#8217;t a great deal to choose from.</p>
<p>Enter <a  href="http://amnesty.mesadynamics.com/GeneratorWin.html">Amnesty Generator</a>. This little piece of freeware lets you use Gadgets from other sources on your Vista gadgetbar. Now you can place Google gadgets, Grazr RSS readers, YouTube videos and more onto your Sidebar. </p>
<p>I&#8217;ll give it a whirl and report back. Should be fun</p>
<p><a  class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.u-g-h.com%2F2007%2F02%2F17%2Fall-the-vista-gadgets-you-can-eat%2F&#038;title=All%20the%20Vista%20gadgets%20you%20can%20eat" id="wpa2a_14"><img src="http://www.u-g-h.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.u-g-h.com/2007/02/17/all-the-vista-gadgets-you-can-eat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shape of things to come</title>
		<link>http://www.u-g-h.com/2007/01/14/43/</link>
		<comments>http://www.u-g-h.com/2007/01/14/43/#comments</comments>
		<pubDate>Sun, 14 Jan 2007 12:07:07 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[CES-2007]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://www.u-g-h.com/?p=43</guid>
		<description><![CDATA[Get post on Sean Alexander&#8217;s blog which containted a video shown at CES 2007 during Bill Gate&#8217;s speech. Watch here: It contains a vision of PC that will be avialable this year sporting Vista as the OS they ship with. There&#8217;s some nice designs in there. Wish I had all those to play with]]></description>
			<content:encoded><![CDATA[<p>Get post on <a  href="http://www.seanalexander.com/2007/01/13/ExclusiveCESVistaPCQuotSizzlequotVideo.aspx">Sean Alexander&#8217;s blog</a> which containted a video shown at CES 2007 during Bill Gate&#8217;s speech. Watch here:</p>
<p><div align="center"><embed pluginspage="http://macromedia.com/go/getflashplayer" src="http://images.soapbox.msn.com/flash/soapbox1_1.swf" width="412" height="362" type="application/x-shockwave-flash" flashvars="c=v&amp;v=bea35a37-db41-4f25-86d2-efdc14c04b33" wmode="transparent" quality="high"></embed></div>
</p>
<p>
It contains a vision of PC that will be avialable this year sporting Vista as the OS they ship with. There&#8217;s some nice designs in there. Wish I had all those to play with <img src='http://www.u-g-h.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
<p><a  class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.u-g-h.com%2F2007%2F01%2F14%2F43%2F&#038;title=Shape%20of%20things%20to%20come" id="wpa2a_16"><img src="http://www.u-g-h.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.u-g-h.com/2007/01/14/43/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Venice Project Beta-Test &#8211; Take 2</title>
		<link>http://www.u-g-h.com/2007/01/09/the-venice-project-beta-test-take-2/</link>
		<comments>http://www.u-g-h.com/2007/01/09/the-venice-project-beta-test-take-2/#comments</comments>
		<pubDate>Tue, 09 Jan 2007 09:58:25 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[application-compatibility]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[P2P]]></category>
		<category><![CDATA[The-Venice-Project]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://www.u-g-h.com/?p=21</guid>
		<description><![CDATA[So, last night I tried to the The Venice Project Beta to work, but ran into a Vista-related issue (software conflict). It was stuck in my mind, so this morning I woke up early to figure out what the problem was before I went to work. So, first of all, what is the AppPatch folder [...]]]></description>
			<content:encoded><![CDATA[<p><a  href="http://www.u-g-h.com/wp-content/uploads/2007/01/WindowsLiveWriter/TheVeniceProjectBetaTestTake2_8BEE/theveniceproject%5B1%5D%5B6%5D.gif" class="thickbox no_icon" rel="gallery-21"><img width="240" height="123" border="0" align="right" src="http://www.u-g-h.com/wp-content/uploads/2007/01/WindowsLiveWriter/TheVeniceProjectBetaTestTake2_8BEE/theveniceproject%5B1%5D_thumb%5B4%5D.gif" /></a> So, last night I tried to the The Venice Project Beta to work, but ran into a Vista-related issue (<a  href="http://www.u-g-h.com/?p=19">software conflict</a>). It was stuck in my mind, so this morning I woke up early to figure out what the problem was before I went to work.</p>
<p>So, first of all, what is the AppPatch folder that Vista uses.  Well, it&#8217;s a folder where Windows stores a database of known DLL issues and their fixes. Here&#8217;s the <a  href="http://www.microsoft.com/technet/desktopdeployment/bdd/2007/AppCompact_2.mspx">official word</a> on how Vista deals with Application Compatability:</p>
<blockquote><p>Windows XP, Windows Vista, and Windows Server 2003 resolve application compatibility problems by dynamically matching application problems with solutions. The matching mechanism is controlled by a dynamic-link library (DLL) that starts and runs the matching mechanism whenever a user installs or runs an application. However, the matching mechanism is transparent and does not significantly affect the performance of the operating system or installed applications.</p>
<p>The matching mechanism relies on several database files to match problems with solutions. The database files contain a list of applications that have known problems and instructions for resolving those problems. The database files are saved in the \systemroot\AppPatch folder in Windows XP, Windows Vista, and Windows Server 2003.</p></blockquote>
<p>Okay, useful but I was no closer to getting the package running. Digging through Google a bit more I found 2 ways to deal with the problem:</p>
<p>The better solution:</p>
<ol>
<li>Find the C:\Windows\AppPatch\AcGenral.dll file.</li>
<li>You need to have Administrator permission, AND do this first to claim your right back in Vista to modify the file&#8230;<br />
Right click on file Properties&gt;Security&gt;Advanced&gt;Owner&gt;Edit..&gt;Other users..&gt;Advanced..&gt;Find Now&gt;<br />
YOUR_ADMINISTOR_USER_ACCOUNT&gt;OK&gt; ok to all boxes.</li>
<li>Now rename this files to something as &#8220;1AcGenral.dll&#8221;.</li>
</ol>
<p>The quick and dirty solution:</p>
<ol>
<li>Rename \windows\appPatch to appPatchOLD</li>
</ol>
<p>I tried the quick and dirty solution (knowing full well that this might affect Windows&#8217; ability to automatically resolve application compatibility issues), but I wanted to see if I could get Beta up and running .. and</p>
<p>Voila&#8217; The Venice Project Beta is now running! Have to run to work now, but I&#8217;ll give it a spin tonight and report on whether it&#8217;s any good!</p>
<p><a  class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.u-g-h.com%2F2007%2F01%2F09%2Fthe-venice-project-beta-test-take-2%2F&#038;title=The%20Venice%20Project%20Beta-Test%20%26%238211%3B%20Take%202" id="wpa2a_18"><img src="http://www.u-g-h.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.u-g-h.com/2007/01/09/the-venice-project-beta-test-take-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>3D RSS Reader (Vista)</title>
		<link>http://www.u-g-h.com/2006/12/08/3d-rss-reader-vista/</link>
		<comments>http://www.u-g-h.com/2006/12/08/3d-rss-reader-vista/#comments</comments>
		<pubDate>Fri, 08 Dec 2006 10:03:20 +0000</pubDate>
		<dc:creator>Owen</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[RSS reader]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://www.u-g-h.com/PermaLink,guid,50d74fe1-fcfd-4264-88ec-2950b98a9535.aspx</guid>
		<description><![CDATA[UniveRSS is a application being used as a WPF showcase by Microsoft. It represents your RSS feeds as a uiniverse of rotating cubes, the size highlights the number of unread articles. Comes complete with source code. Unfortunately my Vista box is out of action at the moment, so I can&#8217;t try it out. In practice, [...]]]></description>
			<content:encoded><![CDATA[<p><a  href="http://www.microsoft.com/emea/msdn/thepanel/featured/universs.aspx">UniveRSS</a> is a application being used as a <a  href="http://msdn.microsoft.com/windowsvista/prodinfo/what/about/default.aspx#wpfx">WPF</a> showcase by Microsoft. It represents your RSS feeds as a uiniverse of rotating cubes, the size highlights the number of unread articles. Comes complete with source code.</p>
<p>Unfortunately my Vista box is out of action at the moment, so I can&#8217;t try it out. In practice, I&#8217;m not sure how this will work as busy feeds like Boing Boing or Slashdot will dominate the interface, while personal blogs, which may be more interesting, won&#8217;t be as apparent. The question is to how to address the noise to relevance ratio issue.</p>
<p><a  class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.u-g-h.com%2F2006%2F12%2F08%2F3d-rss-reader-vista%2F&#038;title=3D%20RSS%20Reader%20%28Vista%29" id="wpa2a_20"><img src="http://www.u-g-h.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.u-g-h.com/2006/12/08/3d-rss-reader-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

