<?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>GadgetHubs</title>
	<atom:link href="http://gadgethubs.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://gadgethubs.com</link>
	<description>always updating gadget news</description>
	<lastBuildDate>Fri, 03 Sep 2010 21:42:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Modify LDAP entries with the ldapmodify command</title>
		<link>http://gadgethubs.com/modify-ldap-entries-with-the-ldapmodify-command/</link>
		<comments>http://gadgethubs.com/modify-ldap-entries-with-the-ldapmodify-command/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 21:42:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[Entries]]></category>
		<category><![CDATA[LDAP]]></category>
		<category><![CDATA[ldapmodify]]></category>
		<category><![CDATA[Modify]]></category>

		<guid isPermaLink="false">http://gadgethubs.com/modify-ldap-entries-with-the-ldapmodify-command/</guid>
		<description><![CDATA[Recently I&#8217;ve done a number of articles covering the Lightweight Directory Access Protocol (LDAP) which range from installation, adding entries, to full-blown GUI management tools (See LDAP content on Ghacks for more information). If you&#8217;re in the dark about LDAP is an application protocol that allows the querying and modifying of directory services data implemented on IP networks. Basically [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve done a number of articles covering the Lightweight Directory Access Protocol (LDAP) which range from installation, adding entries, to full-blown GUI management tools (See <a title="LDAP on Ghacks" href="http://www.ghacks.net/index.php?s=LDAP" target="_blank">LDAP content on Ghacks</a> for more information). If you&#8217;re in the dark about LDAP is an application protocol that allows the querying and modifying of directory services data implemented on IP networks. Basically it&#8217;s a complex, large, directory of information of various forms that can be used for many, varied implementations (company addressbooks, application authentication, etc).</p>
<p>Once LDAP is installed you have, at your fingertips, plenty of tools to add, edit, and delete data on that server. One of those tools is critical to keeping data current. That tool is <em>ldapmodify. </em>In this article I am going to show you how to use this tool to modify an entry in an LDAP server.</p>
<p><span id="more-33881"></span><strong>Command basics</strong></p>
<p>The ldapmodify command isn&#8217;t exactly like all other commands. Instead of just running a single command and being done with it, you issue the command, do you work, and then escape out of the command. The actual modification of the data doesn&#8217;t happen until you escape the command. The sequence goes like this:</p>
<ol>
<li>Issue the ldapmodify command (with appropriate options).</li>
<li>Inform ldapmodify what you are modifying.</li>
<li>Modify your data.</li>
<li>Escape with CTRL-d.</li>
<li>ldapmodify will make the changes.</li>
</ol>
<p>Yes, it does seem like a fairly complex process&#8230;and yes it is a complex, but a very necessary process.</p>
<p>Let&#8217;s take a look at the actual process. As an example I am going to modify the gecos entry of an already existing directory entry. The gecos entry is a general information field that can be used for just about anything). Let&#8217;s have some fun and change the gecos entry for user scooper and indicate that Sheldon Cooper is a Theoretical Physicist at Caltech University. We&#8217;ll assume the gecos entry only contains the information &#8220;Sheldon Cooper&#8221; and the LDAP server&#8217;s is on 192.168.1.10 and the full dc is wallen.local. Here is the actual process for this task:</p>
<p>Issue the command:</p>
<p><code>ldapmodify -h localhost -x -W -D "cn=admin,dc=wallen,dc=local"</code></p>
<p>It will now seem like the command is stuck. It&#8217;s actually just waiting for input. The input will look like this (hit Enter after each line):</p>
<p><code>dn: uid=scooper,ou=People,dc=wallen,dc=local<br /> changetype: modify<br /> replace: gecos<br /> gecos: Theoretical Physicist, Caltech University</code></p>
<p>Once you have completed entering this text, hit Enter, and then hit CTRL-d to escape the command and then you should see something like:</p>
<p><code>modifying entry "uid=scooper,ou=People,dc=wallen,dc=local"</code></p>
<p>Now if you issue the ldapsearch command you will see the changes made. The ldapsearch command would look something like:</p>
<p><code>ldapsearch -x -b "dc=wallen,dc=local" -s sub "objectclass=*"</code></p>
<p>You should see Sheldon&#8217;s listing like this:</p>
<p><code># scooper, People, wallen.local<br /> dn: uid=scooper,ou=People,dc=wallen,dc=local<br /> uid: scooper<br /> cn: Sheldon Cooper<br /> objectClass: account<br /> objectClass: posixAccount<br /> objectClass: top<br /> loginShell: /bin/bash<br /> uidNumber: 500<br /> gidNumber: 120<br /> homeDirectory: /home/scooper<br /> gecos: Theoretical Physicist Caltech University</code></p>
<p>You now have modified the entry. Of course you aren&#8217;t limited to the gecos entry. You can actually modify any entry you want using the same technique.</p>
<p><strong>Final thoughts</strong></p>
<p>Hopefully LDAP is getting easier and easier for you. You can now add and modify entries. We will keep digging and eventually you will have the LDAP basics mastered.</p>
<hr />
<p><small>© Jack Wallen for <a href="http://www.ghacks.net">gHacks Technology News</a>, 2010. | <a href="http://www.ghacks.net/2010/09/03/modify-ldap-entries-with-the-ldapmodify-command/">Permalink</a> | Add to <a href="http://del.icio.us/post?url=http://www.ghacks.net/2010/09/03/modify-ldap-entries-with-the-ldapmodify-command/&#038;title=Modify LDAP entries with the ldapmodify command">del.icio.us</a>, <a href="http://digg.com/submit?phase=2&#038;url=http://www.ghacks.net/2010/09/03/modify-ldap-entries-with-the-ldapmodify-command/">digg</a>, <a href="http://www.facebook.com/sharer.php?u=http://www.ghacks.net/2010/09/03/modify-ldap-entries-with-the-ldapmodify-command/&#038;t=Modify LDAP entries with the ldapmodify command">facebook</a>, <a href="http://reddit.com/submit?url=http://www.ghacks.net/2010/09/03/modify-ldap-entries-with-the-ldapmodify-command/&#038;title=Modify LDAP entries with the ldapmodify command">reddit</a>, <a href="http://www.stumbleupon.com/submit?url=http://www.ghacks.net/2010/09/03/modify-ldap-entries-with-the-ldapmodify-command/&#038;title=Modify LDAP entries with the ldapmodify command</a>stumbleupon</a>, <a href="http://twitter.com/home?status=Currently reading http://www.ghacks.net/2010/09/03/modify-ldap-entries-with-the-ldapmodify-command/" title="Modify LDAP entries with the ldapmodify command">twitter</a><br/> Post tags: <a href="http://www.ghacks.net/tag/directory-server/" rel="tag">Directory Server</a>, <a href="http://www.ghacks.net/tag/ldap/" rel="tag">LDAP</a>, <a href="http://www.ghacks.net/tag/ldapsearch/" rel="tag">ldapsearch</a><br/> </small></p>
<p><a rel="nofollow" href="http://www.ghacks.net/2010/09/03/modify-ldap-entries-with-the-ldapmodify-command/">gHacks Technology News</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d1098').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d1098" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fgadgethubs.com%2Fmodify-ldap-entries-with-the-ldapmodify-command%2F&amp;submitHeadline=Modify+LDAP+entries+with+the+ldapmodify+command&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fgadgethubs.com%2Fmodify-ldap-entries-with-the-ldapmodify-command%2F&amp;title=Modify+LDAP+entries+with+the+ldapmodify+command" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgadgethubs.com%2Fmodify-ldap-entries-with-the-ldapmodify-command%2F&amp;title=Modify+LDAP+entries+with+the+ldapmodify+command" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fgadgethubs.com%2Fmodify-ldap-entries-with-the-ldapmodify-command%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fgadgethubs.com%2Fmodify-ldap-entries-with-the-ldapmodify-command%2F&amp;title=Modify+LDAP+entries+with+the+ldapmodify+command" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fgadgethubs.com%2Fmodify-ldap-entries-with-the-ldapmodify-command%2F&amp;bm_description=Modify+LDAP+entries+with+the+ldapmodify+command" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fgadgethubs.com%2Fmodify-ldap-entries-with-the-ldapmodify-command%2F&amp;T=Modify+LDAP+entries+with+the+ldapmodify+command" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fmodify-ldap-entries-with-the-ldapmodify-command%2F&amp;title=Modify+LDAP+entries+with+the+ldapmodify+command" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fmodify-ldap-entries-with-the-ldapmodify-command%2F&amp;title=Modify+LDAP+entries+with+the+ldapmodify+command" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fgadgethubs.com%2Fmodify-ldap-entries-with-the-ldapmodify-command%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fgadgethubs.com%2Fmodify-ldap-entries-with-the-ldapmodify-command%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Modify+LDAP+entries+with+the+ldapmodify+command+@+http%3A%2F%2Fgadgethubs.com%2Fmodify-ldap-entries-with-the-ldapmodify-command%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fgadgethubs.com%2Fmodify-ldap-entries-with-the-ldapmodify-command%2F&amp;t=Modify+LDAP+entries+with+the+ldapmodify+command" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d1098').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d1098').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://gadgethubs.com/modify-ldap-entries-with-the-ldapmodify-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drive-Thru Disk Management Software</title>
		<link>http://gadgethubs.com/drive-thru-disk-management-software/</link>
		<comments>http://gadgethubs.com/drive-thru-disk-management-software/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 18:42:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[Disk]]></category>
		<category><![CDATA[DriveThru]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://gadgethubs.com/drive-thru-disk-management-software/</guid>
		<description><![CDATA[Drive-Thru is a portable disk management software for Windows. The software offers direct disk related configuration changes in an easy to use interface. The program displays different options on the startup window, and in three other tabs. In the drive security tab it is possible to hide drives from the computer, lock drives and disallow [...]]]></description>
			<content:encoded><![CDATA[<p>Drive-Thru is a portable disk management software for <a href="http://www.ghacks.net/category/windows">Windows</a>. The software offers direct disk related configuration changes in an easy to use interface.</p>
<p>The program displays different options on the startup window, and in three other tabs. In the drive security tab it is possible to hide drives from the computer, lock drives and disallow autorun for specific drive letters. Autorun can also be disabled for drive types, with individual options available for USB Flash Disk / floppy disk, hdd hard disk drives, CD and DVD drives and RAM disks.</p>
<p>It is for instance possible to hide drive a from being displayed in Windows, especially if that drive is not even available in the operating system. Note, Windows 7 does that automatically as it hides drives without medium automatically.</p>
<div id="attachment_33894" class="wp-caption alignnone" style="width: 510px"><a href="http://www.ghacks.net/wp-content/uploads/2010/09/drive-security.png"><img src="http://www.ghacks.net/wp-content/uploads/2010/09/drive-security-500x479.png" alt="drive security" title="drive security" width="500" height="479" class="size-medium wp-image-33894" /></a>
<p class="wp-caption-text">drive security</p>
</div>
<p>The drive substitution tab offers to set drive letters to folders of the operating system with the option to perform the operation on every start of the system. It performs the same operation as the subst command line tool.</p>
<div id="attachment_33895" class="wp-caption alignnone" style="width: 510px"><a href="http://www.ghacks.net/wp-content/uploads/2010/09/disk-management.png"><img src="http://www.ghacks.net/wp-content/uploads/2010/09/disk-management-500x478.png" alt="disk management" title="disk management" width="500" height="478" class="size-medium wp-image-33895" /></a>
<p class="wp-caption-text">disk management</p>
</div>
<p>Drive monitoring supposedly allows a user to monitor selected drives. This threw some error messages on our Windows 7 64-bit test system. It may be incompatible with 64-bit systems and work fine with 32-bit systems. We had to kill the Drive-Thru process though because the monitoring could not be stopped, even though the controls to cancel and stop were displayed on the screen.</p>
<p>The final tab offers several features on one page. It can be used to configure drive labels and icons, display drive related information, convert drives to the NTFS file format, define if and how the drive letter shall be displayed, enable write protection for removable drives and select the drives that are accessible in drive explorer on the computer desktop.</p>
<p><a href="http://www.softpedia.com/get/System/Hard-Disk-Utils/Drive-Thru.shtml">Drive-Thru</a> is an interesting portable program for Windows, that can aid the user in configuring various drive related settings. We would recommend to stay away from the drive monitoring feature though, as it seems to be buggy at this time. There are other programs that work better and without errors. (via <a href="http://www.jkwebtalks.com/2010/09/drive-thru-comprehensive-disk.html">JKWebTalks</a>)</p>
<hr />
<p><small>© Martin  for <a href="http://www.ghacks.net">gHacks Technology News</a>, 2010. | <a href="http://www.ghacks.net/2010/09/03/drive-thru-disk-management-software/">Permalink</a> | Add to <a href="http://del.icio.us/post?url=http://www.ghacks.net/2010/09/03/drive-thru-disk-management-software/&#038;title=Drive-Thru Disk Management Software">del.icio.us</a>, <a href="http://digg.com/submit?phase=2&#038;url=http://www.ghacks.net/2010/09/03/drive-thru-disk-management-software/">digg</a>, <a href="http://www.facebook.com/sharer.php?u=http://www.ghacks.net/2010/09/03/drive-thru-disk-management-software/&#038;t=Drive-Thru Disk Management Software">facebook</a>, <a href="http://reddit.com/submit?url=http://www.ghacks.net/2010/09/03/drive-thru-disk-management-software/&#038;title=Drive-Thru Disk Management Software">reddit</a>, <a href="http://www.stumbleupon.com/submit?url=http://www.ghacks.net/2010/09/03/drive-thru-disk-management-software/&#038;title=Drive-Thru Disk Management Software</a>stumbleupon</a>, <a href="http://twitter.com/home?status=Currently reading http://www.ghacks.net/2010/09/03/drive-thru-disk-management-software/" title="Drive-Thru Disk Management Software">twitter</a><br/> Post tags: <a href="http://www.ghacks.net/tag/disk-management/" rel="tag">disk management</a>, <a href="http://www.ghacks.net/tag/disk-management-software/" rel="tag">disk management software</a>, <a href="http://www.ghacks.net/tag/drive-thru/" rel="tag">drive thru</a>, <a href="http://www.ghacks.net/tag/hard-drives/" rel="tag">hard-drives</a>, <a href="http://www.ghacks.net/tag/portable-software/" rel="tag">portable software</a>, <a href="http://www.ghacks.net/tag/windows-software/" rel="tag">windows software</a><br/> </small></p>
<p><a rel="nofollow" href="http://www.ghacks.net/2010/09/03/drive-thru-disk-management-software/">gHacks Technology News</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d1097').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d1097" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fgadgethubs.com%2Fdrive-thru-disk-management-software%2F&amp;submitHeadline=Drive-Thru+Disk+Management+Software&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fgadgethubs.com%2Fdrive-thru-disk-management-software%2F&amp;title=Drive-Thru+Disk+Management+Software" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgadgethubs.com%2Fdrive-thru-disk-management-software%2F&amp;title=Drive-Thru+Disk+Management+Software" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fgadgethubs.com%2Fdrive-thru-disk-management-software%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fgadgethubs.com%2Fdrive-thru-disk-management-software%2F&amp;title=Drive-Thru+Disk+Management+Software" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fgadgethubs.com%2Fdrive-thru-disk-management-software%2F&amp;bm_description=Drive-Thru+Disk+Management+Software" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fgadgethubs.com%2Fdrive-thru-disk-management-software%2F&amp;T=Drive-Thru+Disk+Management+Software" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fdrive-thru-disk-management-software%2F&amp;title=Drive-Thru+Disk+Management+Software" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fdrive-thru-disk-management-software%2F&amp;title=Drive-Thru+Disk+Management+Software" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fgadgethubs.com%2Fdrive-thru-disk-management-software%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fgadgethubs.com%2Fdrive-thru-disk-management-software%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Drive-Thru+Disk+Management+Software+@+http%3A%2F%2Fgadgethubs.com%2Fdrive-thru-disk-management-software%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fgadgethubs.com%2Fdrive-thru-disk-management-software%2F&amp;t=Drive-Thru+Disk+Management+Software" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d1097').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d1097').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://gadgethubs.com/drive-thru-disk-management-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Group Communication Software RaidCall</title>
		<link>http://gadgethubs.com/group-communication-software-raidcall/</link>
		<comments>http://gadgethubs.com/group-communication-software-raidcall/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 15:42:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[Communication]]></category>
		<category><![CDATA[Group]]></category>
		<category><![CDATA[RaidCall]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://gadgethubs.com/group-communication-software-raidcall/</guid>
		<description><![CDATA[Voice communication has become an essential part of multiplayer gaming, from professional e-sports to guilds in World of Warcraft, video gamers and friends who play shooters or strategy games in the evening. PC gamers basically have the choice between three different types of voice communication applications. First those that are implemented directly in a game, [...]]]></description>
			<content:encoded><![CDATA[<p>Voice communication has become an essential part of multiplayer gaming, from professional e-sports to guilds in World of Warcraft, video gamers and friends who play shooters or strategy games in the evening. PC gamers basically have the choice between three different types of voice communication applications.</p>
<p>First those that are implemented directly in a game, then third party software that uses client and server communication, and finally software that requires only a client.</p>
<p>RaidCall belongs to the third group, as users only need to install the client software to use the voice communication software. That&#8217;s different from comparable solutions such as Teamspeak or Ventrilo which both require a server running the server software before they can be used.</p>
<p>RaidCall clients communicate directly with a master server that transfers the data to the connected clients. Because of this, it supports up to 1000 clients per channel. The number of clients per server is however limited to 30 at this moment. It can be increased by inviting new users. Each new user increases the limit by one.</p>
<div id="attachment_33883" class="wp-caption alignnone" style="width: 510px"><a href="http://www.ghacks.net/wp-content/uploads/2010/09/raidcall.png"><img src="http://www.ghacks.net/wp-content/uploads/2010/09/raidcall-500x424.png" alt="raidcall" title="raidcall" width="500" height="424" class="size-medium wp-image-33883" /></a>
<p class="wp-caption-text">raidcall</p>
</div>
<p>Users can log in anonymously to start chatting right away, or create a free account which is required to create a free Raidcall server and use the friend&#8217;s list for basic social networking features.</p>
<p>One interesting feature of Raidcall is the ability to display an overlay control window whenever it is needed. Raidcall uses less resources than Teamspeak, the only other voice communication software we had installed on our test server. The software used about 27 Megabytes of RAM while running on the 64-bit test system, compared to the 40 Megabytes of Teamspeak.</p>
<p>The audio quality was okay. One negative aspect compared to Teamspeak was the missing option to change the audio codec, to accommodate for lower or higher bandwidth groups.</p>
<p>RaidCall is an interesting alternative, considering that it does not require a rented or hosted server to communicate in groups. The voice communication software is <a href="http://www.raidcall.com/index.php">available</a> for download at the developer site.</p>
<hr />
<p><small>© Martin  for <a href="http://www.ghacks.net">gHacks Technology News</a>, 2010. | <a href="http://www.ghacks.net/2010/09/03/group-communication-software-raidcall/">Permalink</a> | Add to <a href="http://del.icio.us/post?url=http://www.ghacks.net/2010/09/03/group-communication-software-raidcall/&#038;title=Group Communication Software RaidCall">del.icio.us</a>, <a href="http://digg.com/submit?phase=2&#038;url=http://www.ghacks.net/2010/09/03/group-communication-software-raidcall/">digg</a>, <a href="http://www.facebook.com/sharer.php?u=http://www.ghacks.net/2010/09/03/group-communication-software-raidcall/&#038;t=Group Communication Software RaidCall">facebook</a>, <a href="http://reddit.com/submit?url=http://www.ghacks.net/2010/09/03/group-communication-software-raidcall/&#038;title=Group Communication Software RaidCall">reddit</a>, <a href="http://www.stumbleupon.com/submit?url=http://www.ghacks.net/2010/09/03/group-communication-software-raidcall/&#038;title=Group Communication Software RaidCall</a>stumbleupon</a>, <a href="http://twitter.com/home?status=Currently reading http://www.ghacks.net/2010/09/03/group-communication-software-raidcall/" title="Group Communication Software RaidCall">twitter</a><br/> Post tags: <a href="http://www.ghacks.net/tag/group-communication/" rel="tag">group communication</a>, <a href="http://www.ghacks.net/tag/raidcall/" rel="tag">raidcall</a>, <a href="http://www.ghacks.net/tag/teamspeak/" rel="tag">teamspeak</a>, <a href="http://www.ghacks.net/tag/ventrilo/" rel="tag">ventrilo</a>, <a href="http://www.ghacks.net/tag/voice-communication/" rel="tag">voice communication</a><br/> </small></p>
<p><a rel="nofollow" href="http://www.ghacks.net/2010/09/03/group-communication-software-raidcall/">gHacks Technology News</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d1096').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d1096" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fgadgethubs.com%2Fgroup-communication-software-raidcall%2F&amp;submitHeadline=Group+Communication+Software+RaidCall&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fgadgethubs.com%2Fgroup-communication-software-raidcall%2F&amp;title=Group+Communication+Software+RaidCall" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgadgethubs.com%2Fgroup-communication-software-raidcall%2F&amp;title=Group+Communication+Software+RaidCall" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fgadgethubs.com%2Fgroup-communication-software-raidcall%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fgadgethubs.com%2Fgroup-communication-software-raidcall%2F&amp;title=Group+Communication+Software+RaidCall" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fgadgethubs.com%2Fgroup-communication-software-raidcall%2F&amp;bm_description=Group+Communication+Software+RaidCall" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fgadgethubs.com%2Fgroup-communication-software-raidcall%2F&amp;T=Group+Communication+Software+RaidCall" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fgroup-communication-software-raidcall%2F&amp;title=Group+Communication+Software+RaidCall" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fgroup-communication-software-raidcall%2F&amp;title=Group+Communication+Software+RaidCall" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fgadgethubs.com%2Fgroup-communication-software-raidcall%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fgadgethubs.com%2Fgroup-communication-software-raidcall%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Group+Communication+Software+RaidCall+@+http%3A%2F%2Fgadgethubs.com%2Fgroup-communication-software-raidcall%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fgadgethubs.com%2Fgroup-communication-software-raidcall%2F&amp;t=Group+Communication+Software+RaidCall" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d1096').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d1096').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://gadgethubs.com/group-communication-software-raidcall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Explorer Tabbed Browsing For Windows 7</title>
		<link>http://gadgethubs.com/windows-explorer-tabbed-browsing-for-windows-7/</link>
		<comments>http://gadgethubs.com/windows-explorer-tabbed-browsing-for-windows-7/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 12:42:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[Browsing]]></category>
		<category><![CDATA[Explorer]]></category>
		<category><![CDATA[Tabbed]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://gadgethubs.com/windows-explorer-tabbed-browsing-for-windows-7/</guid>
		<description><![CDATA[QTTabBar was one of the best, if not the best, tabbed browsing plugin for Windows Explorer. The original developer stopped working on the software in January 2009, and it became apparent with the release of Windows 7 that the original version of the program was not compatible with Windows Explorer in Windows 7. That was [...]]]></description>
			<content:encoded><![CDATA[<p>QTTabBar was one of the best, if not the best, tabbed browsing plugin for <a href="http://www.ghacks.net/category/windows">Windows</a> Explorer. The original developer stopped working on the software in January 2009, and it became apparent with the release of Windows 7 that the original version of the program was not compatible with Windows Explorer in Windows 7.</p>
<p>That was a huge problem for users who came to rely on the program&#8217;s functionality in previous Windows editions. Finally, after a year of inactivity, Paul Accisano decided to continue the project. The main goal of the project is to make QTTabBar compatible with Windows 7.</p>
<p>The recently released alpha 4 of QTTabBar 1.5 already works under Windows 7, and while it is still an alpha version with bugs that need to be sorted out it works reasonably well already.</p>
<p>The program is compatible with 32-bit and 64-bit editions of the Windows operating system. It automatically offers to kill and restart the explorer.exe process after installation. Users who do not want to do that need to restart the computer, or log off and on again to see the changes.</p>
<p>Windows 7 users need to enable the tabbar by clicking on View > Toolbars > QTTabBar.</p>
<div id="attachment_33873" class="wp-caption alignnone" style="width: 403px"><a href="http://www.ghacks.net/wp-content/uploads/2010/09/qttabbar.png"><img src="http://www.ghacks.net/wp-content/uploads/2010/09/qttabbar.png" alt="qttabbar" title="qttabbar" width="393" height="161" class="size-full wp-image-33873" /></a>
<p class="wp-caption-text">qttabbar</p>
</div>
<p>This displays tabs in Windows Explorer. Folders can be opened in tabs by dragging and dropping them into the tabbar. It is then possible to switch between tabs with the mouse.</p>
<p>A right-click on a tab displays a context menu with various options, including the ability to lock tabs, create groups, close and clone tabs, copy the path and to change the tab order.</p>
<p>The Explorer plugin works reasonably well, it does however have a few bugs that need to be sorted out. Saving files for instance did display &#8220;file does not exist&#8221; warnings after the process, even though the files have been saved properly in the location. The error messages went away after uninstalling QTTabBar, and appeared again after installing it for a second time.</p>
<p>QTTabBar in its current form needs some work done. The developer however has achieved several milestones so far, with the most important one being compatibility with the Windows 7 operating system. The program can once again become a must have for many Windows users, if the bugs are sorted out. Lets wait for the beta and final versions before a verdict on that though.</p>
<hr />
<p><small>© Martin  for <a href="http://www.ghacks.net">gHacks Technology News</a>, 2010. | <a href="http://www.ghacks.net/2010/09/03/windows-explorer-tabbed-browsing-for-windows-7/">Permalink</a> | Add to <a href="http://del.icio.us/post?url=http://www.ghacks.net/2010/09/03/windows-explorer-tabbed-browsing-for-windows-7/&#038;title=Windows Explorer Tabbed Browsing For Windows 7">del.icio.us</a>, <a href="http://digg.com/submit?phase=2&#038;url=http://www.ghacks.net/2010/09/03/windows-explorer-tabbed-browsing-for-windows-7/">digg</a>, <a href="http://www.facebook.com/sharer.php?u=http://www.ghacks.net/2010/09/03/windows-explorer-tabbed-browsing-for-windows-7/&#038;t=Windows Explorer Tabbed Browsing For Windows 7">facebook</a>, <a href="http://reddit.com/submit?url=http://www.ghacks.net/2010/09/03/windows-explorer-tabbed-browsing-for-windows-7/&#038;title=Windows Explorer Tabbed Browsing For Windows 7">reddit</a>, <a href="http://www.stumbleupon.com/submit?url=http://www.ghacks.net/2010/09/03/windows-explorer-tabbed-browsing-for-windows-7/&#038;title=Windows Explorer Tabbed Browsing For Windows 7</a>stumbleupon</a>, <a href="http://twitter.com/home?status=Currently reading http://www.ghacks.net/2010/09/03/windows-explorer-tabbed-browsing-for-windows-7/" title="Windows Explorer Tabbed Browsing For Windows 7">twitter</a><br/> Post tags: <a href="http://www.ghacks.net/tag/explorer/" rel="tag">explorer++</a>, <a href="http://www.ghacks.net/tag/qttabbar/" rel="tag">qttabbar</a>, <a href="http://www.ghacks.net/tag/windows-explorer-tabs/" rel="tag">windows explorer tabs</a>, <a href="http://www.ghacks.net/tag/windows-software/" rel="tag">windows software</a>, <a href="http://www.ghacks.net/tag/windows-explorer/" rel="tag">windows-explorer</a><br/> </small></p>
<p><a rel="nofollow" href="http://www.ghacks.net/2010/09/03/windows-explorer-tabbed-browsing-for-windows-7/">gHacks Technology News</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d1095').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d1095" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fgadgethubs.com%2Fwindows-explorer-tabbed-browsing-for-windows-7%2F&amp;submitHeadline=Windows+Explorer+Tabbed+Browsing+For+Windows+7&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fgadgethubs.com%2Fwindows-explorer-tabbed-browsing-for-windows-7%2F&amp;title=Windows+Explorer+Tabbed+Browsing+For+Windows+7" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgadgethubs.com%2Fwindows-explorer-tabbed-browsing-for-windows-7%2F&amp;title=Windows+Explorer+Tabbed+Browsing+For+Windows+7" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fgadgethubs.com%2Fwindows-explorer-tabbed-browsing-for-windows-7%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fgadgethubs.com%2Fwindows-explorer-tabbed-browsing-for-windows-7%2F&amp;title=Windows+Explorer+Tabbed+Browsing+For+Windows+7" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fgadgethubs.com%2Fwindows-explorer-tabbed-browsing-for-windows-7%2F&amp;bm_description=Windows+Explorer+Tabbed+Browsing+For+Windows+7" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fgadgethubs.com%2Fwindows-explorer-tabbed-browsing-for-windows-7%2F&amp;T=Windows+Explorer+Tabbed+Browsing+For+Windows+7" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fwindows-explorer-tabbed-browsing-for-windows-7%2F&amp;title=Windows+Explorer+Tabbed+Browsing+For+Windows+7" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fwindows-explorer-tabbed-browsing-for-windows-7%2F&amp;title=Windows+Explorer+Tabbed+Browsing+For+Windows+7" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fgadgethubs.com%2Fwindows-explorer-tabbed-browsing-for-windows-7%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fgadgethubs.com%2Fwindows-explorer-tabbed-browsing-for-windows-7%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Windows+Explorer+Tabbed+Browsing+For+Windows+7+@+http%3A%2F%2Fgadgethubs.com%2Fwindows-explorer-tabbed-browsing-for-windows-7%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fgadgethubs.com%2Fwindows-explorer-tabbed-browsing-for-windows-7%2F&amp;t=Windows+Explorer+Tabbed+Browsing+For+Windows+7" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d1095').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d1095').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://gadgethubs.com/windows-explorer-tabbed-browsing-for-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Move The Steam Folder To Another Drive</title>
		<link>http://gadgethubs.com/how-to-move-the-steam-folder-to-another-drive/</link>
		<comments>http://gadgethubs.com/how-to-move-the-steam-folder-to-another-drive/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 06:42:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[Another]]></category>
		<category><![CDATA[Drive]]></category>
		<category><![CDATA[Folder]]></category>
		<category><![CDATA[Move]]></category>
		<category><![CDATA[Steam]]></category>

		<guid isPermaLink="false">http://gadgethubs.com/how-to-move-the-steam-folder-to-another-drive/</guid>
		<description><![CDATA[Valve&#8217;s Steam platform offers a very comfortable gaming platform. It is probably one of the best examples how an online distribution system can be successful. Not everyone likes Steam on the other hand, which is understandable as it has its quirks and problems, just like any other kind of gaming platform. One of the most [...]]]></description>
			<content:encoded><![CDATA[<p>Valve&#8217;s Steam platform offers a very comfortable gaming platform. It is probably one of the best examples how an online distribution system can be successful. Not everyone likes Steam on the other hand, which is understandable as it has its quirks and problems, just like any other kind of gaming platform.</p>
<p>One of the most annoying problems of Steam, is the inability to select custom installation folders for Steam games. All games that are downloaded and installed via Steam are installed in the same folder on the same hard drive.</p>
<p>This can be problematic, as even the biggest hard drives eventually run out of space. Many Steam users help themselves by uninstalling games to free up space on their hard drive, before installing new ones on the system.</p>
<p>Moving Steam to a different hard drive can be another effective option, especially if the other hard drive offers more space than the old one.</p>
<p>Steam itself offers no direct option to move the steam folder to another hard drive. It is however possible to do just that with some manual work. The same workaround can also be used to move Steam to another computer.</p>
<p>Lets assume that the Steam folder is currently located on drive c:, which does not have enough space anymore to store all the Steam games. Drive e: is a new hard drive with lots of free space.</p>
<p>To move Steam from c: to e: perform the following five steps:</p>
<ul>
<li>Close Steam, make sure the client is completely closed.</li>
<li>Locate the SteamApps folder on the c: drive, it is located in Steam > Steamapps, usually in Program Files or Program Files (x86).</li>
<li>Move the entire folder from drive c: to e: root</li>
<li>Uninstall Steam completely after the games and files have been moved to the new drive.</li>
<li>Reboot your computer once</li>
<li>Install Steam again, this time on drive e:</li>
<li>Move the Steamapps folder into Steam folder.</li>
<li>Start Steam. The client will automatically recognize the games in the Steamapps folder and make them available again.</li>
</ul>
<p>That&#8217;s how the Steam folder is moved to another drive or computer. Let me know if you are interested in a tutorial on how to move individual Steam games to another drive.</p>
<hr />
<p><small>© Martin  for <a href="http://www.ghacks.net">gHacks Technology News</a>, 2010. | <a href="http://www.ghacks.net/2010/09/02/move-steam-folder-another-drive/">Permalink</a> | Add to <a href="http://del.icio.us/post?url=http://www.ghacks.net/2010/09/02/move-steam-folder-another-drive/&#038;title=How To Move The Steam Folder To Another Drive">del.icio.us</a>, <a href="http://digg.com/submit?phase=2&#038;url=http://www.ghacks.net/2010/09/02/move-steam-folder-another-drive/">digg</a>, <a href="http://www.facebook.com/sharer.php?u=http://www.ghacks.net/2010/09/02/move-steam-folder-another-drive/&#038;t=How To Move The Steam Folder To Another Drive">facebook</a>, <a href="http://reddit.com/submit?url=http://www.ghacks.net/2010/09/02/move-steam-folder-another-drive/&#038;title=How To Move The Steam Folder To Another Drive">reddit</a>, <a href="http://www.stumbleupon.com/submit?url=http://www.ghacks.net/2010/09/02/move-steam-folder-another-drive/&#038;title=How To Move The Steam Folder To Another Drive</a>stumbleupon</a>, <a href="http://twitter.com/home?status=Currently reading http://www.ghacks.net/2010/09/02/move-steam-folder-another-drive/" title="How To Move The Steam Folder To Another Drive">twitter</a><br/> Post tags: <a href="http://www.ghacks.net/tag/move-steam/" rel="tag">move steam</a>, <a href="http://www.ghacks.net/tag/move-steam-folder/" rel="tag">move steam folder</a>, <a href="http://www.ghacks.net/tag/steam/" rel="tag">steam</a>, <a href="http://www.ghacks.net/tag/steam-folder/" rel="tag">steam folder</a>, <a href="http://www.ghacks.net/tag/valve/" rel="tag">valve</a><br/> </small></p>
<p><a rel="nofollow" href="http://www.ghacks.net/2010/09/02/move-steam-folder-another-drive/">gHacks Technology News</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d1094').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d1094" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fgadgethubs.com%2Fhow-to-move-the-steam-folder-to-another-drive%2F&amp;submitHeadline=How+To+Move+The+Steam+Folder+To+Another+Drive&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fgadgethubs.com%2Fhow-to-move-the-steam-folder-to-another-drive%2F&amp;title=How+To+Move+The+Steam+Folder+To+Another+Drive" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgadgethubs.com%2Fhow-to-move-the-steam-folder-to-another-drive%2F&amp;title=How+To+Move+The+Steam+Folder+To+Another+Drive" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fgadgethubs.com%2Fhow-to-move-the-steam-folder-to-another-drive%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fgadgethubs.com%2Fhow-to-move-the-steam-folder-to-another-drive%2F&amp;title=How+To+Move+The+Steam+Folder+To+Another+Drive" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fgadgethubs.com%2Fhow-to-move-the-steam-folder-to-another-drive%2F&amp;bm_description=How+To+Move+The+Steam+Folder+To+Another+Drive" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fgadgethubs.com%2Fhow-to-move-the-steam-folder-to-another-drive%2F&amp;T=How+To+Move+The+Steam+Folder+To+Another+Drive" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fhow-to-move-the-steam-folder-to-another-drive%2F&amp;title=How+To+Move+The+Steam+Folder+To+Another+Drive" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fhow-to-move-the-steam-folder-to-another-drive%2F&amp;title=How+To+Move+The+Steam+Folder+To+Another+Drive" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fgadgethubs.com%2Fhow-to-move-the-steam-folder-to-another-drive%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fgadgethubs.com%2Fhow-to-move-the-steam-folder-to-another-drive%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+How+To+Move+The+Steam+Folder+To+Another+Drive+@+http%3A%2F%2Fgadgethubs.com%2Fhow-to-move-the-steam-folder-to-another-drive%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fgadgethubs.com%2Fhow-to-move-the-steam-folder-to-another-drive%2F&amp;t=How+To+Move+The+Steam+Folder+To+Another+Drive" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d1094').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d1094').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://gadgethubs.com/how-to-move-the-steam-folder-to-another-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make A Bootable USB Kaspersky Rescue Disk 10</title>
		<link>http://gadgethubs.com/make-a-bootable-usb-kaspersky-rescue-disk-10/</link>
		<comments>http://gadgethubs.com/make-a-bootable-usb-kaspersky-rescue-disk-10/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 03:42:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[Bootable]]></category>
		<category><![CDATA[Disk]]></category>
		<category><![CDATA[Kaspersky]]></category>
		<category><![CDATA[Rescue]]></category>

		<guid isPermaLink="false">http://gadgethubs.com/make-a-bootable-usb-kaspersky-rescue-disk-10/</guid>
		<description><![CDATA[Many antivirus companies are offering free rescue disks to provide their customers with an option to disinfect a system from the &#8220;outside&#8221;. That&#8217;s especially helpful in scenarios where a virus has damaged the operating system critically, so that it won&#8217;t boot anymore on its own. Most antivirus rescue disks are supplied in the disk ISO [...]]]></description>
			<content:encoded><![CDATA[<p>Many antivirus companies are offering free rescue disks to provide their customers with an option to disinfect a system from the &#8220;outside&#8221;. That&#8217;s especially helpful in scenarios where a virus has damaged the operating system critically, so that it won&#8217;t boot anymore on its own.</p>
<p>Most antivirus rescue disks are supplied in the disk ISO format and need to be burned to CD or DVD. Kaspersky recently started to offer the Kaspersky USB Rescue Disk Maker which, as the name suggests, can create a bootable rescue disk on an USB flash drive.</p>
<blockquote><p>Kaspersky Rescue Disk 10 is designed to scan and disinfect x86 and x64-compatible computers that have been infected. The application should be used when the infection is so severe that it is impossible to disinfect the computer using anti-virus applications or malware removal utilities (such as Kaspersky Virus Removal Tool) running under the operating system.</p>
</blockquote>
<p>Two downloads are necessary to create the bootable Kaspersky USB Rescue Disk:</p>
<ul>
<li>The most recent ISO image of Kaspersky Rescue Disk 10 [<a href="http://rescuedisk.kaspersky-labs.com/rescuedisk/updatable">link</a>]</li>
<li>The Kaspersky USB Rescue Disk Maker [<a href="http://rescuedisk.kaspersky-labs.com/rescuedisk/updatable/rescue2usb.exe">link</a>]</li>
</ul>
<p>The USB device needs to use the FAT16 or FAT32 file system, and not NTFS.</p>
<p>To create the bootable USB rescue disk do the following:</p>
<ul>
<li>Install Kaspersky USB Rescue Disk Maker on the PC.</li>
<li>Browse to the ISO image of the Kaspersky Rescue Disk in the program interface after startup, and select one of the connected USB devices. This device will be used to create the bootable rescue disk.</li>
</ul>
<div id="attachment_33849" class="wp-caption alignnone" style="width: 429px"><a href="http://www.ghacks.net/wp-content/uploads/2010/09/kaspersky-usb-rescue-disk.gif"><img src="http://www.ghacks.net/wp-content/uploads/2010/09/kaspersky-usb-rescue-disk.gif" alt="kaspersky usb rescue disk" title="kaspersky usb rescue disk" width="419" height="474" class="size-full wp-image-33849" /></a>
<p class="wp-caption-text">kaspersky usb rescue disk</p>
</div>
<p>A click on Start copies the relevant files from the ISO image to the USB drive.</p>
<p>It is important to test the USB rescue device at least once, to make sure that it will work in emergencies. It is usually necessary to enable booting from removable devices in the BIOS, so that the boot process picks up the USB rescue disk before the actual operating system(s) on the hard drive.</p>
<p><iframe class="youtube-player" type="text/html" width="500" height="306" src="http://www.youtube.com/embed/xWW4DYt-8Mo" frameborder="0"></iframe></p>
<p>Kaspersky&#8217;s Rescue Disk can be used to disinfect systems that have been rendered unbootable by a virus and in scenarios where it is not possible to disinfect the virus while the operating system is running.</p>
<p>It is naturally also possible to burn the ISO image to CD or DVD, if that is preferred.</p>
<hr />
<p><small>© Martin  for <a href="http://www.ghacks.net">gHacks Technology News</a>, 2010. | <a href="http://www.ghacks.net/2010/09/02/make-a-bootable-usb-kaspersky-rescue-disk-10/">Permalink</a> | Add to <a href="http://del.icio.us/post?url=http://www.ghacks.net/2010/09/02/make-a-bootable-usb-kaspersky-rescue-disk-10/&#038;title=Make A Bootable USB Kaspersky Rescue Disk 10">del.icio.us</a>, <a href="http://digg.com/submit?phase=2&#038;url=http://www.ghacks.net/2010/09/02/make-a-bootable-usb-kaspersky-rescue-disk-10/">digg</a>, <a href="http://www.facebook.com/sharer.php?u=http://www.ghacks.net/2010/09/02/make-a-bootable-usb-kaspersky-rescue-disk-10/&#038;t=Make A Bootable USB Kaspersky Rescue Disk 10">facebook</a>, <a href="http://reddit.com/submit?url=http://www.ghacks.net/2010/09/02/make-a-bootable-usb-kaspersky-rescue-disk-10/&#038;title=Make A Bootable USB Kaspersky Rescue Disk 10">reddit</a>, <a href="http://www.stumbleupon.com/submit?url=http://www.ghacks.net/2010/09/02/make-a-bootable-usb-kaspersky-rescue-disk-10/&#038;title=Make A Bootable USB Kaspersky Rescue Disk 10</a>stumbleupon</a>, <a href="http://twitter.com/home?status=Currently reading http://www.ghacks.net/2010/09/02/make-a-bootable-usb-kaspersky-rescue-disk-10/" title="Make A Bootable USB Kaspersky Rescue Disk 10">twitter</a><br/> Post tags: <a href="http://www.ghacks.net/tag/antivirus/" rel="tag">antivirus</a>, <a href="http://www.ghacks.net/tag/kaspersky/" rel="tag">kaspersky</a>, <a href="http://www.ghacks.net/tag/kaspersky-rescue-disk/" rel="tag">Kaspersky Rescue Disk</a>, <a href="http://www.ghacks.net/tag/kaspersky-usb-rescue-disk/" rel="tag">kaspersky usb rescue disk</a>, <a href="http://www.ghacks.net/tag/rescue-disk/" rel="tag">rescue disk</a><br/> </small></p>
<p><a rel="nofollow" href="http://www.ghacks.net/2010/09/02/make-a-bootable-usb-kaspersky-rescue-disk-10/">gHacks Technology News</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d1093').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d1093" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fgadgethubs.com%2Fmake-a-bootable-usb-kaspersky-rescue-disk-10%2F&amp;submitHeadline=Make+A+Bootable+USB+Kaspersky+Rescue+Disk+10&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fgadgethubs.com%2Fmake-a-bootable-usb-kaspersky-rescue-disk-10%2F&amp;title=Make+A+Bootable+USB+Kaspersky+Rescue+Disk+10" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgadgethubs.com%2Fmake-a-bootable-usb-kaspersky-rescue-disk-10%2F&amp;title=Make+A+Bootable+USB+Kaspersky+Rescue+Disk+10" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fgadgethubs.com%2Fmake-a-bootable-usb-kaspersky-rescue-disk-10%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fgadgethubs.com%2Fmake-a-bootable-usb-kaspersky-rescue-disk-10%2F&amp;title=Make+A+Bootable+USB+Kaspersky+Rescue+Disk+10" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fgadgethubs.com%2Fmake-a-bootable-usb-kaspersky-rescue-disk-10%2F&amp;bm_description=Make+A+Bootable+USB+Kaspersky+Rescue+Disk+10" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fgadgethubs.com%2Fmake-a-bootable-usb-kaspersky-rescue-disk-10%2F&amp;T=Make+A+Bootable+USB+Kaspersky+Rescue+Disk+10" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fmake-a-bootable-usb-kaspersky-rescue-disk-10%2F&amp;title=Make+A+Bootable+USB+Kaspersky+Rescue+Disk+10" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fmake-a-bootable-usb-kaspersky-rescue-disk-10%2F&amp;title=Make+A+Bootable+USB+Kaspersky+Rescue+Disk+10" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fgadgethubs.com%2Fmake-a-bootable-usb-kaspersky-rescue-disk-10%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fgadgethubs.com%2Fmake-a-bootable-usb-kaspersky-rescue-disk-10%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Make+A+Bootable+USB+Kaspersky+Rescue+Disk+10+@+http%3A%2F%2Fgadgethubs.com%2Fmake-a-bootable-usb-kaspersky-rescue-disk-10%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fgadgethubs.com%2Fmake-a-bootable-usb-kaspersky-rescue-disk-10%2F&amp;t=Make+A+Bootable+USB+Kaspersky+Rescue+Disk+10" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d1093').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d1093').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://gadgethubs.com/make-a-bootable-usb-kaspersky-rescue-disk-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Network Connection Profiles With NetCon Manager</title>
		<link>http://gadgethubs.com/create-network-connection-profiles-with-netcon-manager/</link>
		<comments>http://gadgethubs.com/create-network-connection-profiles-with-netcon-manager/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 00:42:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[Connection]]></category>
		<category><![CDATA[Create]]></category>
		<category><![CDATA[Manager]]></category>
		<category><![CDATA[NetCon]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Profiles]]></category>

		<guid isPermaLink="false">http://gadgethubs.com/create-network-connection-profiles-with-netcon-manager/</guid>
		<description><![CDATA[Having to connect to several networks with one computer can be time consuming in some instances, especially if the networks have specific connection requirements that need to be applied to the local computer whenever the network connection needs to be switched. An automated solution can be beneficial to the user, as it offers to change [...]]]></description>
			<content:encoded><![CDATA[<p>Having to connect to several networks with one computer can be time consuming in some instances, especially if the networks have specific connection requirements that need to be applied to the local computer whenever the network connection needs to be switched.</p>
<p>An automated solution can be beneficial to the user, as it offers to change to a different network profile in seconds.</p>
<p>NetCon Manager is a basic program for the job. It can be used to create different network profiles like the previously reviewed <a href="http://www.ghacks.net/2010/08/01/tcp-profiles-manager-configure-multiple-network-profiles/">TCP Profiles Manager</a>. Basic in this regard means that it only offers a basic set of parameters per profile.</p>
<p>The supported parameters include the local IP address, subnet mask, gateway and DNS servers. It is in this regard inferior to <a href="http://www.ghacks.net/2010/01/26/create-computer-profiles-with-quick-config/">Quick Config</a> which offers to change additional settings such as the hosts file, computer name, workgroup and domain memberships or the default system printer.</p>
<p>New profiles can be created, deleted and activated in the main interface of the program. Each profile uses the aforementioned values.A comfortable option is the ability to load the current configuration for the active network connection, which can save some typing.</p>
<p>To change the network settings the user would either have to click on the change network settings button in the program interface, or right-click on the system tray icon of the program and pick the desired network profile from the list of all available profiles.</p>
<p>Netcon Manager can be configured to run at <a href="http://www.ghacks.net/category/windows">Windows</a> system start. The free program may prove useful for some users. An overview of the program&#8217;s features and options is <a href="http://apps.nozavi.com/netcon-manager-overview">available</a> at the developer website.</p>
<hr />
<p><small>© Martin  for <a href="http://www.ghacks.net">gHacks Technology News</a>, 2010. | <a href="http://www.ghacks.net/2010/09/02/create-network-connection-profiles-with-netcon-manager/">Permalink</a> | Add to <a href="http://del.icio.us/post?url=http://www.ghacks.net/2010/09/02/create-network-connection-profiles-with-netcon-manager/&#038;title=Create Network Connection Profiles With NetCon Manager">del.icio.us</a>, <a href="http://digg.com/submit?phase=2&#038;url=http://www.ghacks.net/2010/09/02/create-network-connection-profiles-with-netcon-manager/">digg</a>, <a href="http://www.facebook.com/sharer.php?u=http://www.ghacks.net/2010/09/02/create-network-connection-profiles-with-netcon-manager/&#038;t=Create Network Connection Profiles With NetCon Manager">facebook</a>, <a href="http://reddit.com/submit?url=http://www.ghacks.net/2010/09/02/create-network-connection-profiles-with-netcon-manager/&#038;title=Create Network Connection Profiles With NetCon Manager">reddit</a>, <a href="http://www.stumbleupon.com/submit?url=http://www.ghacks.net/2010/09/02/create-network-connection-profiles-with-netcon-manager/&#038;title=Create Network Connection Profiles With NetCon Manager</a>stumbleupon</a>, <a href="http://twitter.com/home?status=Currently reading http://www.ghacks.net/2010/09/02/create-network-connection-profiles-with-netcon-manager/" title="Create Network Connection Profiles With NetCon Manager">twitter</a><br/> Post tags: <a href="http://www.ghacks.net/tag/netcon-manager/" rel="tag">netcon manager</a>, <a href="http://www.ghacks.net/tag/network/" rel="tag">network</a>, <a href="http://www.ghacks.net/tag/network-connection/" rel="tag">network connection</a>, <a href="http://www.ghacks.net/tag/network-profiles/" rel="tag">network profiles</a>, <a href="http://www.ghacks.net/tag/windows-software/" rel="tag">windows software</a><br/> </small></p>
<p><a rel="nofollow" href="http://www.ghacks.net/2010/09/02/create-network-connection-profiles-with-netcon-manager/">gHacks Technology News</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d1092').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d1092" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fgadgethubs.com%2Fcreate-network-connection-profiles-with-netcon-manager%2F&amp;submitHeadline=Create+Network+Connection+Profiles+With+NetCon+Manager&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fgadgethubs.com%2Fcreate-network-connection-profiles-with-netcon-manager%2F&amp;title=Create+Network+Connection+Profiles+With+NetCon+Manager" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgadgethubs.com%2Fcreate-network-connection-profiles-with-netcon-manager%2F&amp;title=Create+Network+Connection+Profiles+With+NetCon+Manager" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fgadgethubs.com%2Fcreate-network-connection-profiles-with-netcon-manager%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fgadgethubs.com%2Fcreate-network-connection-profiles-with-netcon-manager%2F&amp;title=Create+Network+Connection+Profiles+With+NetCon+Manager" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fgadgethubs.com%2Fcreate-network-connection-profiles-with-netcon-manager%2F&amp;bm_description=Create+Network+Connection+Profiles+With+NetCon+Manager" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fgadgethubs.com%2Fcreate-network-connection-profiles-with-netcon-manager%2F&amp;T=Create+Network+Connection+Profiles+With+NetCon+Manager" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fcreate-network-connection-profiles-with-netcon-manager%2F&amp;title=Create+Network+Connection+Profiles+With+NetCon+Manager" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fcreate-network-connection-profiles-with-netcon-manager%2F&amp;title=Create+Network+Connection+Profiles+With+NetCon+Manager" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fgadgethubs.com%2Fcreate-network-connection-profiles-with-netcon-manager%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fgadgethubs.com%2Fcreate-network-connection-profiles-with-netcon-manager%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Create+Network+Connection+Profiles+With+NetCon+Manager+@+http%3A%2F%2Fgadgethubs.com%2Fcreate-network-connection-profiles-with-netcon-manager%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fgadgethubs.com%2Fcreate-network-connection-profiles-with-netcon-manager%2F&amp;t=Create+Network+Connection+Profiles+With+NetCon+Manager" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d1092').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d1092').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://gadgethubs.com/create-network-connection-profiles-with-netcon-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browser Market Share August 2010</title>
		<link>http://gadgethubs.com/browser-market-share-august-2010/</link>
		<comments>http://gadgethubs.com/browser-market-share-august-2010/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 21:42:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[August]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[market]]></category>
		<category><![CDATA[Share]]></category>

		<guid isPermaLink="false">http://gadgethubs.com/browser-market-share-august-2010/</guid>
		<description><![CDATA[There has not been a lot of movement in the browser market in August 2010. Microsoft lost 0.34% with their Internet Explorer browser while Google gained nearly the same share (0.36%). Firefox remained stable and gained 0.02%, Safari gained 0.07% and Opera lost 0.08%. The picture looks different when individual browser versions are analyzed. Internet [...]]]></description>
			<content:encoded><![CDATA[<p>There has not been a lot of movement in the browser market in August 2010. Microsoft lost 0.34% with their <a href="http://www.ghacks.net/tag/internet-explorer/">Internet Explorer</a> browser while <a href="http://www.ghacks.net/tag/google/">Google</a> gained nearly the same share (0.36%). <a href="http://www.ghacks.net/tag/firefox/">Firefox</a> remained stable and gained 0.02%, Safari gained 0.07% and <a href="http://www.ghacks.net/category/browsing/opera/">Opera</a> lost 0.08%.</p>
<p>The picture looks different when individual browser versions are analyzed. Internet Explorer 8 gained 1.03%, the most in market share in the month of August 2010. Both Internet Explorer 7 (-0.79%) and Internet Explorer 6 (-0.82%) have lost market share considerably. Firefox 3.6 gained 0.65% and Chrome 6 gained 0.29%.</p>
<p>Those browsers had the biggest market share in August according to <a href="http://www.netmarketshare.com/browser-market-share.aspx?qprid=3">NetMarketshare</a>, a company that tracks share statistics for Internet technologies.</p>
<p>The statistics of <a href="http://gs.statcounter.com/">Statcounter</a> show a similar trend, albeit with different numbers. The Internet Explorer market share dropped by 1.34% but still sits comfortably at 51.34%.</p>
<div id="attachment_33863" class="wp-caption alignnone" style="width: 510px"><a href="http://www.ghacks.net/wp-content/uploads/2010/09/browser-market-share-august-2010.png"><img src="http://www.ghacks.net/wp-content/uploads/2010/09/browser-market-share-august-2010-500x258.png" alt="browser market share august 2010" title="browser market share august 2010" width="500" height="258" class="size-medium wp-image-33863" /></a>
<p class="wp-caption-text">browser market share august 2010</p>
</div>
<p>The Firefox web browser managed to gain 0.40% of market share in August 2010, and ended up with a market share of 31.095. Chrome was the big winner that month breaking the 10% barrier for the first time. Statcounter recorded a market share of 10.76%, a gain of 0.88% over the last month.</p>
<p>Both Opera and Safari remained stable at 1.9% respectively 4.2% market share.</p>
<p>The trends of the last months continue. Internet Explorer 6 and 7 are dropped by users, while Internet Explorer 8 and Google Chrome manage to gain that market share. It is likely that this trend will continue for some time. The release of Internet Explorer 9 and Firefox 4 are most likely to break that pattern.</p>
<hr />
<p><small>© Martin  for <a href="http://www.ghacks.net">gHacks Technology News</a>, 2010. | <a href="http://www.ghacks.net/2010/09/02/browser-market-share-august-2010/">Permalink</a> | Add to <a href="http://del.icio.us/post?url=http://www.ghacks.net/2010/09/02/browser-market-share-august-2010/&#038;title=Browser Market Share August 2010">del.icio.us</a>, <a href="http://digg.com/submit?phase=2&#038;url=http://www.ghacks.net/2010/09/02/browser-market-share-august-2010/">digg</a>, <a href="http://www.facebook.com/sharer.php?u=http://www.ghacks.net/2010/09/02/browser-market-share-august-2010/&#038;t=Browser Market Share August 2010">facebook</a>, <a href="http://reddit.com/submit?url=http://www.ghacks.net/2010/09/02/browser-market-share-august-2010/&#038;title=Browser Market Share August 2010">reddit</a>, <a href="http://www.stumbleupon.com/submit?url=http://www.ghacks.net/2010/09/02/browser-market-share-august-2010/&#038;title=Browser Market Share August 2010</a>stumbleupon</a>, <a href="http://twitter.com/home?status=Currently reading http://www.ghacks.net/2010/09/02/browser-market-share-august-2010/" title="Browser Market Share August 2010">twitter</a><br/> Post tags: <a href="http://www.ghacks.net/tag/browser-market-share/" rel="tag">browser market share</a>, <a href="http://www.ghacks.net/tag/firefox/" rel="tag">firefox</a>, <a href="http://www.ghacks.net/tag/google-chrome/" rel="tag">google chrome</a>, <a href="http://www.ghacks.net/tag/internet-explorer/" rel="tag">internet-explorer</a>, <a href="http://www.ghacks.net/tag/market-share/" rel="tag">market share</a>, <a href="http://www.ghacks.net/tag/web-browser/" rel="tag">web browser</a><br/> </small></p>
<p><a rel="nofollow" href="http://www.ghacks.net/2010/09/02/browser-market-share-august-2010/">gHacks Technology News</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d1091').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d1091" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fgadgethubs.com%2Fbrowser-market-share-august-2010%2F&amp;submitHeadline=Browser+Market+Share+August+2010&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fgadgethubs.com%2Fbrowser-market-share-august-2010%2F&amp;title=Browser+Market+Share+August+2010" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgadgethubs.com%2Fbrowser-market-share-august-2010%2F&amp;title=Browser+Market+Share+August+2010" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fgadgethubs.com%2Fbrowser-market-share-august-2010%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fgadgethubs.com%2Fbrowser-market-share-august-2010%2F&amp;title=Browser+Market+Share+August+2010" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fgadgethubs.com%2Fbrowser-market-share-august-2010%2F&amp;bm_description=Browser+Market+Share+August+2010" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fgadgethubs.com%2Fbrowser-market-share-august-2010%2F&amp;T=Browser+Market+Share+August+2010" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fbrowser-market-share-august-2010%2F&amp;title=Browser+Market+Share+August+2010" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fbrowser-market-share-august-2010%2F&amp;title=Browser+Market+Share+August+2010" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fgadgethubs.com%2Fbrowser-market-share-august-2010%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fgadgethubs.com%2Fbrowser-market-share-august-2010%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Browser+Market+Share+August+2010+@+http%3A%2F%2Fgadgethubs.com%2Fbrowser-market-share-august-2010%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fgadgethubs.com%2Fbrowser-market-share-august-2010%2F&amp;t=Browser+Market+Share+August+2010" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d1091').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d1091').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://gadgethubs.com/browser-market-share-august-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chrome Stable 6, Firefox 4 Features Axed</title>
		<link>http://gadgethubs.com/chrome-stable-6-firefox-4-features-axed/</link>
		<comments>http://gadgethubs.com/chrome-stable-6-firefox-4-features-axed/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 18:42:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[Axed]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Stable]]></category>

		<guid isPermaLink="false">http://gadgethubs.com/chrome-stable-6-firefox-4-features-axed/</guid>
		<description><![CDATA[Some things do not seem to be right. While Google does not seem to have problems increasing the stable releases of their Chrome browser in a four month turnus, other&#8217;s like the Mozilla gang have decided to cut features from the upcoming Firefox 4 release to meet the end of the year release deadline. But [...]]]></description>
			<content:encoded><![CDATA[<p>Some things do not seem to be right. While <a href="http://www.ghacks.net/tag/google/">Google</a> does not seem to have problems increasing the stable releases of their Chrome browser in a four month turnus, other&#8217;s like the Mozilla gang have decided to cut features from the upcoming <a href="http://www.ghacks.net/2008/03/11/firefox-4-alpha/">Firefox 4</a> release to meet the end of the year release deadline.</p>
<p>But first things first. Download Squad&#8217;s <a href="http://www.downloadsquad.com/2010/09/02/google-chrome-6-goes-stable-2nd-birthday-celebration-brings-ext/">Lee Mathews</a> was the first to report that the stable version of Google Chrome made the jump to version 6. That&#8217;s a milestone for the browser that just turned two today as well.</p>
<p>Chrome stable users now have access to new features such as browser data syncing, or autofill, next to better content settings for plugins and scripting languages.</p>
<p>The <a href="http://googlechromereleases.blogspot.com/2010/09/stable-and-beta-channel-updates.html">release</a> is a security release as well, fixing more than a dozen different security vulnerabilities in the browser, of which seven received a severity rating of high.</p>
<p>Chrome users are asked to upgrade their web browser as soon as possible to protect the browser from possible exploits.</p>
<p>It does not look that rosy for the upcoming <a href="http://www.ghacks.net/tag/firefox/">Firefox</a> 4 version that is currently in development. According to <a href="http://news.softpedia.com/news/Firefox-4-0-Starts-Losing-Features-Account-Manager-First-to-Go-154674.shtml">Softpedia</a> information the developers have decided to remove features from the release to meet the deadline.</p>
<p>The first feature that was axed was the new account manager which was introduced back in April 2010. But the removal of the account manager may not be the only casualty to meet the deadline. At risk are silent updates on Windows, the Inspector and Web Console.</p>
<p>Feature freeze of Firefox 4 was initially planed for Firefox 4 Beta 5, but has since then been postponed to September 10th.</p>
<p>Firefox 4 will still offer several improvements over Firefox 3. It is however disappointing that at least one feature has been removed from the browser release.</p>
<p>What&#8217;s your take on this browser development? Let us know in the comments.</p>
<hr />
<p><small>© Martin  for <a href="http://www.ghacks.net">gHacks Technology News</a>, 2010. | <a href="http://www.ghacks.net/2010/09/02/chrome-stable-6-firefox-4-features-axed/">Permalink</a> | Add to <a href="http://del.icio.us/post?url=http://www.ghacks.net/2010/09/02/chrome-stable-6-firefox-4-features-axed/&#038;title=Chrome Stable 6, Firefox 4 Features Axed">del.icio.us</a>, <a href="http://digg.com/submit?phase=2&#038;url=http://www.ghacks.net/2010/09/02/chrome-stable-6-firefox-4-features-axed/">digg</a>, <a href="http://www.facebook.com/sharer.php?u=http://www.ghacks.net/2010/09/02/chrome-stable-6-firefox-4-features-axed/&#038;t=Chrome Stable 6, Firefox 4 Features Axed">facebook</a>, <a href="http://reddit.com/submit?url=http://www.ghacks.net/2010/09/02/chrome-stable-6-firefox-4-features-axed/&#038;title=Chrome Stable 6, Firefox 4 Features Axed">reddit</a>, <a href="http://www.stumbleupon.com/submit?url=http://www.ghacks.net/2010/09/02/chrome-stable-6-firefox-4-features-axed/&#038;title=Chrome Stable 6, Firefox 4 Features Axed</a>stumbleupon</a>, <a href="http://twitter.com/home?status=Currently reading http://www.ghacks.net/2010/09/02/chrome-stable-6-firefox-4-features-axed/" title="Chrome Stable 6, Firefox 4 Features Axed">twitter</a><br/> Post tags: <a href="http://www.ghacks.net/tag/chrome-stable/" rel="tag">chrome stable</a>, <a href="http://www.ghacks.net/tag/firefox/" rel="tag">firefox</a>, <a href="http://www.ghacks.net/tag/firefox-4/" rel="tag">firefox 4</a>, <a href="http://www.ghacks.net/tag/google-chrome/" rel="tag">google chrome</a><br/> </small></p>
<p><a rel="nofollow" href="http://www.ghacks.net/2010/09/02/chrome-stable-6-firefox-4-features-axed/">gHacks Technology News</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d1090').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d1090" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fgadgethubs.com%2Fchrome-stable-6-firefox-4-features-axed%2F&amp;submitHeadline=Chrome+Stable+6%2C+Firefox+4+Features+Axed&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fgadgethubs.com%2Fchrome-stable-6-firefox-4-features-axed%2F&amp;title=Chrome+Stable+6%2C+Firefox+4+Features+Axed" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgadgethubs.com%2Fchrome-stable-6-firefox-4-features-axed%2F&amp;title=Chrome+Stable+6%2C+Firefox+4+Features+Axed" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fgadgethubs.com%2Fchrome-stable-6-firefox-4-features-axed%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fgadgethubs.com%2Fchrome-stable-6-firefox-4-features-axed%2F&amp;title=Chrome+Stable+6%2C+Firefox+4+Features+Axed" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fgadgethubs.com%2Fchrome-stable-6-firefox-4-features-axed%2F&amp;bm_description=Chrome+Stable+6%2C+Firefox+4+Features+Axed" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fgadgethubs.com%2Fchrome-stable-6-firefox-4-features-axed%2F&amp;T=Chrome+Stable+6%2C+Firefox+4+Features+Axed" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fchrome-stable-6-firefox-4-features-axed%2F&amp;title=Chrome+Stable+6%2C+Firefox+4+Features+Axed" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fchrome-stable-6-firefox-4-features-axed%2F&amp;title=Chrome+Stable+6%2C+Firefox+4+Features+Axed" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fgadgethubs.com%2Fchrome-stable-6-firefox-4-features-axed%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fgadgethubs.com%2Fchrome-stable-6-firefox-4-features-axed%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Chrome+Stable+6%2C+Firefox+4+Features+Axed+@+http%3A%2F%2Fgadgethubs.com%2Fchrome-stable-6-firefox-4-features-axed%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fgadgethubs.com%2Fchrome-stable-6-firefox-4-features-axed%2F&amp;t=Chrome+Stable+6%2C+Firefox+4+Features+Axed" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d1090').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d1090').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://gadgethubs.com/chrome-stable-6-firefox-4-features-axed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iTunes 10 Download, New Features</title>
		<link>http://gadgethubs.com/itunes-10-download-new-features/</link>
		<comments>http://gadgethubs.com/itunes-10-download-new-features/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 15:42:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[Itunes]]></category>

		<guid isPermaLink="false">http://gadgethubs.com/itunes-10-download-new-features/</guid>
		<description><![CDATA[Apple has just released a new version of their music organization software iTunes, bringing the version to 10. Probably the biggest new feature is Apple&#8217;s new social network Ping, which is designed to provide iTunes users with options to connect with friends, and receive updates about music and concerts. Ping allows them to follow friends [...]]]></description>
			<content:encoded><![CDATA[<p>Apple has just released a new version of their music organization software iTunes, bringing the version to 10. Probably the biggest new feature is Apple&#8217;s new social network Ping, which is designed to provide iTunes users with options to connect with friends, and receive updates about music and concerts.</p>
<p>Ping allows them to follow friends and artists, and everyone will be able to post information including images, videos or music.</p>
<p>ITunes Ping feels a lot like Facebook in this regard. It requires a valid Apple ID and needs to be activated after the installation of iTunes 10 before it can be used.</p>
<p><iframe class="youtube-player" type="text/html" width="500" height="306" src="http://www.youtube.com/embed/cVgX5xTIOGM" frameborder="0"></iframe></p>
<p>Ping offers some interesting features, including custom top ten lists based on the listening habits of a user&#8217;s friends. The software will be available as an app on iPhone and iPod touch so that users can interact with the network from their mobile devices as well.</p>
<div id="attachment_33854" class="wp-caption alignnone" style="width: 510px"><a href="http://www.ghacks.net/wp-content/uploads/2010/09/itunes-ping.png"><img src="http://www.ghacks.net/wp-content/uploads/2010/09/itunes-ping-500x450.png" alt="itunes ping" title="itunes ping" width="500" height="450" class="size-medium wp-image-33854" /></a>
<p class="wp-caption-text">itunes ping</p>
</div>
<div id="attachment_33855" class="wp-caption alignnone" style="width: 510px"><a href="http://www.ghacks.net/wp-content/uploads/2010/09/itunes-ping-friends.png"><img src="http://www.ghacks.net/wp-content/uploads/2010/09/itunes-ping-friends-500x381.png" alt="itunes ping friends" title="itunes ping friends" width="500" height="381" class="size-medium wp-image-33855" /></a>
<p class="wp-caption-text">itunes ping friends</p>
</div>
<p>But iTunes Ping is just one of the new features in iTunes 10. TV show rentals are now available for 99 cents per episode. The shows are commercial free, come in HD, and are available for 48 hours in a 30 day period after renting the show. The shows can be watched on PC, Mac, Apple TV and iPad, iPhone and iPod Touch.</p>
<p>Additional features worth mentioning are improved syncing, which shows a capacity bar for devices connected to the computer, Apple TV support and AirPlay support so that AirPlay capable devices can connect to iTunes.</p>
<p>In other news, iTunes 10 is still one of the programs with the most active background processes after installation. The new version will automatically start AppleMobileDeviceHelper.exe, distnoted.exe and iTunesHelper.exe as permanent background processes:</p>
<li>AppleMobileDeviceHelper.exe &#8211; Listens for commands to help iTunes communicate with devices</li>
<li>distnoted.exe &#8211; Allows iTunes to sync with iPhone and iPod touch</li>
<li>iTunesHelper.exe -	&#8220;Listens&#8221; for commands to help iTunes communicate with devices (such as iPod).</li>
<p>The iTuneshelper.exe process can be removed from startup in msconfig or any other startup manager. The remaining background processes are triggered by services, specifically Apple Mobile Device and iPod Service.</p>
<p>Apple iTunes 10 can be <a href="http://www.apple.com/itunes/download/">downloaded</a> from the official Apple website.</p>
<hr />
<p><small>© Martin  for <a href="http://www.ghacks.net">gHacks Technology News</a>, 2010. | <a href="http://www.ghacks.net/2010/09/02/itunes-10-download-new-features/">Permalink</a> | Add to <a href="http://del.icio.us/post?url=http://www.ghacks.net/2010/09/02/itunes-10-download-new-features/&#038;title=iTunes 10 Download, New Features">del.icio.us</a>, <a href="http://digg.com/submit?phase=2&#038;url=http://www.ghacks.net/2010/09/02/itunes-10-download-new-features/">digg</a>, <a href="http://www.facebook.com/sharer.php?u=http://www.ghacks.net/2010/09/02/itunes-10-download-new-features/&#038;t=iTunes 10 Download, New Features">facebook</a>, <a href="http://reddit.com/submit?url=http://www.ghacks.net/2010/09/02/itunes-10-download-new-features/&#038;title=iTunes 10 Download, New Features">reddit</a>, <a href="http://www.stumbleupon.com/submit?url=http://www.ghacks.net/2010/09/02/itunes-10-download-new-features/&#038;title=iTunes 10 Download, New Features</a>stumbleupon</a>, <a href="http://twitter.com/home?status=Currently reading http://www.ghacks.net/2010/09/02/itunes-10-download-new-features/" title="iTunes 10 Download, New Features">twitter</a><br/> Post tags: <a href="http://www.ghacks.net/tag/apple/" rel="tag">apple</a>, <a href="http://www.ghacks.net/tag/apple-itunes/" rel="tag">apple itunes</a>, <a href="http://www.ghacks.net/tag/itunes/" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/itunes-10/" rel="tag">itunes 10</a>, <a href="http://www.ghacks.net/tag/itunes-ping/" rel="tag">itunes ping</a><br/> </small></p>
<p><a rel="nofollow" href="http://www.ghacks.net/2010/09/02/itunes-10-download-new-features/">gHacks Technology News</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d1089').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d1089" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fgadgethubs.com%2Fitunes-10-download-new-features%2F&amp;submitHeadline=iTunes+10+Download%2C+New+Features&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fgadgethubs.com%2Fitunes-10-download-new-features%2F&amp;title=iTunes+10+Download%2C+New+Features" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgadgethubs.com%2Fitunes-10-download-new-features%2F&amp;title=iTunes+10+Download%2C+New+Features" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fgadgethubs.com%2Fitunes-10-download-new-features%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fgadgethubs.com%2Fitunes-10-download-new-features%2F&amp;title=iTunes+10+Download%2C+New+Features" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fgadgethubs.com%2Fitunes-10-download-new-features%2F&amp;bm_description=iTunes+10+Download%2C+New+Features" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fgadgethubs.com%2Fitunes-10-download-new-features%2F&amp;T=iTunes+10+Download%2C+New+Features" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fitunes-10-download-new-features%2F&amp;title=iTunes+10+Download%2C+New+Features" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgadgethubs.com%2Fitunes-10-download-new-features%2F&amp;title=iTunes+10+Download%2C+New+Features" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fgadgethubs.com%2Fitunes-10-download-new-features%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fgadgethubs.com%2Fitunes-10-download-new-features%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+iTunes+10+Download%2C+New+Features+@+http%3A%2F%2Fgadgethubs.com%2Fitunes-10-download-new-features%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fgadgethubs.com%2Fitunes-10-download-new-features%2F&amp;t=iTunes+10+Download%2C+New+Features" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://gadgethubs.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d1089').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d1089').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://gadgethubs.com/itunes-10-download-new-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
