<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Accessing notebook hard drive using USB enclosure</title>
	<atom:link href="http://www.laptoprepair101.com/laptop/2007/04/17/access-hard-drive-using-usb-enclosure/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.laptoprepair101.com/laptop/2007/04/17/access-hard-drive-using-usb-enclosure/</link>
	<description>Laptop and Notebook Repair and Troubleshooting Tips. Laptop repair guy helps to find and fix the problem.</description>
	<lastBuildDate>Fri, 10 Feb 2012 22:49:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: klprasad</title>
		<link>http://www.laptoprepair101.com/laptop/2007/04/17/access-hard-drive-using-usb-enclosure/comment-page-3/#comment-376436</link>
		<dc:creator>klprasad</dc:creator>
		<pubDate>Sat, 05 Nov 2011 13:41:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.laptoprepair101.com/laptop/2007/04/17/accessing-notebook-hard-drive-using-usb-enclosure/#comment-376436</guid>
		<description>will you please help me to buy external case for my loptop HP DV04-1414tx.where it is available in bangalore either INDIRA NAGAR or in  MG ROAD.please mention which company name which one is good to buy</description>
		<content:encoded><![CDATA[<p>will you please help me to buy external case for my loptop HP DV04-1414tx.where it is available in bangalore either INDIRA NAGAR or in  MG ROAD.please mention which company name which one is good to buy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: me</title>
		<link>http://www.laptoprepair101.com/laptop/2007/04/17/access-hard-drive-using-usb-enclosure/comment-page-3/#comment-354343</link>
		<dc:creator>me</dc:creator>
		<pubDate>Sun, 09 Oct 2011 21:28:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.laptoprepair101.com/laptop/2007/04/17/accessing-notebook-hard-drive-using-usb-enclosure/#comment-354343</guid>
		<description>i have a problem any help please ??
what i have is an ex laptop hdd now an external hdd with the  vista operating system still on it with 2partitons boot and recover
i was able to view most files but could not see documents and settings folder or my music,my pictures folders etc
so i check to make sure hidden files was turned off and still no luck, so then i took ownership of the drive but still unable to see these folders
so then i tried a linux distro and i can see documents and settings folder but it is a shortcut and can see my pictures,my music folder but they shown a file is missing or unknown if i click them i just get an error file missing or deleted
any1 experienced this before and have any ideas ??

thnx</description>
		<content:encoded><![CDATA[<p>i have a problem any help please ??<br />
what i have is an ex laptop hdd now an external hdd with the  vista operating system still on it with 2partitons boot and recover<br />
i was able to view most files but could not see documents and settings folder or my music,my pictures folders etc<br />
so i check to make sure hidden files was turned off and still no luck, so then i took ownership of the drive but still unable to see these folders<br />
so then i tried a linux distro and i can see documents and settings folder but it is a shortcut and can see my pictures,my music folder but they shown a file is missing or unknown if i click them i just get an error file missing or deleted<br />
any1 experienced this before and have any ideas ??</p>
<p>thnx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shawn Z</title>
		<link>http://www.laptoprepair101.com/laptop/2007/04/17/access-hard-drive-using-usb-enclosure/comment-page-3/#comment-310192</link>
		<dc:creator>Shawn Z</dc:creator>
		<pubDate>Tue, 02 Aug 2011 18:27:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.laptoprepair101.com/laptop/2007/04/17/accessing-notebook-hard-drive-using-usb-enclosure/#comment-310192</guid>
		<description>Often users wonder how to backup files to a USB hard drive.  This is an issue because some drives do not contain software to do the job.  Microsoft released a tool called “ROBOCOPY” in Windows Vista, and 2008 Server that does a good job of synchronizing drives.
For Pre-Vista Computers
XCOPY use to be the tool of choice, but when encountering path and file names greater than 255 characters, XCOPY will generate an out of memory error and exit.  If you are using a Windows XP or 2003 Server computer, ROBOCOPY can be downloaded from Microsoft in the “Windows Server 2003 Resource Kit Tools” located at: 
http://www.microsoft.com/download/en/details.aspx?id=17657
Once you have downloaded and installed the resource kit tools, search for “ROBOCOPY*.*” and copy it to “C:\Windows\System32”.  This will make the program available anywhere.
Creating the Backup Script
On the backup drive, we will create a one line batch file that contains the backup command.  This batch file should be located on the backup drive.  We want it here so that no matter what letter the drive is assigned, the backups will run.
Using “Note Pad”, we will create a file called “Backup.BAT” and save it to your backup drive.  The file should contain the following command:
ROBOCOPY c:\ .\Backup\ /e /w:1 /r:1
This will back up the whole hard drive to a folder called “Backup” where ever the “Backup.BAT” file is located: on the backup drive.
How it Works
ROBOCOPY will only copy the changed files, skipping a majority of the files that have not changed.  If a file is in use or cannot be copied, ROBOCOPY will nicely skip the file and move on.  This ensures that the backup will be completed to the best of the computer’s ability.
If you have Outlook or QuickBooks on your computer, you will want to make sure that those programs are closed before doing a back.  If you leave these programs open, the backup will skip their important data files.

Shawn Zernik 
Internetwork Consulting</description>
		<content:encoded><![CDATA[<p>Often users wonder how to backup files to a USB hard drive.  This is an issue because some drives do not contain software to do the job.  Microsoft released a tool called “ROBOCOPY” in Windows Vista, and 2008 Server that does a good job of synchronizing drives.<br />
For Pre-Vista Computers<br />
XCOPY use to be the tool of choice, but when encountering path and file names greater than 255 characters, XCOPY will generate an out of memory error and exit.  If you are using a Windows XP or 2003 Server computer, ROBOCOPY can be downloaded from Microsoft in the “Windows Server 2003 Resource Kit Tools” located at:<br />
<a href="http://www.microsoft.com/download/en/details.aspx?id=17657" rel="nofollow">http://www.microsoft.com/downl.....x?id=17657</a><br />
Once you have downloaded and installed the resource kit tools, search for “ROBOCOPY*.*” and copy it to “C:\Windows\System32”.  This will make the program available anywhere.<br />
Creating the Backup Script<br />
On the backup drive, we will create a one line batch file that contains the backup command.  This batch file should be located on the backup drive.  We want it here so that no matter what letter the drive is assigned, the backups will run.<br />
Using “Note Pad”, we will create a file called “Backup.BAT” and save it to your backup drive.  The file should contain the following command:<br />
ROBOCOPY c:\ .\Backup\ /e /w:1 /r:1<br />
This will back up the whole hard drive to a folder called “Backup” where ever the “Backup.BAT” file is located: on the backup drive.<br />
How it Works<br />
ROBOCOPY will only copy the changed files, skipping a majority of the files that have not changed.  If a file is in use or cannot be copied, ROBOCOPY will nicely skip the file and move on.  This ensures that the backup will be completed to the best of the computer’s ability.<br />
If you have Outlook or QuickBooks on your computer, you will want to make sure that those programs are closed before doing a back.  If you leave these programs open, the backup will skip their important data files.</p>
<p>Shawn Zernik<br />
Internetwork Consulting</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justine</title>
		<link>http://www.laptoprepair101.com/laptop/2007/04/17/access-hard-drive-using-usb-enclosure/comment-page-3/#comment-303766</link>
		<dc:creator>Justine</dc:creator>
		<pubDate>Tue, 19 Jul 2011 20:13:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.laptoprepair101.com/laptop/2007/04/17/accessing-notebook-hard-drive-using-usb-enclosure/#comment-303766</guid>
		<description>I recently dropped my laptop (while having a heart attack), it smashed beyond repair.  Now that I am back on my feet again, I am in need of getting the files of my hard drive.  My question is, for someone who can read and follow directions is this a good do-it-yourself option or should I just pay the $270.00 rate that the local computer store (great small town living :( )is wanting to charge me?  Any advice would be appreciated. THANKS!</description>
		<content:encoded><![CDATA[<p>I recently dropped my laptop (while having a heart attack), it smashed beyond repair.  Now that I am back on my feet again, I am in need of getting the files of my hard drive.  My question is, for someone who can read and follow directions is this a good do-it-yourself option or should I just pay the $270.00 rate that the local computer store (great small town living <img src='http://www.laptoprepair101.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  )is wanting to charge me?  Any advice would be appreciated. THANKS!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juli</title>
		<link>http://www.laptoprepair101.com/laptop/2007/04/17/access-hard-drive-using-usb-enclosure/comment-page-3/#comment-301930</link>
		<dc:creator>Juli</dc:creator>
		<pubDate>Wed, 13 Jul 2011 20:12:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.laptoprepair101.com/laptop/2007/04/17/accessing-notebook-hard-drive-using-usb-enclosure/#comment-301930</guid>
		<description>Hi,

I&#039;ve been trying to do this, however, I have done all of the things you have suggested and I have the message that all drivers have been installed for the HD but I cannot find it on My Computer. It is in Disk Management but all I can do is Initialse, which from what I understand is formatting it?

Help please! Thank you for your time :)</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;ve been trying to do this, however, I have done all of the things you have suggested and I have the message that all drivers have been installed for the HD but I cannot find it on My Computer. It is in Disk Management but all I can do is Initialse, which from what I understand is formatting it?</p>
<p>Help please! Thank you for your time <img src='http://www.laptoprepair101.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cj2600</title>
		<link>http://www.laptoprepair101.com/laptop/2007/04/17/access-hard-drive-using-usb-enclosure/comment-page-3/#comment-298065</link>
		<dc:creator>cj2600</dc:creator>
		<pubDate>Sat, 02 Jul 2011 17:01:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.laptoprepair101.com/laptop/2007/04/17/accessing-notebook-hard-drive-using-usb-enclosure/#comment-298065</guid>
		<description>Tim,

&lt;blockquote&gt;I am taking the hard drive from my macbook and have placed it in a hard drive enclosure. I have connected it to my PC (running windows vista) and am trying to back it up but the drive does not show up anywhere? Any idea on why and how I can access this drive?&lt;/blockquote&gt;

Windows OS cannot read Mac file system. In order to back up data you&#039;ll have to connect enclosure to another Mac computer.</description>
		<content:encoded><![CDATA[<p>Tim,</p>
<blockquote><p>I am taking the hard drive from my macbook and have placed it in a hard drive enclosure. I have connected it to my PC (running windows vista) and am trying to back it up but the drive does not show up anywhere? Any idea on why and how I can access this drive?</p></blockquote>
<p>Windows OS cannot read Mac file system. In order to back up data you&#8217;ll have to connect enclosure to another Mac computer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://www.laptoprepair101.com/laptop/2007/04/17/access-hard-drive-using-usb-enclosure/comment-page-3/#comment-298052</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Sat, 02 Jul 2011 15:31:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.laptoprepair101.com/laptop/2007/04/17/accessing-notebook-hard-drive-using-usb-enclosure/#comment-298052</guid>
		<description>I am taking the hard drive from my macbook and have placed it in a hard drive enclosure. I have connected it to my PC (running windows vista) and am trying to back it up but the drive does not show up anywhere? Any idea on why and how I can access this drive? I am using a Speed Metal USB 2.0 HDD External Enclosure for a 2.5&quot; SATA Hard Drive. (Fujitsu Brand hard drive)

Please help. This had been very frustrating.</description>
		<content:encoded><![CDATA[<p>I am taking the hard drive from my macbook and have placed it in a hard drive enclosure. I have connected it to my PC (running windows vista) and am trying to back it up but the drive does not show up anywhere? Any idea on why and how I can access this drive? I am using a Speed Metal USB 2.0 HDD External Enclosure for a 2.5&#8243; SATA Hard Drive. (Fujitsu Brand hard drive)</p>
<p>Please help. This had been very frustrating.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cj2600</title>
		<link>http://www.laptoprepair101.com/laptop/2007/04/17/access-hard-drive-using-usb-enclosure/comment-page-3/#comment-265333</link>
		<dc:creator>cj2600</dc:creator>
		<pubDate>Mon, 11 Apr 2011 05:20:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.laptoprepair101.com/laptop/2007/04/17/accessing-notebook-hard-drive-using-usb-enclosure/#comment-265333</guid>
		<description>ali,
Can you see the hard drive in the BIOS setup menu at all?
You said OS doesn&#039;t see the hard drive AND you cannot access it via external enclosure.
I&#039;m thinking maybe the hard drive crashed?
You can try this method to recover files: http://www.laptoprepair101.com/laptop/2011/02/25/recover-files-from-computer-laptop-crashed-operating-system/</description>
		<content:encoded><![CDATA[<p>ali,<br />
Can you see the hard drive in the BIOS setup menu at all?<br />
You said OS doesn&#8217;t see the hard drive AND you cannot access it via external enclosure.<br />
I&#8217;m thinking maybe the hard drive crashed?<br />
You can try this method to recover files: <a href="http://www.laptoprepair101.com/laptop/2011/02/25/recover-files-from-computer-laptop-crashed-operating-system/" rel="nofollow">http://www.laptoprepair101.com.....ng-system/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ali</title>
		<link>http://www.laptoprepair101.com/laptop/2007/04/17/access-hard-drive-using-usb-enclosure/comment-page-3/#comment-263592</link>
		<dc:creator>ali</dc:creator>
		<pubDate>Wed, 06 Apr 2011 14:14:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.laptoprepair101.com/laptop/2007/04/17/accessing-notebook-hard-drive-using-usb-enclosure/#comment-263592</guid>
		<description>hey ! bro. i am in a real mess. i dont knw what to do. i wud be xtremly thankful to u i solve my prob.

here it goes. i have HP pavilion DV6 notebook.
350 gb, 2gb ram, core i3 processor.
the prob is i was installing patch of idm, the moment i clicked the setup, windows turned off. and restarted and couldnt reboot then. i tried a lot but it didnt. i tried to repair it but it was showing an error. i tried to restore it to last best configuration but still it was having some error. then i thought to format it and install new windows but then i faced new problem. laptop couldnt detect hard drive. no drive was dispayed so that i could install new os. i took it to service center.i thought mat=y be my hard drive is crashed so i took it to the service center. there also they told me that there is no problem with the hardware. they suggested me to order recovery disk nad recover your hardrive.gain i did the same. but now the prob is i dont wanna lose data, it would format the wholr drive. it has many imp data. to save the data i tried the hard drive enclosure, but thats also not working. the hard drive is not detectable. 
please just suggest me how could i save my data. i dont wanna loose, please do reply as soon as possible.</description>
		<content:encoded><![CDATA[<p>hey ! bro. i am in a real mess. i dont knw what to do. i wud be xtremly thankful to u i solve my prob.</p>
<p>here it goes. i have HP pavilion DV6 notebook.<br />
350 gb, 2gb ram, core i3 processor.<br />
the prob is i was installing patch of idm, the moment i clicked the setup, windows turned off. and restarted and couldnt reboot then. i tried a lot but it didnt. i tried to repair it but it was showing an error. i tried to restore it to last best configuration but still it was having some error. then i thought to format it and install new windows but then i faced new problem. laptop couldnt detect hard drive. no drive was dispayed so that i could install new os. i took it to service center.i thought mat=y be my hard drive is crashed so i took it to the service center. there also they told me that there is no problem with the hardware. they suggested me to order recovery disk nad recover your hardrive.gain i did the same. but now the prob is i dont wanna lose data, it would format the wholr drive. it has many imp data. to save the data i tried the hard drive enclosure, but thats also not working. the hard drive is not detectable.<br />
please just suggest me how could i save my data. i dont wanna loose, please do reply as soon as possible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sunil</title>
		<link>http://www.laptoprepair101.com/laptop/2007/04/17/access-hard-drive-using-usb-enclosure/comment-page-3/#comment-252248</link>
		<dc:creator>Sunil</dc:creator>
		<pubDate>Sat, 05 Mar 2011 19:23:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.laptoprepair101.com/laptop/2007/04/17/accessing-notebook-hard-drive-using-usb-enclosure/#comment-252248</guid>
		<description>My hcl leaptop p30 is dead when i switch on before boot i press ESC  key continue 2-4 time and system show erase bios  and i remove the battery and then the leaptop is not ON or no current is come help me reply sol. by mail plzzz....... .</description>
		<content:encoded><![CDATA[<p>My hcl leaptop p30 is dead when i switch on before boot i press ESC  key continue 2-4 time and system show erase bios  and i remove the battery and then the leaptop is not ON or no current is come help me reply sol. by mail plzzz&#8230;&#8230;. .</p>
]]></content:encoded>
	</item>
</channel>
</rss>

