<?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>www.jayntguru.com &#187; computer geek stuff</title>
	<atom:link href="http://jayntguru.com/wordpress/archives/category/computer-geek-stuff/feed" rel="self" type="application/rss+xml" />
	<link>http://jayntguru.com/wordpress</link>
	<description>jay&#039;s website</description>
	<lastBuildDate>Wed, 21 Jul 2010 21:54:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Microsoft, you HAVE to do a better job than this</title>
		<link>http://jayntguru.com/wordpress/archives/275</link>
		<comments>http://jayntguru.com/wordpress/archives/275#comments</comments>
		<pubDate>Wed, 21 Jul 2010 21:54:44 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[annoyances]]></category>
		<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[useless error message]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/275</guid>
		<description><![CDATA[Here’s an error from SCOM.
Performance data collection process was unable load SQL Server Authentication configuration information. Account for RunAs profile in workflow &#34;Microsoft.SystemCenter.DataWarehouse.CollectPerformanceData&#34;, running for instance &#34;INFMGT02.accessgeneral.com&#34; with id:&#34;{81890C12-35B3-7AEA-C0FF-3EFCA7486E97}&#34; is not defined. Workflow will not be loaded. Please associate an account with the profile. Management group &#34;Access&#34;

OK guys WHICH profile? Come on.. how hard is [...]]]></description>
			<content:encoded><![CDATA[<p>Here’s an error from SCOM.</p>
<blockquote><p>Performance data collection process was unable load SQL Server Authentication configuration information. Account for RunAs profile in workflow &quot;Microsoft.SystemCenter.DataWarehouse.CollectPerformanceData&quot;, running for instance &quot;INFMGT02.accessgeneral.com&quot; with id:&quot;{81890C12-35B3-7AEA-C0FF-3EFCA7486E97}&quot; is not defined. Workflow will not be loaded. Please associate an account with the profile. Management group &quot;Access&quot;</p>
</blockquote>
<p>OK guys WHICH profile? Come on.. how hard is this? I mean I can guess, and I have, and guess what? It has one associated.</p>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/275/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.net health monitoring</title>
		<link>http://jayntguru.com/wordpress/archives/273</link>
		<comments>http://jayntguru.com/wordpress/archives/273#comments</comments>
		<pubDate>Tue, 20 Jul 2010 18:32:33 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[application lifetime events]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[exceptions]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/273</guid>
		<description><![CDATA[This is a little blurb I use almost everywhere for almost everything that will log all sorts of useful info about a .net app in the application log. It will grab unhandled exceptions as well as application lifetime events (app pool or domain restarts, etc.) This is a really good one to use when your [...]]]></description>
			<content:encoded><![CDATA[<p>This is a little blurb I use almost everywhere for almost everything that will log all sorts of useful info about a .net app in the application log. It will grab unhandled exceptions as well as application lifetime events (app pool or domain restarts, etc.) This is a really good one to use when your devs won’t add this to the code themselves! It will work (or has for me) straight up in any .net code. All you do is place this in the web.config.</p>
<blockquote><p>&lt;healthMonitoring enabled=&quot;true&quot;&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160; &lt;eventMappings&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;clear /&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;!&#8211; Log ALL error events &#8211;&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;add name=&quot;All Errors&quot; type=&quot;System.Web.Management.WebBaseErrorEvent&quot; startEventCode=&quot;0&quot; endEventCode=&quot;2147483647&quot; /&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;!&#8211; Log application startup/shutdown events &#8211;&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;add name=&quot;Application Lifetime Events&quot; type=&quot;System.Web.Management.WebApplicationLifetimeEvent&quot; startEventCode=&quot;0&quot; endEventCode=&quot;2147483647&quot;/&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160; &lt;/eventMappings&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160; &lt;rules&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;clear /&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;add name=&quot;Application Events&quot; eventName=&quot;Application Lifetime Events&quot; provider=&quot;EventLogProvider&quot; profile=&quot;Default&quot; minInstances=&quot;1&quot; maxLimit=&quot;Infinite&quot; minInterval=&quot;00:01:00&quot; custom=&quot;&quot; /&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;add name=&quot;All Errors Default&quot; eventName=&quot;All Errors&quot; provider=&quot;EventLogProvider&quot; profile=&quot;Default&quot; minInstances=&quot;1&quot; maxLimit=&quot;Infinite&quot; minInterval=&quot;00:00:00&quot; /&gt;</p>
<p>&#160;&#160;&#160;&#160;&#160; &lt;/rules&gt;</p>
<p>&#160;&#160;&#160; &lt;/healthMonitoring&gt;</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/273/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SCOM 2007 R2 &#8211; workgroup/DMZ server notes</title>
		<link>http://jayntguru.com/wordpress/archives/272</link>
		<comments>http://jayntguru.com/wordpress/archives/272#comments</comments>
		<pubDate>Thu, 01 Jul 2010 18:55:03 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[annoyances]]></category>
		<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[dmz workgroup scom 2007 r2 ssl pki instructions]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/272</guid>
		<description><![CDATA[This is harder than it should be. Here are my notes on doing this.
1. On cert server go here: http://blah/certsrv/
2. request cert. choose type other and paste in the below OID
3. OID = 1.3.6.1.5.5.7.3.1,1.3.6.1.5.5.7.3.2
4. Make sure to check key exportable. Make sure to use FQDN of server for name and common name.
5. Open up server [...]]]></description>
			<content:encoded><![CDATA[<p>This is harder than it should be. Here are my notes on doing this.</p>
<p>1. On cert server go here: <a href="http://blah/certsrv/">http://blah/certsrv/</a></p>
<p>2. request cert. choose type other and paste in the below OID</p>
<p>3. OID = 1.3.6.1.5.5.7.3.1,1.3.6.1.5.5.7.3.2</p>
<p>4. Make sure to check key exportable. Make sure to use FQDN of server for name and common name.</p>
<p>5. Open up server mgt for certificate manager and approve.</p>
<p>6. Go back to website, install the cert.</p>
<p>7. Mmc, certificates for personal. Export the cert. make private key exportable.</p>
<p>8. Copy cert to client server.</p>
<p>9. On server do mmc for client, import cert, mark as exportable.</p>
<p>10. Run momcertimport on client, choose cert.</p>
<p>11. Restart system center manager service on client.</p>
<p>12. Wait a min and go to mom console, administration, pending management. Approve it.</p>
<p>13. Done!</p>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/272/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dear SCOM. You blew it</title>
		<link>http://jayntguru.com/wordpress/archives/271</link>
		<comments>http://jayntguru.com/wordpress/archives/271#comments</comments>
		<pubDate>Sun, 30 May 2010 15:46:10 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[annoyances]]></category>
		<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[scom certificates fail]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/271</guid>
		<description><![CDATA[In case you weren’t aware, for SCOM to work against a non domain machine, all manner of certificates is required between the RMS and the agents in order for this to work. Not only is it required, but you have to use the fairly archaic tools provided with certificates, oh, and you will need your [...]]]></description>
			<content:encoded><![CDATA[<p>In case you weren’t aware, for SCOM to work against a non domain machine, all manner of certificates is required between the RMS and the agents in order for this to work. Not only is it required, but you have to use the fairly archaic tools provided with certificates, oh, and you will need your own certificate authority too. This is such a complete and utter #FAIL that I don’t really know where to start. Mainly my issue is that it doesn’t need to be this hard.. if someone wants to see the CPU time on my webserver, then by all means, hack in, but damn if I care enough to go through this level of work for it. And that brings me to my second issue, the shit just doesn’t work. Sure you could say this is a “rush it out the door” kinda thing, but this happened back in 2007 and there have been plenty of releases including an R2 version, yet still this useless and archaic process is still in place.</p>
<p>So in short, the SCOM guys failed by over-complicating something that isn’t needed, and then making it 10 times more difficult than necessary. FAIL.</p>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/271/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adsiedit.msc &#8211; where is it?</title>
		<link>http://jayntguru.com/wordpress/archives/269</link>
		<comments>http://jayntguru.com/wordpress/archives/269#comments</comments>
		<pubDate>Wed, 26 May 2010 14:40:19 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[adsi dc spn scom]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/269</guid>
		<description><![CDATA[I was trying to use this and did not realize it was not installed. In order to get it you need to install the support tools. They are on the windows server 2003 cd, or can be downloaded here.
]]></description>
			<content:encoded><![CDATA[<p>I was trying to use this and did not realize it was not installed. In order to get it you need to install the support tools. They are on the windows server 2003 cd, or <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=96a35011-fd83-419d-939b-9a772ea2df90&amp;displaylang=en" target="_blank">can be downloaded here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/269/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>highpoint rocketraid and high cpu use</title>
		<link>http://jayntguru.com/wordpress/archives/268</link>
		<comments>http://jayntguru.com/wordpress/archives/268#comments</comments>
		<pubDate>Fri, 14 May 2010 03:47:04 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[highpoint rocketraid 2300 2310 23xx high cpu driver management web version]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/268</guid>
		<description><![CDATA[I have a Highpoint RockerRaid2310 in my server at the house. For some time I have had an issue with the “HighPoint RAID Management Service”, which runs an .exe called “hptsvr.exe”, which then runs “drvinst32.exe”, taking up a lot of cpu time. In my case the server was a quad core and it took 25% [...]]]></description>
			<content:encoded><![CDATA[<p>I have a <a href="http://www.highpoint-tech.com/usa/rr2310.htm" target="_blank">Highpoint RockerRaid2310</a> in <a href="http://jayntguru.com/wordpress/computer-geek-stuff/server-and-such" target="_blank">my server</a> at the house. For some time I have had an issue with the “HighPoint RAID Management Service”, which runs an .exe called “hptsvr.exe”, which then runs “drvinst32.exe”, taking up a lot of cpu time. In my case the server was a quad core and it took 25% of the total CPU. Everything would work just fine, but this bothered me for a lot of reasons, so I would leave the service set to manual unless I needed to run the card’s management software. In that case I would start the service, do the management, then kill the offending .exe. Life went on.</p>
<p>Recently I decided I wanted to use more of the features of this card, so I went looking for a fix. There were several random internet posts about the problem but no one had a fix for it. Contacting HighPoint support seemed like the obvious thing to do, so that’s what I did, and they proved helpful.</p>
<p>In my case I was running the older management software, which was version 3.14.5. This was the latest version of it. I was also already running the latest version of the firmware (2.5) and windows driver (2.3). At the advice of HighPoint’s support, I switched to the web management software which is version 1.5.3. I did have an issue with the new software installing itself in the same directory as the old software, which broke my ability to uninstall the old stuff, so my recommendation if you do this is to uninstall the old version first. This has left an uninstall for the old version in add/remove and for now I’m just going to leave it, but that’s not hard to clean up.</p>
<p>So now life is good, I can schedule verify tasks, get emailed if a disk fails, all that good stuff. Basically, things are working as they should.</p>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/268/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>scom 2007 r2 cumulative update 2 (cu2) update notes</title>
		<link>http://jayntguru.com/wordpress/archives/266</link>
		<comments>http://jayntguru.com/wordpress/archives/266#comments</comments>
		<pubDate>Thu, 06 May 2010 18:23:24 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[scom r2 cu2 install notes]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/266</guid>
		<description><![CDATA[Download it here
Microsoft’s KB article on it
Installing it
Applying update to a clustered RMS
If the install fails and you need to run it again, this is where it installs it (on an x64 system)
C:\Program Files (x86)\System Center 2007 R2 Hotfix Utility\
If the install fails and you need to run it again, this is where it installs [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=61714687-668a-46e4-b127-ad8519594351" target="_blank">Download it here</a></p>
<p><a href="http://support.microsoft.com/kb/979257" target="_blank">Microsoft’s KB article on it</a></p>
<p><a href="http://blogs.technet.com/kevinholman/archive/2010/04/30/opsmgr-2007-r2-cu2-rollup-hotfix-ships-and-my-experience-installing-it.aspx" target="_blank">Installing it</a></p>
<p><a href="http://blogs.technet.com/kevinholman/archive/2010/03/02/how-to-apply-a-scom-hotfix-to-a-clustered-rms.aspx" target="_blank">Applying update to a clustered RMS</a></p>
<p>If the install fails and you need to run it again, this is where it installs it (on an x64 system)</p>
<p>C:\Program Files (x86)\System Center 2007 R2 Hotfix Utility\</p>
<p>If the install fails and you need to run it again, this is where it installs it (on a 32bit system)</p>
<p>C:\Program Files\System Center 2007 R2 Hotfix Utility\</p>
<p><a href="http://thoughtsonopsmgr.blogspot.com/2010/01/kb974144-cumulative-update-1-for-scom_28.html" target="_blank">If the install fails, this is probably why</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/266/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IIS6 potential gotcha</title>
		<link>http://jayntguru.com/wordpress/archives/265</link>
		<comments>http://jayntguru.com/wordpress/archives/265#comments</comments>
		<pubDate>Wed, 14 Apr 2010 20:35:58 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[iis6 .net 2.0 web service extension missing]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/265</guid>
		<description><![CDATA[If you install .net 2.0 before you install IIS6 then you will not be able to see .net 2 in the allowed extensions list because it&#160; needs to register with IIS. Here’s a screenshot where it is missing:
 
&#160;
To resolve this, go to the following directory:
c:\windows\Microsoft.Net\Framework\v2.0.50727
Then run this command:
aspnet_regiis.exe –i
Now you can refresh the MMC [...]]]></description>
			<content:encoded><![CDATA[<p>If you install .net 2.0 before you install IIS6 then you will not be able to see .net 2 in the allowed extensions list because it&#160; needs to register with IIS. Here’s a screenshot where it is missing:</p>
<p><a href="http://jayntguru.com/wordpress/wp-content/uploads/2010/04/image.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://jayntguru.com/wordpress/wp-content/uploads/2010/04/image_thumb.png" width="697" height="267" /></a> </p>
<p>&#160;</p>
<p>To resolve this, go to the following directory:</p>
<p>c:\windows\Microsoft.Net\Framework\v2.0.50727</p>
<p>Then run this command:</p>
<p>aspnet_regiis.exe –i</p>
<p>Now you can refresh the MMC and enable .net 2.0!</p>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/265/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sysinternals updates + new site</title>
		<link>http://jayntguru.com/wordpress/archives/261</link>
		<comments>http://jayntguru.com/wordpress/archives/261#comments</comments>
		<pubDate>Thu, 01 Apr 2010 16:06:44 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[sysinternals mark debugging windows internals]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/261</guid>
		<description><![CDATA[I previously posted links to Mark Russinovich&#8217;s blog because he posts cool stuff about how windows really&#160; works and I think it’s interesting stuff. Anyway he has two new posts about GDI objects.

Pushing the Limits of Windows: USER and GDI Objects – Part 1
Pushing the Limits of Windows: USER and GDI Objects – Part 2

Also [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jayntguru.com/wordpress/archives/224" target="_blank">I previously posted links</a> to <a href="http://blogs.technet.com/markrussinovich/" target="_blank">Mark Russinovich&#8217;s blog</a> because he posts cool stuff about how windows <em>really</em>&#160; works and I think it’s interesting stuff. Anyway he has two new posts about GDI objects.</p>
<ul>
<li><a href="http://blogs.technet.com/markrussinovich/archive/2010/02/24/3315174.aspx" target="_blank">Pushing the Limits of Windows: USER and GDI Objects – Part 1</a></li>
<li><a href="http://blogs.technet.com/markrussinovich/archive/2010/03/31/3322423.aspx" target="_blank">Pushing the Limits of Windows: USER and GDI Objects – Part 2</a></li>
</ul>
<p><a href="http://blogs.msdn.com/ntdebugging/" target="_blank">Also while reading these articles I saw a link to the NT Debugging blog.</a> This one looks to be very interesting too in a similar way so I have added it to my rss reader.</p>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/261/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>windows dns server and EDns &#8211; update (added namebench info/link)</title>
		<link>http://jayntguru.com/wordpress/archives/259</link>
		<comments>http://jayntguru.com/wordpress/archives/259#comments</comments>
		<pubDate>Tue, 30 Mar 2010 14:09:00 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[dns edns 2003 2008 r2 server windows]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/259</guid>
		<description><![CDATA[I have had an issue with DNS server in Windows 2003 server previously that’s covered pretty well in this article&#160;by my buddy Marcus. The short version is that EDNS is enabled by default on 2003 server, and this doesn’t play well with the rest of the internet, so it’s best to turn it off if [...]]]></description>
			<content:encoded><![CDATA[<p>I have had an issue with DNS server in Windows 2003 server previously that’s <a href="http://www.myitforum.com/articles/16/view.asp?id=7491" target="_blank">covered pretty well in this article</a>&#160;<a href="http://marcusoh.blogspot.com/" target="_blank">by my buddy Marcus.</a> The short version is that EDNS is enabled by default on 2003 server, and this doesn’t play well with the rest of the internet, so it’s best to turn it off if you are using windows 2003 for external (internet) DNS.</p>
<p>Right now I’m working on a Windows 2008 R2 server and was having similar problems that made me check for EDNS many moons ago on 2003 server. <a href="http://weblogs.asp.net/owscott/archive/2009/09/15/windows-server-2008-r2-dns-issues.aspx" target="_blank">This link came up in a search</a> and it says that they made EDNS off in 2008 RTM, but it’s back on again in R2. He includes a <a href="http://support.microsoft.com/kb/832223" target="_blank">link to Microsoft&#8217;s KB article about EDNS.</a>&#160;</p>
<p>Luckily this is pretty easy to turn off. All you do is run this command:</p>
<p><font face="Courier New">dnscmd /config /enableednsprobes 0</font></p>
<p>I wanted to update this post with a link to a cool tool I have been using. It’s called <a href="http://code.google.com/p/namebench/" target="_blank">name bench</a> and it’s a DNS benchmarking tool. Works good, does exactly what you want, and the price is right.</p>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/259/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
