<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for GeekTieGuy</title>
	<atom:link href="http://www.geektieguy.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.geektieguy.com</link>
	<description>News and views from the geek tie guy.</description>
	<lastBuildDate>Sat, 04 Feb 2012 18:17:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on How to parse &quot;special&quot; .lnk files, aka. MSI shortcuts aka. Windows Installer advertised shortcuts using C# by GeekTieGuy</title>
		<link>http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/comment-page-1/#comment-102010</link>
		<dc:creator>GeekTieGuy</dc:creator>
		<pubDate>Sat, 04 Feb 2012 18:17:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/#comment-102010</guid>
		<description>My pleasure. And thanks for the additional findings!</description>
		<content:encoded><![CDATA[<p>My pleasure. And thanks for the additional findings!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to parse &quot;special&quot; .lnk files, aka. MSI shortcuts aka. Windows Installer advertised shortcuts using C# by Jonathan</title>
		<link>http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/comment-page-1/#comment-101789</link>
		<dc:creator>Jonathan</dc:creator>
		<pubDate>Fri, 03 Feb 2012 00:23:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/#comment-101789</guid>
		<description>Oh, forgot to mention:
1. I&#039;m using .net 4.0
2. [STAThread] on your main method *may* be required too... see the SO thread please.
3. Most important - thanks for posting this!</description>
		<content:encoded><![CDATA[<p>Oh, forgot to mention:<br />
1. I&#8217;m using .net 4.0<br />
2. [STAThread] on your main method *may* be required too&#8230; see the SO thread please.<br />
3. Most important &#8211; thanks for posting this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to parse &quot;special&quot; .lnk files, aka. MSI shortcuts aka. Windows Installer advertised shortcuts using C# by Jonathan</title>
		<link>http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/comment-page-1/#comment-101788</link>
		<dc:creator>Jonathan</dc:creator>
		<pubDate>Fri, 03 Feb 2012 00:21:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2007/11/19/how-to-parse-special-lnk-files-aka-msi-shortcuts-aka-windows-installer-advertised-shortcuts-using-c/#comment-101788</guid>
		<description>Please see: http://stackoverflow.com/questions/4490361/c-sharp-dllimport-of-msigetshortcuttargetmsi-dll-failed-with-error-1603-under
- the return value for MsiGetShortcutTarget is UInt32 and is important (you want to check that...), and
- the [Out] modifier is missing from the StringBuilder parameters:
/*
        UINT MsiGetShortcutTarget(
            LPCTSTR szShortcutTarget,
            LPTSTR szProductCode,
            LPTSTR szFeatureId,
            LPTSTR szComponentCode
        );
        */
        [DllImport(&quot;msi.dll&quot;, CharSet = CharSet.Auto)]
        static extern UInt32 MsiGetShortcutTarget(
            string targetFile,
            [Out] StringBuilder productCode,
            [Out] StringBuilder featureID,
            [Out] StringBuilder componentCode);
and...
       /*
        INSTALLSTATE MsiGetComponentPath(
          LPCTSTR szProduct,
          LPCTSTR szComponent,
          LPTSTR lpPathBuf,
          DWORD* pcchBuf);
        */
        [DllImport(&quot;msi.dll&quot;, CharSet = CharSet.Auto)]
        static extern InstallState MsiGetComponentPath(
            string productCode,
            string componentCode,
            [Out] StringBuilder componentPath,
            ref int componentPathBufferSize);</description>
		<content:encoded><![CDATA[<p>Please see: <a href="http://stackoverflow.com/questions/4490361/c-sharp-dllimport-of-msigetshortcuttargetmsi-dll-failed-with-error-1603-under" rel="nofollow">http://stackoverflow.com/questions/4490361/c-sharp-dllimport-of-msigetshortcuttargetmsi-dll-failed-with-error-1603-under</a><br />
- the return value for MsiGetShortcutTarget is UInt32 and is important (you want to check that&#8230;), and<br />
- the [Out] modifier is missing from the StringBuilder parameters:<br />
/*<br />
        UINT MsiGetShortcutTarget(<br />
            LPCTSTR szShortcutTarget,<br />
            LPTSTR szProductCode,<br />
            LPTSTR szFeatureId,<br />
            LPTSTR szComponentCode<br />
        );<br />
        */<br />
        [DllImport("msi.dll", CharSet = CharSet.Auto)]<br />
        static extern UInt32 MsiGetShortcutTarget(<br />
            string targetFile,<br />
            [Out] StringBuilder productCode,<br />
            [Out] StringBuilder featureID,<br />
            [Out] StringBuilder componentCode);<br />
and&#8230;<br />
       /*<br />
        INSTALLSTATE MsiGetComponentPath(<br />
          LPCTSTR szProduct,<br />
          LPCTSTR szComponent,<br />
          LPTSTR lpPathBuf,<br />
          DWORD* pcchBuf);<br />
        */<br />
        [DllImport("msi.dll", CharSet = CharSet.Auto)]<br />
        static extern InstallState MsiGetComponentPath(<br />
            string productCode,<br />
            string componentCode,<br />
            [Out] StringBuilder componentPath,<br />
            ref int componentPathBufferSize);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A new all-in-one TouchSmart 4 upgrade tool by GeekTieGuy</title>
		<link>http://www.geektieguy.com/2011/10/15/a-new-all-in-one-touchsmart-4-upgrade-tool/comment-page-1/#comment-99251</link>
		<dc:creator>GeekTieGuy</dc:creator>
		<pubDate>Fri, 30 Dec 2011 18:53:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2011/10/15/a-new-all-in-one-touchsmart-4-upgrade-tool/#comment-99251</guid>
		<description>Some troubleshooting revealed that the WPF Font Cache on the system was the cause of the problem. The fix was the following:

- Stop Windows Presentation Foundation Font Cache 3.0.0.0 service
- Delete FontCache3.0.0.0.dat in %windir%\ServiceProfiles\LocalService\AppData\Local
- Restart the machine</description>
		<content:encoded><![CDATA[<p>Some troubleshooting revealed that the WPF Font Cache on the system was the cause of the problem. The fix was the following:</p>
<p>- Stop Windows Presentation Foundation Font Cache 3.0.0.0 service<br />
- Delete FontCache3.0.0.0.dat in %windir%\ServiceProfiles\LocalService\AppData\Local<br />
- Restart the machine</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A new all-in-one TouchSmart 4 upgrade tool by Kevin</title>
		<link>http://www.geektieguy.com/2011/10/15/a-new-all-in-one-touchsmart-4-upgrade-tool/comment-page-1/#comment-98884</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Mon, 26 Dec 2011 18:12:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2011/10/15/a-new-all-in-one-touchsmart-4-upgrade-tool/#comment-98884</guid>
		<description>I am having a problem right after the compressed TS4Upgrade.exe file is downloaded. When I click on the file in Windows explorer, a new screen appears, but the program just hangs.

Any ideas on a solution to this problem?</description>
		<content:encoded><![CDATA[<p>I am having a problem right after the compressed TS4Upgrade.exe file is downloaded. When I click on the file in Windows explorer, a new screen appears, but the program just hangs.</p>
<p>Any ideas on a solution to this problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on More on pouring away gas by Practicing What You Preach &#124; Slow Quest</title>
		<link>http://www.geektieguy.com/2007/01/26/more-on-pouring-away-gas/comment-page-1/#comment-98334</link>
		<dc:creator>Practicing What You Preach &#124; Slow Quest</dc:creator>
		<pubDate>Mon, 19 Dec 2011 22:42:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2007/01/26/more-on-pouring-away-gas/#comment-98334</guid>
		<description>[...] Interesting article on how much fuel in a car actually goes on transporting you and why bikes are gr... [...]</description>
		<content:encoded><![CDATA[<p>[...] Interesting article on how much fuel in a car actually goes on transporting you and why bikes are gr&#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Vista SP1 &#8211; still no audio after resume from sleep by Dutchy</title>
		<link>http://www.geektieguy.com/2008/02/12/vista-sp1-still-no-audio-after-resume-from-sleep/comment-page-1/#comment-96212</link>
		<dc:creator>Dutchy</dc:creator>
		<pubDate>Tue, 22 Nov 2011 16:52:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2008/02/12/vista-sp1-still-no-audio-after-resume-from-sleep/#comment-96212</guid>
		<description>Custom built PC, Juli@ audio, same problem. Go back to hybernation and back to windows again solves it sometimes. Another thing, if Photoshop was open the mouse position does not match the actual tool position anymore.</description>
		<content:encoded><![CDATA[<p>Custom built PC, Juli@ audio, same problem. Go back to hybernation and back to windows again solves it sometimes. Another thing, if Photoshop was open the mouse position does not match the actual tool position anymore.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Upgraded your HP TouchSmart IQ500/800 to Windows 7? A tip on installing the new apps. by GeekTieGuy</title>
		<link>http://www.geektieguy.com/2009/10/31/upgraded-your-hp-touchsmart-iq500800-to-windows-7-a-tip-on-installing-the-new-apps/comment-page-1/#comment-96038</link>
		<dc:creator>GeekTieGuy</dc:creator>
		<pubDate>Sun, 20 Nov 2011 06:39:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2009/10/31/upgraded-your-hp-touchsmart-iq500800-to-windows-7-a-tip-on-installing-the-new-apps/#comment-96038</guid>
		<description>I&#039;m not sure I follow the question entirely. Are you looking for a BIOS update that lets you install Windows 7? The BIOS doesn&#039;t impose any restrictions on what OS you can install, Vista or Windows 7. Also, I don&#039;t think BIOS updates are tied to a particular version of Windows. Most BIOS updates that work on Windows can be installed from either Windows Vista or Windows 7. You don&#039;t mention which model of HP TouchSmart you want the BIOS ver 5.10 for. It&#039;s usually pretty easy to find any updates like that on the support pages of hp.com. You enter your TouchSmart model number into a search box and then do a little bit of navigation to find any published updates.</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure I follow the question entirely. Are you looking for a BIOS update that lets you install Windows 7? The BIOS doesn&#8217;t impose any restrictions on what OS you can install, Vista or Windows 7. Also, I don&#8217;t think BIOS updates are tied to a particular version of Windows. Most BIOS updates that work on Windows can be installed from either Windows Vista or Windows 7. You don&#8217;t mention which model of HP TouchSmart you want the BIOS ver 5.10 for. It&#8217;s usually pretty easy to find any updates like that on the support pages of hp.com. You enter your TouchSmart model number into a search box and then do a little bit of navigation to find any published updates.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Upgraded your HP TouchSmart IQ500/800 to Windows 7? A tip on installing the new apps. by Brad</title>
		<link>http://www.geektieguy.com/2009/10/31/upgraded-your-hp-touchsmart-iq500800-to-windows-7-a-tip-on-installing-the-new-apps/comment-page-1/#comment-96033</link>
		<dc:creator>Brad</dc:creator>
		<pubDate>Sun, 20 Nov 2011 04:07:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2009/10/31/upgraded-your-hp-touchsmart-iq500800-to-windows-7-a-tip-on-installing-the-new-apps/#comment-96033</guid>
		<description>Can you find the BIOS update ver 5.10 that can be install from Windows 7?</description>
		<content:encoded><![CDATA[<p>Can you find the BIOS update ver 5.10 that can be install from Windows 7?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A new all-in-one TouchSmart 4 upgrade tool by Eric</title>
		<link>http://www.geektieguy.com/2011/10/15/a-new-all-in-one-touchsmart-4-upgrade-tool/comment-page-1/#comment-96009</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Sat, 19 Nov 2011 20:01:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2011/10/15/a-new-all-in-one-touchsmart-4-upgrade-tool/#comment-96009</guid>
		<description>Was having troubles installing the my Touchsmart to 4.0.  The upgrade kept &quot;hanging&quot; after the 1st download.  Your tip about &quot;CTRL + hitting the &#039;X&#039; seems to have worked and the rest of the files are starting to download now.  Looking forward to checking out the new Magic Canvas.   Your screen shots were helpful too!   Thanks again!!</description>
		<content:encoded><![CDATA[<p>Was having troubles installing the my Touchsmart to 4.0.  The upgrade kept &#8220;hanging&#8221; after the 1st download.  Your tip about &#8220;CTRL + hitting the &#8216;X&#8217; seems to have worked and the rest of the files are starting to download now.  Looking forward to checking out the new Magic Canvas.   Your screen shots were helpful too!   Thanks again!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Recover from BAD_POOL_HEADER blue screen errors after upgrading hard drive by Geoff</title>
		<link>http://www.geektieguy.com/2009/07/27/recover-from-bad_pool_header-blue-screen-errors-after-upgrading-hard-drive/comment-page-1/#comment-95253</link>
		<dc:creator>Geoff</dc:creator>
		<pubDate>Tue, 08 Nov 2011 14:54:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2009/07/27/recover-from-bad_pool_header-blue-screen-errors-after-upgrading-hard-drive/#comment-95253</guid>
		<description>Thank you!.  Worked like a charm on my XP system having a very similar problem.
Had cloned a Thinkpad (x200) using Apricorn EZ Upgrade onto a larger HDD.
System appeared to work perfectly until I ran my weekly backup (using Norton360) onto a Western Digital USB drive.  Every time I ran backup; got the same BSOD with &#039;Bad pool header&#039;.  I spent 5hours last night trying to resolve the problem; found lots of chatter about this problem but no working solutions.  Prior to doing what you recommeded;  following another recommendation, I  removed all &#039;ghosted devices&#039; showing up in my Device mgmr, but that didn&#039;t resolve the problem (or at least not completely).  Also played with Shadow Copy service, etc...to no avail.
This  one worked.  Thanks!.
Note: under XP, to see hidden devices you need first set a environmental variable: see http://support.microsoft.com/kb/315539.</description>
		<content:encoded><![CDATA[<p>Thank you!.  Worked like a charm on my XP system having a very similar problem.<br />
Had cloned a Thinkpad (x200) using Apricorn EZ Upgrade onto a larger HDD.<br />
System appeared to work perfectly until I ran my weekly backup (using Norton360) onto a Western Digital USB drive.  Every time I ran backup; got the same BSOD with &#8216;Bad pool header&#8217;.  I spent 5hours last night trying to resolve the problem; found lots of chatter about this problem but no working solutions.  Prior to doing what you recommeded;  following another recommendation, I  removed all &#8216;ghosted devices&#8217; showing up in my Device mgmr, but that didn&#8217;t resolve the problem (or at least not completely).  Also played with Shadow Copy service, etc&#8230;to no avail.<br />
This  one worked.  Thanks!.<br />
Note: under XP, to see hidden devices you need first set a environmental variable: see <a href="http://support.microsoft.com/kb/315539" rel="nofollow">http://support.microsoft.com/kb/315539</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A brief history of five TouchSmart generations&#8211;pioneering ideas for Windows 8 by GeekTieGuy</title>
		<link>http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/comment-page-1/#comment-94844</link>
		<dc:creator>GeekTieGuy</dc:creator>
		<pubDate>Wed, 02 Nov 2011 18:56:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/#comment-94844</guid>
		<description>@Dave: Thanks for your comment. Glad to hear you&#039;re finding new value in TouchSmart 5.0/5.1! As far as the battery icon goes - I&#039;m not using the stock mouse from HP on that system, but the keyboard and mouse software always puts up both icons, and I want the software running so some of the non-standard buttons on the keyboard work properly. I&#039;m surprised you noticed, you must have eagle eyes!</description>
		<content:encoded><![CDATA[<p>@Dave: Thanks for your comment. Glad to hear you&#8217;re finding new value in TouchSmart 5.0/5.1! As far as the battery icon goes &#8211; I&#8217;m not using the stock mouse from HP on that system, but the keyboard and mouse software always puts up both icons, and I want the software running so some of the non-standard buttons on the keyboard work properly. I&#8217;m surprised you noticed, you must have eagle eyes!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A brief history of five TouchSmart generations&#8211;pioneering ideas for Windows 8 by Dave</title>
		<link>http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/comment-page-1/#comment-94843</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Wed, 02 Nov 2011 18:23:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/#comment-94843</guid>
		<description>A PS: If the &quot;Automatic Panning/Scrolling&quot; video was done recently, I&#039;d check the batteries in your Mouse....</description>
		<content:encoded><![CDATA[<p>A PS: If the &#8220;Automatic Panning/Scrolling&#8221; video was done recently, I&#8217;d check the batteries in your Mouse&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A brief history of five TouchSmart generations&#8211;pioneering ideas for Windows 8 by Dave</title>
		<link>http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/comment-page-1/#comment-94840</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Wed, 02 Nov 2011 18:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/#comment-94840</guid>
		<description>Just a note to say how wonderful it&#039;s been upgrading a TS 804 from 3.0 to 4.0 to 5.0 all within a 24 hour timespan.
Additionally, I wholeheartedly concur with the &#039;merging&#039; of Windows 7 desktop functionality into a TouchSmart environment make me a much more avid and consistant TS user;  3.0 was old, stodgy and not run much but with the incorporation of Canvas in 4.0, I begen using &quot;that side&quot; of my HP more  Now, after the successful upgrade to 5.0, it&#039;s the best of both worlds, and, MUCH smoother than the Windows 8 I have on a seperate partition.
A wonderful job very well done!  Thank you</description>
		<content:encoded><![CDATA[<p>Just a note to say how wonderful it&#8217;s been upgrading a TS 804 from 3.0 to 4.0 to 5.0 all within a 24 hour timespan.<br />
Additionally, I wholeheartedly concur with the &#8216;merging&#8217; of Windows 7 desktop functionality into a TouchSmart environment make me a much more avid and consistant TS user;  3.0 was old, stodgy and not run much but with the incorporation of Canvas in 4.0, I begen using &#8220;that side&#8221; of my HP more  Now, after the successful upgrade to 5.0, it&#8217;s the best of both worlds, and, MUCH smoother than the Windows 8 I have on a seperate partition.<br />
A wonderful job very well done!  Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A brief history of five TouchSmart generations&#8211;pioneering ideas for Windows 8 by Jag20</title>
		<link>http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/comment-page-1/#comment-94763</link>
		<dc:creator>Jag20</dc:creator>
		<pubDate>Tue, 01 Nov 2011 03:41:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/#comment-94763</guid>
		<description>I recently bought a 420t and loaded windows 8 for dual boot, but I was unable to install HP touch driver in windows 8! Keyboard and mouse works fine, but not touch. Install program was always looking for Windows7 even when i tried compatibility mode. Touch works on windows 7.

Any help to resolve this issue is greatly appreciated!

Thanks,
Jagan</description>
		<content:encoded><![CDATA[<p>I recently bought a 420t and loaded windows 8 for dual boot, but I was unable to install HP touch driver in windows 8! Keyboard and mouse works fine, but not touch. Install program was always looking for Windows7 even when i tried compatibility mode. Touch works on windows 7.</p>
<p>Any help to resolve this issue is greatly appreciated!</p>
<p>Thanks,<br />
Jagan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Photo Tagger by GeekTieGuy</title>
		<link>http://www.geektieguy.com/simple-photo-tagger/comment-page-1/#comment-94580</link>
		<dc:creator>GeekTieGuy</dc:creator>
		<pubDate>Fri, 28 Oct 2011 15:48:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/?page_id=319#comment-94580</guid>
		<description>Please read the main page on SimplePhotoTagger, if you haven&#039;t yet. The period where I gave away keys has ended. You now purchase a key via PayPal.</description>
		<content:encoded><![CDATA[<p>Please read the main page on SimplePhotoTagger, if you haven&#8217;t yet. The period where I gave away keys has ended. You now purchase a key via PayPal.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Photo Tagger by Stu13</title>
		<link>http://www.geektieguy.com/simple-photo-tagger/comment-page-1/#comment-94520</link>
		<dc:creator>Stu13</dc:creator>
		<pubDate>Thu, 27 Oct 2011 13:54:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/?page_id=319#comment-94520</guid>
		<description>Nice job how can I get the key as well ?</description>
		<content:encoded><![CDATA[<p>Nice job how can I get the key as well ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A brief history of five TouchSmart generations&#8211;pioneering ideas for Windows 8 by GeekTieGuy</title>
		<link>http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/comment-page-1/#comment-94229</link>
		<dc:creator>GeekTieGuy</dc:creator>
		<pubDate>Sat, 22 Oct 2011 18:23:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/#comment-94229</guid>
		<description>Thanks for the comment. Glad to hear it works and that the new version is more useful to you.</description>
		<content:encoded><![CDATA[<p>Thanks for the comment. Glad to hear it works and that the new version is more useful to you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Vista SP1 &#8211; still no audio after resume from sleep by Ricardo Morales</title>
		<link>http://www.geektieguy.com/2008/02/12/vista-sp1-still-no-audio-after-resume-from-sleep/comment-page-1/#comment-94228</link>
		<dc:creator>Ricardo Morales</dc:creator>
		<pubDate>Sat, 22 Oct 2011 18:18:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2008/02/12/vista-sp1-still-no-audio-after-resume-from-sleep/#comment-94228</guid>
		<description>Tom Carruthers: Your suggestion was the only one that has worked with my VAIO VNG-CR220E with Windows Vista (SP2). As you said perhaps it is not the most elegant but it really works. 

What I did as extra was to add a System shortcut in my desktop with some keywords to follow when I have the problem again. For example, &quot;System - Dev Manager- Sound - Realtek - Disable - Enable&quot; (Realtek is my sound card).

Thank you very much for all the suggestions..!!

Cheers

R.</description>
		<content:encoded><![CDATA[<p>Tom Carruthers: Your suggestion was the only one that has worked with my VAIO VNG-CR220E with Windows Vista (SP2). As you said perhaps it is not the most elegant but it really works. </p>
<p>What I did as extra was to add a System shortcut in my desktop with some keywords to follow when I have the problem again. For example, &#8220;System &#8211; Dev Manager- Sound &#8211; Realtek &#8211; Disable &#8211; Enable&#8221; (Realtek is my sound card).</p>
<p>Thank you very much for all the suggestions..!!</p>
<p>Cheers</p>
<p>R.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A brief history of five TouchSmart generations&#8211;pioneering ideas for Windows 8 by BoxeeGrrrl</title>
		<link>http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/comment-page-1/#comment-94227</link>
		<dc:creator>BoxeeGrrrl</dc:creator>
		<pubDate>Sat, 22 Oct 2011 17:58:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/#comment-94227</guid>
		<description>Thanks for this: http://ftp.hp.com/pub/softpaq/sp54501-55000/sp54879.exe

Installed it on top of v4.0 on my 600-1105xt just fine (did a restore point first, just in case) and I must say, I like having Windows and TouchSmart Center all at the same time. I always felt like I was neglecting the TouchSmart software in favor of doing a lot of things at once via the Windows Desktop ;)

Cheers!</description>
		<content:encoded><![CDATA[<p>Thanks for this: <a href="http://ftp.hp.com/pub/softpaq/sp54501-55000/sp54879.exe" rel="nofollow">http://ftp.hp.com/pub/softpaq/sp54501-55000/sp54879.exe</a></p>
<p>Installed it on top of v4.0 on my 600-1105xt just fine (did a restore point first, just in case) and I must say, I like having Windows and TouchSmart Center all at the same time. I always felt like I was neglecting the TouchSmart software in favor of doing a lot of things at once via the Windows Desktop <img src='http://www.geektieguy.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A brief history of five TouchSmart generations&#8211;pioneering ideas for Windows 8 by GeekTieGuy</title>
		<link>http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/comment-page-1/#comment-94181</link>
		<dc:creator>GeekTieGuy</dc:creator>
		<pubDate>Fri, 21 Oct 2011 20:11:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/#comment-94181</guid>
		<description>In theory, the IQ504 can support TS 5.0/5.1. My post was produced on an IQ5xx, so that can serve as a guidepost. Of course, HP won&#039;t support any of that if you call them. Do it at your own risk. But it is doable.</description>
		<content:encoded><![CDATA[<p>In theory, the IQ504 can support TS 5.0/5.1. My post was produced on an IQ5xx, so that can serve as a guidepost. Of course, HP won&#8217;t support any of that if you call them. Do it at your own risk. But it is doable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A brief history of five TouchSmart generations&#8211;pioneering ideas for Windows 8 by Allan Carrigan</title>
		<link>http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/comment-page-1/#comment-94180</link>
		<dc:creator>Allan Carrigan</dc:creator>
		<pubDate>Fri, 21 Oct 2011 19:22:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/#comment-94180</guid>
		<description>I have a question.
I have TouchSmart 504IQ - second generation according above article.
Can it support version 5 or what is the latest version it will support?

Thanks for any feeback you can give.</description>
		<content:encoded><![CDATA[<p>I have a question.<br />
I have TouchSmart 504IQ &#8211; second generation according above article.<br />
Can it support version 5 or what is the latest version it will support?</p>
<p>Thanks for any feeback you can give.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A brief history of five TouchSmart generations&#8211;pioneering ideas for Windows 8 by GeekTieGuy</title>
		<link>http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/comment-page-1/#comment-94175</link>
		<dc:creator>GeekTieGuy</dc:creator>
		<pubDate>Fri, 21 Oct 2011 17:19:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/#comment-94175</guid>
		<description>Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A brief history of five TouchSmart generations&#8211;pioneering ideas for Windows 8 by GeekTieGuy</title>
		<link>http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/comment-page-1/#comment-94174</link>
		<dc:creator>GeekTieGuy</dc:creator>
		<pubDate>Fri, 21 Oct 2011 17:19:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/#comment-94174</guid>
		<description>Hey Domenic! HP is not always the fastest at announcing things. I do try to do my part by keeping an eye on TouchSmartDevZone.com and posting there and on the HP Support Forum every once in a while. Glad you like the update! Thanks for your comment.</description>
		<content:encoded><![CDATA[<p>Hey Domenic! HP is not always the fastest at announcing things. I do try to do my part by keeping an eye on TouchSmartDevZone.com and posting there and on the HP Support Forum every once in a while. Glad you like the update! Thanks for your comment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A brief history of five TouchSmart generations&#8211;pioneering ideas for Windows 8 by Domenic</title>
		<link>http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/comment-page-1/#comment-94171</link>
		<dc:creator>Domenic</dc:creator>
		<pubDate>Fri, 21 Oct 2011 15:22:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektieguy.com/2011/09/26/a-brief-history-of-five-touchsmart-generationspioneering-ideas-for-windows-8/#comment-94171</guid>
		<description>Forgot to mention, great article!</description>
		<content:encoded><![CDATA[<p>Forgot to mention, great article!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

