<?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>ShaneWelldon.com &#187; Windows</title>
	<atom:link href="http://www.shanewelldon.com/tag/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shanewelldon.com</link>
	<description>Hints and Tips for Obscure Issues</description>
	<lastBuildDate>Fri, 29 May 2009 15:25:38 +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>Apache and IIS7 Together on SBS2008</title>
		<link>http://www.shanewelldon.com/2009/02/04/apache-and-iis7-together-on-sbs2008/</link>
		<comments>http://www.shanewelldon.com/2009/02/04/apache-and-iis7-together-on-sbs2008/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 04:42:08 +0000</pubDate>
		<dc:creator>Shane Welldon</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[SBS2008]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.shanewelldon.com/?p=67</guid>
		<description><![CDATA[A guide to getting Apache running on a Small Business Server 2008 machine alongside IIS 7.]]></description>
			<content:encoded><![CDATA[<p>I’m currently evaluating Small Business Server 2008 on a machine which I also use for testing websites and learning PHP. With such tight integration of IIS7 to run the SBS services of remote access to Exchange email, SharePoint and even just web-based remote access of machine it makes it impossible to simply stop IIS and replace it with Apache. Instead we need to set them both up to run side-by-side.</p>
<p>At first I told Apache to run on a different port but got tired of appending the port number to the URL every time I needed to access it from my PC.</p>
<p>After some more research I found a way of giving the server a second IP address and running IIS7 on one and Apache on the other, both still on port 80. One caveat to this setup is that to keep outside access to Small Business Server’s remote applications is that external SSL connections on port 443 must remain routed to IIS7.</p>
<h2>Add a Second IP Address</h2>
<ol>
<li>Login to your server’s desktop and click Start –&gt; Control Panel then open Network and Sharing Center and click Manage Network Connections under Tasks in the left panel</li>
<li>Right-click the machine’s network adapter and click Properties, clicking Continue on the UAC prompt if enabled</li>
<li>In the list select Internet Protocol Version 4 (TCP/IPv4) and click the Properties button</li>
<li>In the Properties dialog click the Advanced… button down the bottom-right</li>
<li>On the IP Settings tab click the Add… button in the IP addresses grouping</li>
<li>Enter the new IP address of your choice and the required Subnet mask then click Add</li>
<li>You should now have two IP addresses assigned to your machine. Click OK or close all open dialogs and windows</li>
</ol>
<p><a rel="lightbox" href="http://www.shanewelldon.com/wp-content/uploads/2009/02/sbs2008secondipaddressmarked.png"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" title="sbs2008-second-ip-address-marked" src="http://www.shanewelldon.com/wp-content/uploads/2009/02/sbs2008secondipaddressmarked-thumb.png" border="0" alt="sbs2008-second-ip-address-marked" width="403" height="480" /></a></p>
<h2>Bind IIS to a Single IP Address</h2>
<p>By default IIS listens on all IP addresses assigned to the machine. We need to change this and bind it to only one. I chose to keep IIS running on the original IP address (In my case 192.168.1.100) and run Apache on the second one I assigned to it (192.168.1.110).</p>
<ol>
<li>Click Start, type “cmd” in the search box then right-click cmd.exe in the Programs list and choose Run as Administrator. Click Continue on the UAC prompt</li>
<li>In the command prompt type the following:<br />
<code>netsh http show iplisten</code><br />
The list returned should be empty</li>
<li>In the command prompt type:<br />
<code>netsh http add iplisten ipaddress=192.168.1.100</code><br />
Replacing 192.168.1.100 with the existing IP address of your machine</li>
<li>Type out the show command from step 2 a second time and you should see your IP address in the list</li>
<li>Reboot the IIS services by typing the following in your open command prompt<br />
<code>iisreset</code><br />
It will take a few minutes to completely shutdown and restart IIS</li>
<li>Once IIS has reset close the command prompt and test both your IPs in a web browser again, this time IIS should only display on a single IP address</li>
</ol>
<h2>Install and Configure Apache</h2>
<p>For the installation of Apache you’re on your own. You can either install it from scratch or use one of the combined <a href="http://en.wikipedia.org/wiki/Comparison_of_WAMPs">WAMP</a> packages out there. Personally I use <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> as I am quite lazy and no longer have the time to manually install all the required components separately.</p>
<p>Once you have installed Apache, we need to bind it to the second, unused IP address</p>
<ol>
<li>Run notepad as an administrator using the method from step 1 above</li>
<li>In Notepad click File –&gt; Open and navigate to the folder Apache installed in. Within this folder select the ‘conf’ folder then open up the httpd.conf file (NOTE: make sure you have All Files (*.*) selected in the drop-down box at the bottom right otherwise you will not see the files)</li>
<li>Locate the line<br />
<code>Listen 80</code><br />
And change it to<br />
<code>Listen 192.168.1.110:80</code><br />
Replacing 192.168.1.110 with the second IP you assigned to your machine.<br />
<a rel="lightbox" href="http://www.shanewelldon.com/wp-content/uploads/2009/02/sbs2008apachelistenstringmarked.png"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" title="sbs2008-apache-listen-string-marked" src="http://www.shanewelldon.com/wp-content/uploads/2009/02/sbs2008apachelistenstringmarked-thumb.png" border="0" alt="sbs2008-apache-listen-string-marked" width="490" height="120" /></a></li>
<li>Save your changes then go to File –&gt; Open and navigate to the ‘extras’ subfolder of the conf folder and open the httpd-ssl.conf file</li>
<li>Locate the line<br />
<code>Listen 443</code><br />
And change it to<br />
<code>Listen 192.168.1.110:443</code><br />
Again replacing the IP address written here with your own<br />
<a rel="lightbox" href="http://www.shanewelldon.com/wp-content/uploads/2009/02/sbs2008apachelistensslstringmarked.png"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" title="sbs2008-apache-listen-ssl-string-marked" src="http://www.shanewelldon.com/wp-content/uploads/2009/02/sbs2008apachelistensslstringmarked-thumb.png" border="0" alt="sbs2008-apache-listen-ssl-string-marked" width="486" height="106" /></a></li>
<li>Save your changes and start/restart Apache</li>
</ol>
<p>You should now be able to view IIS on your original IP address and Apache on the new one you added. To get external access to Apache instead of IIS you would simply change the port forwarding rule for port 80 in your router to point to this new IP address instead of the original one.</p>
<p>Make sure that you do not change port forwarding for port 443 though as this will stop all remote access to email and other SBS 2008 services!</p>
<h4>Sources</h4>
<ul>
<li><a href="http://www.simongibson.com/intranet/multiip/">http://www.simongibson.com/intranet/multiip/</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/ms733768.aspx">http://msdn.microsoft.com/en-us/library/ms733768.aspx</a></li>
<li><a href="http://weblogs.asp.net/steveschofield/archive/2007/07/06/iis7-post-44-iis7-and-apache-on-the-same-machine.aspx">http://weblogs.asp.net/steveschofield/archive/2007/07/06/iis7-post-44-iis7-and-apache-on-the-same-machine.aspx</a> - Unfortunately I didn&#8217;t find Steve Schofield&#8217;s excellent guide on doing the same thing until after I had struggled through it all.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.shanewelldon.com/2009/02/04/apache-and-iis7-together-on-sbs2008/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>My Favourite Free Software Utilities</title>
		<link>http://www.shanewelldon.com/2008/08/05/my-favourite-free-software-utilities/</link>
		<comments>http://www.shanewelldon.com/2008/08/05/my-favourite-free-software-utilities/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 05:08:54 +0000</pubDate>
		<dc:creator>Shane Welldon</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.shanewelldon.com/2008/08/05/my-favourite-free-software-utilities/</guid>
		<description><![CDATA[A collection of my favourite freely available software applications and utilities.]]></description>
			<content:encoded><![CDATA[<p>I thought I&#8217;d do a few posts devoted to some of my favourite applications and utilities. In this post are a number of free utilities I use both at work and home on a daily basis.</p>
<h2><a href="http://ie7pro.com/">IE7Pro</a></h2>
<p>This is an add-on for Internet Explorer 7 (and IE8 beta) that adds a multitude of features not present in the original application. The list is quite long (<a href="http://ie7pro.com/">see their website</a> for a complete list) but my favourite features are the Ad blocker, Search shortcuts, Download manager and the ability to double-click a tab to close it. It also includes mouse gestures and user created scripts to change the appearance of pages or add new features (kind of like Greasemonkey for Firefox). Essential for any Internet Explorer user!</p>
<h2><a href="http://www.ruahine.com/ycopy-file-copy-utility.html">Ycopy</a></h2>
<p>This tool is a life saver when trying to move around lots of data. Quite simply it copies files from one location to another without interruption. If it finds a file it cannot access to copy it adds an entry to the log file and keeps on going, allowing you to deal with it later on. This is in contrast to the Windows copy utility which stops dead at any file it can&#8217;t access making you start all over again. A must for computer stores.</p>
<h2><a href="http://www.2brightsparks.com/downloads.html#freeware">SyncBack</a></h2>
<p>SyncBack is a very powerful and free synchronisation and backup tool. Its main features I find useful are the scheduling options and the email function which allows it to email a log file if the backup fails. It has many options and filters to make sure you only get the files you want. The company also makes a Pro, paid version which is even better again and allows it to also backup files that are currently in use.</p>
<h2><a href="http://www.freewebs.com/nerdcave/taskbarshuffle.htm">Taskbar Shuffle</a></h2>
<p>Another simple tool with a single purpose &#8211; to allow the re-arranging of open applications on the Windows Taskbar. Very handy if you have a number of applications you keep open all the time and like to have them in a set order on the Taskbar to find them easier. Newer versions also allow you to re-arrange items in the System Tray.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shanewelldon.com/2008/08/05/my-favourite-free-software-utilities/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Trend Micro PC-Cillin 2007 and SpyBot</title>
		<link>http://www.shanewelldon.com/2007/09/13/trend-micro-pc-cillin-2007-and-spybot/</link>
		<comments>http://www.shanewelldon.com/2007/09/13/trend-micro-pc-cillin-2007-and-spybot/#comments</comments>
		<pubDate>Thu, 13 Sep 2007 09:06:57 +0000</pubDate>
		<dc:creator>Shane Welldon</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[PC-Cillin]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[SpyBot]]></category>
		<category><![CDATA[Trend]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.shanewelldon.com/2007/09/13/trend-micro-pc-cillin-2007-and-spybot/</guid>
		<description><![CDATA[Just a quick FYI post if you&#8217;ve installed PC-Cillin 2007; have SpyBot Search &#38; Destroy installed; and have found your computer to have started running painfully slow, there is a known compatibility issue between the two security applications.
The issue relates to the immunisation feature of SpyBot and PC-Cillin&#8217;s Spyware scanner.
For more information and for instructions [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick FYI post if you&#8217;ve installed PC-Cillin 2007; have SpyBot Search &amp; Destroy installed; and have found your computer to have started running painfully slow, there is a known compatibility issue between the two security applications.</p>
<p>The issue relates to the immunisation feature of SpyBot and PC-Cillin&#8217;s Spyware scanner.</p>
<p>For more information and for instructions to fix the issue, <a href="http://esupport.trendmicro.com/support/viewxml.do?ContentID=EN-1033903">take a look at this Support Bulletin</a> on Trend Micro&#8217;s website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shanewelldon.com/2007/09/13/trend-micro-pc-cillin-2007-and-spybot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Pages Stop Working in Windows Vista</title>
		<link>http://www.shanewelldon.com/2007/07/09/web-pages-stop-working-in-windows-vista/</link>
		<comments>http://www.shanewelldon.com/2007/07/09/web-pages-stop-working-in-windows-vista/#comments</comments>
		<pubDate>Mon, 09 Jul 2007 12:40:34 +0000</pubDate>
		<dc:creator>Shane Welldon</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.shanewelldon.com/2007/07/09/web-pages-stop-working-in-windows-vista/</guid>
		<description><![CDATA[Something I&#8217;ve noticed whilst using Windows Vista (which may be closely related to the issues I&#8217;ve had previously with my router) is that occasionally all access to websites will stop and all I&#8217;ll get is a &#8220;Cannot Find Server&#8221; error page immediately. I don&#8217;t know exactly what is causing it, but flushing the DNS cache [...]]]></description>
			<content:encoded><![CDATA[<p>Something I&#8217;ve noticed whilst using Windows Vista (which may be closely related to the <a href="http://www.shanewelldon.com/2007/04/21/windows-vista-netgear-dg834-no-windows-live-messenger/" title="Windows Vista + Netgear DG834 = No Windows Live Messenger">issues I&#8217;ve had previously with my router</a>) is that occasionally all access to websites will stop and all I&#8217;ll get is a &#8220;Cannot Find Server&#8221; error page immediately. I don&#8217;t know exactly what is causing it, but flushing the DNS cache seems to fix it.</p>
<p>To flush your system&#8217;s DNS Resolver Cache do the following:</p>
<ol>
<li>Open a command prompt with administrator priveliges (Click Start, type &#8220;cmd&#8221; and right-click it then go to &#8220;Run as administrator&#8221; or press CTRL+SHIFT+ENTER)</li>
<li>Click Continue on the User Account Control dialog</li>
<li>Type the following string:<br />
<code>ipconfig /flushdns</code><br />
and hit enter. You should see the message &#8220;Successfully flushed the DNS Resolver Cache&#8221;</li>
<li>Close the command prompt by typing &#8220;exit&#8221; then enter.</li>
</ol>
<p>You should now be able to access websites again. This is a perfectly harmless fix to try but there are no guarantees as to whether it will fix your specific problem. However I have found it to be an adequate fix for my own issue until I can pinpoint the cause of it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shanewelldon.com/2007/07/09/web-pages-stop-working-in-windows-vista/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Windows Vista + Netgear DG834 = No Windows Live Messenger</title>
		<link>http://www.shanewelldon.com/2007/04/21/windows-vista-netgear-dg834-no-windows-live-messenger/</link>
		<comments>http://www.shanewelldon.com/2007/04/21/windows-vista-netgear-dg834-no-windows-live-messenger/#comments</comments>
		<pubDate>Sat, 21 Apr 2007 12:47:43 +0000</pubDate>
		<dc:creator>Shane Welldon</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[DG834]]></category>
		<category><![CDATA[Messenger]]></category>
		<category><![CDATA[Netgear]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.shanewelldon.com/2007/04/21/windows-vista-netgear-dg834-no-windows-live-messenger/</guid>
		<description><![CDATA[Shortly after installing Windows Vista I went on an updating spree and updated all my device drivers and firmware to their most current versions. This included updating my Netgear DG834 v2 ADSL Modem/Router to version 3.01.32.
Somehow doing this ended up stopping Windows Live Messenger 8.1 from being able to login.
A lot of searching revealed that there [...]]]></description>
			<content:encoded><![CDATA[<p>Shortly after installing Windows Vista I went on an updating spree and updated all my device drivers and firmware to their most current versions. This included updating my Netgear DG834 v2 ADSL Modem/Router to version 3.01.32.</p>
<p>Somehow doing this ended up stopping Windows Live Messenger 8.1 from being able to login.</p>
<p>A lot of searching revealed that there are some known issues between Windows Vista and certain Routers. This has something to do with the way in which Windows Vista&#8217;s new networking stack can tune itself for the best performance. You can read more about the auto-tuning feature in <a href="http://www.microsoft.com/technet/community/columns/cableguy/cg1105.mspx#E2B">this column</a> on Microsoft&#8217;s website.</p>
<p>The easiest and best solution I found was to downgrade my router&#8217;s firmware back to version 3.01.25. I have been running this version successfully with no network issues at all for weeks now.</p>
<p>You can find Netgear firmware downloads at <a href="http://kbserver.netgear.com/downloads_support.asp">http://kbserver.netgear.com/downloads_support.asp</a>. Consult your router&#8217;s manual for installation instructions.</p>
<p>If this doesn&#8217;t work for you, you&#8217;re already using that firmware, or you have a different model router, then you can try disabling the &#8220;Autotuning&#8221; feature:</p>
<ol>
<li>Click Start and type &#8220;cmd&#8221; into the Quick Search box.</li>
<li>Right-click the &#8220;cmd&#8221; item that appears and select &#8220;Run as administrator&#8221; (Or hit ctrl+shift+enter). Click &#8220;Continue&#8221; in the resulting UAC dialog and a Command Prompt window will open.</li>
<li>In this window type the following string:<br />
<code>netsh interface tcp set global autotuninglevel=disabled</code><br />
and hit enter. The prompt will return &#8220;Ok.&#8221; If successful.</li>
<li>Close the command prompt by typing &#8220;exit&#8221; then enter, or by clicking the close button in the top right corner.</li>
<li>Reboot your computer.</li>
</ol>
<p>I found that disabling auto-tuning worked great for restoring Windows Live Messenger functionality but I was still experiencing some random network issues. Try the router firmware option first if you&#8217;re able to.</p>
<p>If you&#8217;re using a &#8220;current model&#8221; ADSL Modem/Router then continue to keep an eye on the manufacturer&#8217;s site for an updated, Windows Vista compatible firmware version.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shanewelldon.com/2007/04/21/windows-vista-netgear-dg834-no-windows-live-messenger/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Inline Search for Internet Explorer</title>
		<link>http://www.shanewelldon.com/2007/04/20/inline-search-for-internet-explorer/</link>
		<comments>http://www.shanewelldon.com/2007/04/20/inline-search-for-internet-explorer/#comments</comments>
		<pubDate>Thu, 19 Apr 2007 14:27:51 +0000</pubDate>
		<dc:creator>Shane Welldon</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Inline Search]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.shanewelldon.com/2007/04/20/inline-search-for-internet-explorer/</guid>
		<description><![CDATA[This small add-on for Internet Explorer published by IEForge replaces the standard &#8220;Find on Page&#8221; dialog box with a bar that appears at the bottom of the page instead similar to the one in FireFox.
It has a few extra features compared to the default find box like searching as you type and an option to [...]]]></description>
			<content:encoded><![CDATA[<p>This small add-on for Internet Explorer published by <a href="http://www.ieforge.com/">IEForge</a> replaces the standard &#8220;Find on Page&#8221; dialog box with a bar that appears at the bottom of the page instead similar to the one in FireFox.</p>
<p>It has a few extra features compared to the default find box like searching as you type and an option to highlight all occurrences of your search term on the page at the same time. The box will also turn red as you type if the term you enter doesn&#8217;t exist in the page which is nice.</p>
<p>The best feature of it though in my opinion is that it stays out of the way of the content of the page you&#8217;re searching on, unlike the default box that you need to drag all over the place to look behind it.</p>
<p>You can <a href="http://www.ieforge.com/InlineSearch/HomePage">download it</a> from IEForge&#8217;s site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shanewelldon.com/2007/04/20/inline-search-for-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iTunes &#8220;Saving iTunes Library&#8221; Dialog Issue</title>
		<link>http://www.shanewelldon.com/2007/04/01/itunes-%e2%80%9csaving-itunes-library%e2%80%9d-dialog-issue/</link>
		<comments>http://www.shanewelldon.com/2007/04/01/itunes-%e2%80%9csaving-itunes-library%e2%80%9d-dialog-issue/#comments</comments>
		<pubDate>Sat, 31 Mar 2007 13:22:52 +0000</pubDate>
		<dc:creator>Shane Welldon</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[NOD32]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.shanewelldon.com/2007/04/01/itunes-%e2%80%9csaving-itunes-library%e2%80%9d-dialog-issue/</guid>
		<description><![CDATA[For some seemingly unknown reason tonight my copy of iTunes decided to start displaying the following “Saving iTunes Library” dialog whenever I quit the application.

The dialog would only be there for a few seconds but would make my PC completely unresponsive while it did its thing.
I remembered I had experienced this issue before but couldn’t [...]]]></description>
			<content:encoded><![CDATA[<p>For some seemingly unknown reason tonight my copy of iTunes decided to start displaying the following “Saving iTunes Library” dialog whenever I quit the application.</p>
<p style="text-align: center;"><img src="http://www.shanewelldon.com/wp-content/uploads/2007/04/itunes-saving-library.jpg" width="379" height="95" alt="Saving iTunes Library Dialog" class="imageframe imgaligncenter" /></p>
<p>The dialog would only be there for a few seconds but would make my PC completely unresponsive while it did its thing.</p>
<p>I remembered I had experienced this issue before but couldn’t find the site I’d originally found the solution on. A lot of searching later I found <a href="http://forums.ilounge.com/showthread.php?p=1083945">this thread</a> on <a href="http://www.ilounge.com">iLounge</a> containing the solution — Exclude your iTunes folder from your Antivirus program’s active scanning.</p>
<p>I realised after this that I had just done a fresh reinstall of my antivirus program, NOD32, to fix another issue and in doing this had cleared out all my previous settings. Adding my iTunes folder to its exclusions list again worked a treat.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shanewelldon.com/2007/04/01/itunes-%e2%80%9csaving-itunes-library%e2%80%9d-dialog-issue/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Image Resizer for Windows Vista</title>
		<link>http://www.shanewelldon.com/2007/03/17/image-resizer-for-windows-vista/</link>
		<comments>http://www.shanewelldon.com/2007/03/17/image-resizer-for-windows-vista/#comments</comments>
		<pubDate>Sat, 17 Mar 2007 12:47:40 +0000</pubDate>
		<dc:creator>Shane Welldon</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Image Resize]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.shanewelldon.com/2007/03/17/image-resizer-for-windows-vista/</guid>
		<description><![CDATA[One of my most missed Windows XP utilities since moving to Windows Vista has been the Image Resizer PowerToy released by Microsoft a few years back. They released a whole bunch of PowerToys and this was hands-down the most useful out of them all.
This tool allowed you to select a bunch of images then just [...]]]></description>
			<content:encoded><![CDATA[<p>One of my most missed Windows XP utilities since moving to Windows Vista has been the <a href="http://www.microsoft.com/windowsxp/using/digitalphotography/learnmore/tips/eschelman2.mspx">Image Resizer PowerToy</a> released by Microsoft a few years back. They released a whole bunch of <a href="http://www.microsoft.com/windowsxp/downloads/powertoys/xppowertoys.mspx">PowerToys</a> and this was hands-down the most useful out of them all.</p>
<p>This tool allowed you to select a bunch of images then just right-click on one and select resize to create smaller copies of them alongside the originals. I found this tool extremely useful when wanting to send high-quality photos I’d taken to friends over an Instant Messaging client like MSN.</p>
<p>Windows Vista comes with a handful of <a href='http://www.shanewelldon.com/wp-content/uploads/2007/03/photo-fixing-tools.jpg' title='Windows Photo Gallery Photo Fixing Tools'>simple photo editing tools</a> built into Windows Photo Gallery including tools to fix exposure, colour and red eye and it even comes with a tool to crop your picture, but an image resizing tool is nowhere to be found. Why they would skip such a fundamental photo editing tool I don’t know.</p>
<p>However, a quick search tonight has come up with an application that very closely mimics the operation of the original Microsoft PowerToy, and also adds a couple of extra features on top. The name of this application is <a href="http://www.vso-software.fr/products/image_resizer/image_resizer.php">VSO Image Resizer</a> and it is available as a free download from their site, <a href="http://www.vso-software.fr/">VSO Software</a>.</p>
<p>Once installed it really does act just like the Microsoft PowerToy. Select a photo or two, right-click and select VSO Image Resizer from the context-menu then select the size you want and hit “OK”, it will create your resized images alongside the old ones.</p>
<p>Take a look at <a href="http://www.vso-software.fr/">VSO’s website</a> for some screenshots and more information and of course to <a href="http://www.vso-software.fr/products/image_resizer/image_resizer.php">download the application</a>.</p>
<p>If you&#8217;re still using Windows XP and want the Image Resizer PowerToy you can still find it on Microsoft&#8217;s <a href="http://www.microsoft.com/windowsxp/downloads/powertoys/xppowertoys.mspx">PowerToys</a> page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shanewelldon.com/2007/03/17/image-resizer-for-windows-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Repeated Keys with Microsoft Wireless Keyboard</title>
		<link>http://www.shanewelldon.com/2007/03/13/repeated-keys-with-microsoft-wireless-keyboard/</link>
		<comments>http://www.shanewelldon.com/2007/03/13/repeated-keys-with-microsoft-wireless-keyboard/#comments</comments>
		<pubDate>Mon, 12 Mar 2007 13:54:41 +0000</pubDate>
		<dc:creator>Shane Welldon</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Microsoft Wireless Keyboard]]></category>
		<category><![CDATA[Repeated keys]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.shanewelldon.com/2007/03/13/repeated-keys-with-microsoft-wireless-keyboard/</guid>
		<description><![CDATA[When I first updated from my old wired keyboard to a Microsoft Wireless Desktop Elite I experienced a problem where random keys would seem to “stick” and I’d get an unwanted string of repeated characters across the screen.
The problem, it turns out, was having my Key Repeat Delay set too short. Due to my impatient [...]]]></description>
			<content:encoded><![CDATA[<p>When I first updated from my old wired keyboard to a Microsoft Wireless Desktop Elite I experienced a problem where random keys would seem to “stick” and I’d get an unwanted string of repeated characters across the screen.</p>
<p>The problem, it turns out, was having my Key Repeat Delay set too short. Due to my impatient nature I would always turn this to the shortest setting so I wouldn’t have to wait if I wanted a string of repeated keys.<br />
To fix the issue, open up Control Panel (Start -&gt; Control Panel) and open the Keyboard item (Select “Classic View” in the left bar if you have trouble finding it). In the dialog that opens, select the “Speed” tab and move the Repeat Delay slider one notch closer to “Long”. Refer to the following screenshot of the dialog.</p>
<p style="text-align: center"><img src="http://www.shanewelldon.com/wp-content/uploads/2007/03/keyboard-properties.jpg" alt="Keyboard Properties Dialog" /></p>
<p>I’m really not sure of why having this set short causes keys to get “stuck”. I guess that due to the nature of wireless, some interference may distort the signal and tell the OS that the key has been held down longer than it has. Making the delay a little longer will have it wait out this corrupt signal before leaving a string of characters across the screen.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shanewelldon.com/2007/03/13/repeated-keys-with-microsoft-wireless-keyboard/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Mystery of the Little Green Arrow</title>
		<link>http://www.shanewelldon.com/2007/03/12/the-mystery-of-the-little-green-arrow/</link>
		<comments>http://www.shanewelldon.com/2007/03/12/the-mystery-of-the-little-green-arrow/#comments</comments>
		<pubDate>Mon, 12 Mar 2007 01:46:20 +0000</pubDate>
		<dc:creator>Shane Welldon</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.shanewelldon.com/?p=5</guid>
		<description><![CDATA[I&#8217;ve been using Windows Vista Ultimate since it was released and ever since installing there had been one small ‘glitch’ that&#8217;d been annoying me constantly. Any folder I opened in an Explorer window had a small green arrow coming out of the folder icon for it on its taskbar button. You can see what I [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using Windows Vista Ultimate since it was released and ever since installing there had been one small ‘glitch’ that&#8217;d been annoying me constantly. Any folder I opened in an Explorer window had a small green arrow coming out of the folder icon for it on its taskbar button. You can see what I mean in the following screenshot.</p>
<p style="text-align: center"><img src="http://www.shanewelldon.com/wp-content/uploads/2007/03/taskbar-folder-icons-marked.jpg" alt="Taskbar Folder Icon Issue Screenshot" /></p>
<p>I purchased a subscription to Microsoft’s TechNet earlier in the year and so decided to make use of it and asked why this was happening in their Managed Newsgroups. Just over 12 hours later I got a solution from a user called &#8220;dean-dean&#8221;.</p>
<blockquote><p>“What you&#8217;re seeing is normal, depending on whether or not you have the Navigation Pane open or not. If you are using the Pane, you&#8217;ll see the green-arrow icon. If you close the Pane (under Organize &gt;Layout), and open a folder, you will see the normal folder icon (without the arrow). In other words, the default command for &#8220;no navigation pane&#8221; folders is Open, and the default command for &#8220;show navigation pane&#8221; folders is Explore, (which then uses the green arrow icon in the taskbar, just to let you know you&#8217;re Exploring, I guess). Try it both ways&#8230;”</p></blockquote>
<p style="text-align: center"><img src="http://www.shanewelldon.com/wp-content/uploads/2007/03/folder-pane-joined.jpg" alt="Folder Pane Positions" /></p>
<p>Basically what he&#8217;s referring to is the &#8220;Folders&#8221; pane that is in the left bar underneath &#8220;Favourite Links&#8221;. This pane is collapsed by default but can be expanded by clicking on the &#8220;Folders&#8221; heading for it at the bottom of the bar. The Folders pane shows a treeview of all the folders just like in Windows XP. Having this pane open changes the icon to the one with the arrow. Closing it reverts the icon back to the normal folder icon. Strange behaviour I know but some people probably find this useful.</p>
<p>So thank you dean-dean, you saved me from almost reformatting just to get rid of that stupid icon. <img src='http://www.shanewelldon.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.shanewelldon.com/2007/03/12/the-mystery-of-the-little-green-arrow/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

