<?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 Supporting Technology</title>
	<atom:link href="http://incomservice.net/icsblog/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://incomservice.net/icsblog</link>
	<description>Integrity Computer Service Support Blog</description>
	<lastBuildDate>Thu, 02 Feb 2012 01:41:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>Comment on Verizon USB760 not recognized after update by website developmentIT support</title>
		<link>http://incomservice.net/icsblog/2010/software/verizon-usb760-not-recognized-after-update.html/comment-page-1#comment-372</link>
		<dc:creator>website developmentIT support</dc:creator>
		<pubDate>Thu, 02 Feb 2012 01:41:05 +0000</pubDate>
		<guid isPermaLink="false">http://incomservice.net/icsblog/?p=232#comment-372</guid>
		<description>&lt;strong&gt;website developmentIT support...&lt;/strong&gt;

[...]Supporting Technology &#187; Blog Archive &#187; Verizon USB760 not recognized after update[...]...</description>
		<content:encoded><![CDATA[<p><strong>website developmentIT support&#8230;</strong></p>
<p>[...]Supporting Technology &raquo; Blog Archive &raquo; Verizon USB760 not recognized after update[...]&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Verizon USB760 not recognized after update by {{avg&#124;avira&#124;symantec&#124;trojan&#124;shortcut&#124;malware&#124;fireware}</title>
		<link>http://incomservice.net/icsblog/2010/software/verizon-usb760-not-recognized-after-update.html/comment-page-1#comment-366</link>
		<dc:creator>{{avg&#124;avira&#124;symantec&#124;trojan&#124;shortcut&#124;malware&#124;fireware}</dc:creator>
		<pubDate>Mon, 09 Jan 2012 08:24:01 +0000</pubDate>
		<guid isPermaLink="false">http://incomservice.net/icsblog/?p=232#comment-366</guid>
		<description>&lt;strong&gt;{{avg&#124;avira&#124;symantec&#124;trojan&#124;shortcut&#124;malware&#124;fireware}...&lt;/strong&gt;

[...]Supporting Technology &#187; Blog Archive &#187; Verizon USB760 not recognized after update[...]...</description>
		<content:encoded><![CDATA[<p><strong>{{avg|avira|symantec|trojan|shortcut|malware|fireware}&#8230;</strong></p>
<p>[...]Supporting Technology &raquo; Blog Archive &raquo; Verizon USB760 not recognized after update[...]&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Verizon USB760 not recognized after update by IT Support for small Businesses in Berkshire</title>
		<link>http://incomservice.net/icsblog/2010/software/verizon-usb760-not-recognized-after-update.html/comment-page-1#comment-365</link>
		<dc:creator>IT Support for small Businesses in Berkshire</dc:creator>
		<pubDate>Fri, 06 Jan 2012 13:13:17 +0000</pubDate>
		<guid isPermaLink="false">http://incomservice.net/icsblog/?p=232#comment-365</guid>
		<description>&lt;strong&gt;IT Support for small Businesses in Berkshire...&lt;/strong&gt;

[...]Supporting Technology &#187; Blog Archive &#187; Verizon USB760 not recognized after update[...]...</description>
		<content:encoded><![CDATA[<p><strong>IT Support for small Businesses in Berkshire&#8230;</strong></p>
<p>[...]Supporting Technology &raquo; Blog Archive &raquo; Verizon USB760 not recognized after update[...]&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Decrease MySQL database size after deleting records by Rob</title>
		<link>http://incomservice.net/icsblog/2011/software/decrease-mysql-database-size-after-deleting-records.html/comment-page-1#comment-364</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Fri, 06 Jan 2012 02:51:30 +0000</pubDate>
		<guid isPermaLink="false">http://incomservice.net/icsblog/?p=258#comment-364</guid>
		<description>Or script it! :)

#!/bin/bash
#
MYSQL_LOGIN=&#039;-u root -p insert_mysql_admin_password_here&#039;
echo &quot;FLUSH QUERY CACHE;&quot; &#124; mysql $MYSQL_LOGIN &gt; /dev/null
for db in $(echo &quot;SHOW DATABASES;&quot; &#124; mysql $MYSQL_LOGIN &#124; grep -v -e &quot;Database&quot; -e &quot;information_schema&quot;)
 do
        TABLES=$(echo &quot;USE $db; SHOW TABLES;&quot; &#124; mysql $MYSQL_LOGIN &#124;  grep -v Tables_in_)
        echo &quot;Switching to database $db&quot;
        for table in $TABLES
        do
               echo -n &quot; * Optimizing table $table ... &quot;
               echo &quot;USE $db; OPTIMIZE TABLE $table&quot; &#124; mysql $MYSQL_LOGIN &gt;/dev/null
               echo &quot;done.&quot;
        done
done</description>
		<content:encoded><![CDATA[<p>Or script it! <img src='http://incomservice.net/icsblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>#!/bin/bash<br />
#<br />
MYSQL_LOGIN=&#8217;-u root -p insert_mysql_admin_password_here&#8217;<br />
echo &#8220;FLUSH QUERY CACHE;&#8221; | mysql $MYSQL_LOGIN &gt; /dev/null<br />
for db in $(echo &#8220;SHOW DATABASES;&#8221; | mysql $MYSQL_LOGIN | grep -v -e &#8220;Database&#8221; -e &#8220;information_schema&#8221;)<br />
 do<br />
        TABLES=$(echo &#8220;USE $db; SHOW TABLES;&#8221; | mysql $MYSQL_LOGIN |  grep -v Tables_in_)<br />
        echo &#8220;Switching to database $db&#8221;<br />
        for table in $TABLES<br />
        do<br />
               echo -n &#8221; * Optimizing table $table &#8230; &#8221;<br />
               echo &#8220;USE $db; OPTIMIZE TABLE $table&#8221; | mysql $MYSQL_LOGIN &gt;/dev/null<br />
               echo &#8220;done.&#8221;<br />
        done<br />
done</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remove old versions of Java &amp; Install the latest with no auto update! by furniture stores at tucson az</title>
		<link>http://incomservice.net/icsblog/2008/msp/remove-old-versions-of-java-install-the-latest-with-no-auto-update.html/comment-page-1#comment-362</link>
		<dc:creator>furniture stores at tucson az</dc:creator>
		<pubDate>Sun, 01 Jan 2012 08:24:49 +0000</pubDate>
		<guid isPermaLink="false">http://incomservice.net/icsblog/?p=40#comment-362</guid>
		<description>&lt;strong&gt;furniture stores at tucson az...&lt;/strong&gt;

[...]Supporting Technology &#187; Blog Archive &#187; Remove old versions of Java &amp; Install the latest with no auto update![...]...</description>
		<content:encoded><![CDATA[<p><strong>furniture stores at tucson az&#8230;</strong></p>
<p>[...]Supporting Technology &raquo; Blog Archive &raquo; Remove old versions of Java &amp; Install the latest with no auto update![...]&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remove old versions of Java &amp; Install the latest with no auto update! by Dennis</title>
		<link>http://incomservice.net/icsblog/2008/msp/remove-old-versions-of-java-install-the-latest-with-no-auto-update.html/comment-page-1#comment-312</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Mon, 20 Jun 2011 21:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://incomservice.net/icsblog/?p=40#comment-312</guid>
		<description>This script is great, how would i make it so it ignored 2 versions of java though?
I want to remove all but 2 versions.</description>
		<content:encoded><![CDATA[<p>This script is great, how would i make it so it ignored 2 versions of java though?<br />
I want to remove all but 2 versions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hard Drive Full?  &#8211;  Check for iexplore.exe.exp logfile by NAB</title>
		<link>http://incomservice.net/icsblog/2009/xp/iexploreexeexp-in-cprogram-filesinternet-exploreriexploreexeexplog.html/comment-page-1#comment-301</link>
		<dc:creator>NAB</dc:creator>
		<pubDate>Fri, 07 Jan 2011 20:53:56 +0000</pubDate>
		<guid isPermaLink="false">http://incomservice.net/icsblog/?p=187#comment-301</guid>
		<description>just found one on a laptop that was 116 gb taking up the whole freaking drive, only had 108 mb left - has anyone got any idea how this happens, I know it&#039;s something to do with the MS customer experience program but how does this thing get turned on and why does it fill the whole hard drive, no log file should ever be able to do that

NAB :-)</description>
		<content:encoded><![CDATA[<p>just found one on a laptop that was 116 gb taking up the whole freaking drive, only had 108 mb left &#8211; has anyone got any idea how this happens, I know it&#8217;s something to do with the MS customer experience program but how does this thing get turned on and why does it fill the whole hard drive, no log file should ever be able to do that</p>
<p>NAB <img src='http://incomservice.net/icsblog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hard Drive Full?  &#8211;  Check for iexplore.exe.exp logfile by Bryan Blake</title>
		<link>http://incomservice.net/icsblog/2009/xp/iexploreexeexp-in-cprogram-filesinternet-exploreriexploreexeexplog.html/comment-page-1#comment-299</link>
		<dc:creator>Bryan Blake</dc:creator>
		<pubDate>Sat, 04 Dec 2010 22:36:36 +0000</pubDate>
		<guid isPermaLink="false">http://incomservice.net/icsblog/?p=187#comment-299</guid>
		<description>I have just found this file 65 gig text file filling up the hard drive. does anyone know if this is a virus?</description>
		<content:encoded><![CDATA[<p>I have just found this file 65 gig text file filling up the hard drive. does anyone know if this is a virus?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#8230;Back to those UPS invoices by Richard Miller</title>
		<link>http://incomservice.net/icsblog/2010/uncategorized/back-to-those-ups-invoices.html/comment-page-1#comment-268</link>
		<dc:creator>Richard Miller</dc:creator>
		<pubDate>Mon, 08 Mar 2010 16:06:44 +0000</pubDate>
		<guid isPermaLink="false">http://incomservice.net/icsblog/?p=223#comment-268</guid>
		<description>Grin.  Er, I guess it isn&#039;t funny is it?</description>
		<content:encoded><![CDATA[<p>Grin.  Er, I guess it isn&#8217;t funny is it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Where do these viruses come from? by R Miller</title>
		<link>http://incomservice.net/icsblog/2010/uncategorized/where-do-these-viruses-come-from.html/comment-page-1#comment-260</link>
		<dc:creator>R Miller</dc:creator>
		<pubDate>Wed, 03 Feb 2010 15:29:47 +0000</pubDate>
		<guid isPermaLink="false">http://incomservice.net/icsblog/?p=208#comment-260</guid>
		<description>Funny, I never get viruses from Facebook.  Or anywhere.  But then, I use Facebbok to network with friends.  I don&#039;t install apps.  Period.  I don&#039;t click on unknown links.  And so on.

Oh well...</description>
		<content:encoded><![CDATA[<p>Funny, I never get viruses from Facebook.  Or anywhere.  But then, I use Facebbok to network with friends.  I don&#8217;t install apps.  Period.  I don&#8217;t click on unknown links.  And so on.</p>
<p>Oh well&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

