<?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>Tech N Life &#187; hard drive</title>
	<atom:link href="http://tech-n-life.com/index.php/tag/hard-drive/feed/" rel="self" type="application/rss+xml" />
	<link>http://tech-n-life.com</link>
	<description>Your Tech Update</description>
	<lastBuildDate>Tue, 16 Aug 2011 08:26:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Moving Large Applications/Games To A Different Drive</title>
		<link>http://tech-n-life.com/index.php/2010/03/moving-large-applicationsgames-to-a-different-drive/</link>
		<comments>http://tech-n-life.com/index.php/2010/03/moving-large-applicationsgames-to-a-different-drive/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 22:31:49 +0000</pubDate>
		<dc:creator>Konrad Walsh-(admin)</dc:creator>
				<category><![CDATA[Computer Maintenance]]></category>
		<category><![CDATA[Hardware & Software]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[changes]]></category>
		<category><![CDATA[command prompt]]></category>
		<category><![CDATA[File manager]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[Start menu]]></category>
		<category><![CDATA[windows 7]]></category>
		<category><![CDATA[Windows Explorer]]></category>
		<category><![CDATA[Windows Start Menu]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://tech-n-life.com/?p=2365</guid>
		<description><![CDATA[I found a great how to article over on gHacks.net. Its a problem we all run into. You install so many apps on your c: drive that you eventually run dry of space. When that happens&#8230; everything sloooowwwwss down and becomes painful. Here&#8217;s a guide to get you out of that situation. The move process [...]]]></description>
			<content:encoded><![CDATA[<div id="in_post_ad_top_1" style="margin: 5px;padding: 0px;"><script type="text/javascript"><!--
google_ad_client = "pub-8350415631214616";
/* 300x250, created 2/22/10 */
google_ad_slot = "4891633524";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div><p>I found a great how to article over on <a href="http://www.ghacks.net/2010/03/25/how-to-move-large-apps-or-games-to-another-drive/" target="_blank">gHacks.net</a>. Its a problem we all run into. You install so many apps on your c: drive that you eventually run dry of space. When that happens&#8230; everything sloooowwwwss down and becomes painful. Here&#8217;s a guide to get you out of that situation.</p>

<p>The move process itself is easy enough. Just move the files in  Windows Explorer, or any other file manager that you may be using, to  another hard drive. You can move the folder by pressing shift during the  drag and drop operation (if you do not press shift you copy the <a id="KonaLink1" href="http://www.ghacks.net/2010/03/25/how-to-move-large-apps-or-games-to-another-drive/#" target="undefined"><span style="color: #0072bc;">files</span></a>).</p>

<p>Most  games and applications will not start anymore after they have been  moved around. The solution to this is to create symbolic hard links and  Windows comes with the tool to do just that. Open a command prompt as an  administrator. You find the Command Prompt under Accessories in the <a id="KonaLink2" href="http://www.ghacks.net/2010/03/25/how-to-move-large-apps-or-games-to-another-drive/#" target="undefined"><span style="color: #0072bc;">Windows Start</span></a> Menu. Right-click the command prompt  and select run as administrator.</p>

<p>The command that we are using to  create a so called directory junction is mklink. A directory junction  basically tells the operating system to create a mirror in another  directory that provides access to all files of the selected directory in  the mirror directory again. The files and folders of the mirror  directory are however actually only redirected to the destination where  they are actually hosted. This essentially means that you can make the  game, application or Windows believe that the files and folders are  still in their right place even if they are not.</p>

<p><code>mklink /J  "new folder" "folder with the files"</code></p>

<div id="in_post_ad_middle_1" style="margin: 5px;padding: 0px;"><script type="text/javascript"><!--
google_ad_client = "pub-8350415631214616";
google_ad_slot = "2064052456";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div><p>That’s the basic  command that we will be using. The /J parameter defines the type of  symbolic link that we are creating, in this case a directory junction.  The new folder is the mirror folder and the folder with files the folder  containing the real files.</p>

<p><code>mklink /J "C:\program files  (x86)\Dragon Age\" "e:\games\Dragon Age"</code></p>

<p>This creates a  directory junction so that the files and folders of e:\games\Dragon Age  are accessible by the program and Windows under C:\program files  (x86)\Dragon Age\ as well (where they have been initially installed to).</p>

<blockquote><p>C:\Windows\system32&gt;mklink  /J “c:\Program Files (x86)\Dragon Age\” “c:\games\Dragon Age\”<br />
 Junction created for c:\Program Files (x86)\Dragon Age\  &lt;&lt;===&gt;&gt; c:\games\DragonAge\</p></blockquote>

<p>The same  principle can be applied to other applications or games. It is for  instance possible to move some Steam games or files to another hard  drive to free up space on the one Steam is installed. Mklink is  available in <a id="KonaLink3" href="http://www.ghacks.net/2010/03/25/how-to-move-large-apps-or-games-to-another-drive/#" target="undefined"><span style="color: #0072bc;">Windows Vista</span></a> and Windows 7. I’m not sure about <a id="KonaLink4" href="http://www.ghacks.net/2010/03/25/how-to-move-large-apps-or-games-to-another-drive/#" target="undefined"><span style="color: #0072bc;">Windows XP</span></a> right now, would be nice if anyone with  XP could let me know in the comments. There are programs like <a href="http://technet.microsoft.com/en-us/sysinternals/bb896768.aspx">Junction</a> from Sysinternals that can create junctions as well in case that is  needed.</p>

<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/ce1d6a90-371f-4c8f-987a-98ca5c8bbe8b/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=ce1d6a90-371f-4c8f-987a-98ca5c8bbe8b" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution">
<script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script>
</span></div><div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><script type="text/javascript"><!--
google_ad_client = "pub-8350415631214616";
/* 300x250, created 2/22/10 */
google_ad_slot = "4891633524";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://tech-n-life.com/index.php/2010/03/moving-large-applicationsgames-to-a-different-drive/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Support Sunday: Find Hard Drive Problems Easily With Windows Surface Scanner</title>
		<link>http://tech-n-life.com/index.php/2009/11/windows-surface-scanner/</link>
		<comments>http://tech-n-life.com/index.php/2009/11/windows-surface-scanner/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 02:11:23 +0000</pubDate>
		<dc:creator>Konrad Walsh-(admin)</dc:creator>
				<category><![CDATA[Support Sunday]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[data recovery]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[scanning]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://tech-n-life.com/?p=1029</guid>
		<description><![CDATA[DTI Data Recovery have made a useful piece of software for investigating hard drive errors. Sometimes when diagnosing your PC for performance issues, there is only so much you can do with tweaks. If the problem is physical.. then you need to get physical and fix it directly. If a hard drive(s) is faulty, then [...]]]></description>
			<content:encoded><![CDATA[<div id="in_post_ad_top_1" style="margin: 5px;padding: 0px;"><script type="text/javascript"><!--
google_ad_client = "pub-8350415631214616";
/* 300x250, created 2/22/10 */
google_ad_slot = "4891633524";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div><a href="http://tech-n-life.com/wp-content/uploads/2009/11/DTI-Logo.JPG"><img class="alignleft size-medium wp-image-1033" style="margin: 5px 10px;" title="DTI Logo" src="http://tech-n-life.com/wp-content/uploads/2009/11/DTI-Logo-227x46-custom.JPG" alt="DTI Logo" width="227" height="46" /></a>

<strong>DTI Data Recovery</strong> have made a useful piece of software for investigating hard drive errors. Sometimes when diagnosing your PC for performance issues, there is only so much you can do with tweaks. If the problem is physical.. then you need to get physical and fix it directly. If a hard drive(s) is faulty, then you will definitely have performance issues.

Windows Surface Scanner steps in here to help zero in on those bad sectors and report back to you what problems you are facing. Then you will know the appropriate action to take. That is fix or replace. If its very bad, you at least know to start backing up and quick!

Here is a rundown on installing and running the software.

This is the second screen after you start it up. On the first screen, just accept the terms and conditions.

<a href="http://tech-n-life.com/wp-content/uploads/2009/11/Start-screen.JPG"><img class="aligncenter size-medium wp-image-1032" title="Start screen" src="http://tech-n-life.com/wp-content/uploads/2009/11/Start-screen-300x130.jpg" alt="Start screen" width="300" height="130" /></a>

To list your drives, hit the mount button:

<a href="http://tech-n-life.com/wp-content/uploads/2009/11/Mount-Drives.JPG"><img class="aligncenter size-medium wp-image-1030" title="Mount Drives" src="http://tech-n-life.com/wp-content/uploads/2009/11/Mount-Drives-300x129.jpg" alt="Mount Drives" width="300" height="129" /></a>

Tick the drive and click Scan. Only one  drive may be
scanned at a time. Then let it do its business. You can watch its progress on the bottom left of the application:

<a href="http://tech-n-life.com/wp-content/uploads/2009/11/Scanning1.JPG"><img class="aligncenter size-medium wp-image-1034" title="Scanning" src="http://tech-n-life.com/wp-content/uploads/2009/11/Scanning1-300x130.jpg" alt="Scanning" width="300" height="130" /></a>
If you need to stop it, just hit Exit.

Simple software. <a href="http://www.dtidata.com/windowssurfacescanner/" target="_blank">Download Windows Surface Scanner Here</a>
<p style="text-align: center;">__________________________</p>
<div id="in_post_ad_middle_1" style="margin: 5px;padding: 0px;"><script type="text/javascript"><!--
google_ad_client = "pub-8350415631214616";
google_ad_slot = "2064052456";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div><p style="text-align: center;">advertisement</p>
<p style="text-align: center;">[ad#banner2]</p><div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><script type="text/javascript"><!--
google_ad_client = "pub-8350415631214616";
/* 300x250, created 2/22/10 */
google_ad_slot = "4891633524";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://tech-n-life.com/index.php/2009/11/windows-surface-scanner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

