How do i copy my entire computer to an external hard drive

How do i copy my entire computer to an external hard drive
Please register to participate in our discussions with 2 million other members - it's free and quick! Some forums can only be seen by registered members. After you create your account, you'll be able to customize options and access all our 15,000 new posts/day with fewer ads.

How do i copy my entire computer to an external hard drive
12-05-2010, 04:25 AM

 

5,546 posts, read 9,599,831 times

Reputation: 2797

Hi,

My computer might be on it's last leg (I don't dare turn it off or let it go into sleep mode). I've backed everything up on carbonite but don't like it.

So I bought a Seagate external drive 250 gb capacity. Is there an easy way to just transfer all on my computer to it? Does it work like a flash drive?

Thanks.

How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive

How do i copy my entire computer to an external hard drive
12-05-2010, 08:31 AM

 

Location: Las Flores, Orange County, CA

26,342 posts, read 89,963,315 times

Reputation: 17769

Is it USB?
Did you plug it in?
Does windows recognize it as a new drive and does it have a drive letter?
Are all the files you want to copy not hidden and not system files?

If yes to all questions, then simply copy and paste.

How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive

How do i copy my entire computer to an external hard drive
12-05-2010, 09:38 AM

 

Location: Tyler, TX

21,343 posts, read 21,698,505 times

Reputation: 12868

Quote:

Originally Posted by mistygrl092

How do i copy my entire computer to an external hard drive

Does it work like a flash drive?

Yep. Pretty much.

How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive

How do i copy my entire computer to an external hard drive
12-05-2010, 01:14 PM

 

5,546 posts, read 9,599,831 times

Reputation: 2797

I don't get it until tomorrow (Amazon) and it does have a USB 2.0. Hopefully I'll get lucky and the device will be recognized.

I was hoping there was an easy way to just copy the entire C Drive or Desktop without having to moving each individual doc or file? That will take a long time. Still, it's better than having my stuff sit on some server over in India.

How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive

How do i copy my entire computer to an external hard drive
12-05-2010, 02:12 PM

 

Location: Las Flores, Orange County, CA

26,342 posts, read 89,963,315 times

Reputation: 17769

Quote:

Originally Posted by mistygrl092

How do i copy my entire computer to an external hard drive

I don't get it until tomorrow (Amazon) and it does have a USB 2.0. Hopefully I'll get lucky and the device will be recognized.

I was hoping there was an easy way to just copy the entire C Drive or Desktop without having to moving each individual doc or file? That will take a long time. Still, it's better than having my stuff sit on some server over in India.

Are all your files in a known set of folders, like Desktop, My Documents, Photos, Working_Files, etc? You can just copy the folders from the C drive to the external drive. You also might want to ask a friend who is a little more knowledgeable on file transfers to sit with you. It should only take a couple minutes.

How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive

How do i copy my entire computer to an external hard drive
12-05-2010, 03:07 PM

Drag and drop is simple but it can stop copying if it hits a file it can't read and that can get frustrating. Most of your data is probably in your user profile folder. The following command will copy your entire user profile to another drive:

xcopy "%userprofile%\*.*" "z:\%username%\" /d /s /c /i /f /h /r /y

The part above that reads "z:\%username%\" assumes your USB drive is named Z. Your's will likely be a different letter, like E or F. Just change the Z to whatever drive letter Windows assigned your USB drive when you plugged it in.

You can run notepad, copy the above command into it, then save it as backup.bat on your desktop. Double click backup.bat and the command will run. It will copy everything in your user profiles, which includes My Documents, Pictures, Desktop, Favorites, Outlook and Outlook Express email, etc.

If instead you want to copy EVERYTHING on your hard drive just to be sure, including a bunch of stuff that won't be useful when it comes time to restore, use the following command instead:

xcopy c:\*.* z:\ /d /s /c /i /f /h /r /y

(again, change the z:\ to whatever drive letter your USB drive is)

These commands only copy new and changed files. So if you need to run it again, it won't waste time re-copying files that haven't changed.

To verify that your files have been copied, just open My Computer, go to your USB drive, and browse though the files.

How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive

How do i copy my entire computer to an external hard drive
12-05-2010, 03:22 PM

 

5,546 posts, read 9,599,831 times

Reputation: 2797

Quote:

Originally Posted by EscapeCalifornia

How do i copy my entire computer to an external hard drive

Drag and drop is simple but it can stop copying if it hits a file it can't read and that can get frustrating. Most of your data is probably in your user profile folder. The following command will copy your entire user profile to another drive:

xcopy "%userprofile%\*.*" "z:\%username%\" /d /s /c /i /f /h /r /y

The part above that reads "z:\%username%\" assumes your USB drive is named Z. Your's will likely be a different letter, like E or F. Just change the Z to whatever drive letter Windows assigned your USB drive when you plugged it in.

You can run notepad, copy the above command into it, then save it as backup.bat on your desktop. Double click backup.bat and the command will run. It will copy everything in your user profiles, which includes My Documents, Pictures, Desktop, Favorites, Outlook and Outlook Express email, etc.

If instead you want to copy EVERYTHING on your hard drive just to be sure, including a bunch of stuff that won't be useful when it comes time to restore, use the following command instead:

xcopy c:\*.* z:\ /d /s /c /i /f /h /r /y

(again, change the z:\ to whatever drive letter your USB drive is)

These commands only copy new and changed files. So if you need to run it again, it won't waste time re-copying files that haven't changed.

To verify that your files have been copied, just open My Computer, go to your USB drive, and browse though the files.

Thanks so much for all of that, but you are too high tech for me.

How do i copy my entire computer to an external hard drive

I don't understand a lot of what you note, although I am sure someone else could.

I guess I'll just have to wait until I get it and see if there are any instructions that come with it.

A flash drive is about as high tech as I've gotten.

How do i copy my entire computer to an external hard drive

How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive

How do i copy my entire computer to an external hard drive
12-05-2010, 03:30 PM

 

10,885 posts, read 20,490,538 times

Reputation: 10481

You don't need to transfer everything if the computer is going to be replaced, nor do you want to, you don't want the OS as your new PC will have it's own, just copy and past the important folders, docs, photos, videos, etc.

How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive

How do i copy my entire computer to an external hard drive
12-05-2010, 04:37 PM

 

269 posts, read 875,106 times

Reputation: 162

I'm guessing you want to just copy everything to the new drive for when you get a new computer then you can either use the file and settings migration tool here's a quick write up:

Moving Files and Settings to a New PC (http://www.microsoft.com/windowsxp/using/setup/getstarted/bott_fstw.mspx - broken link)

or you can do as Escape mentioned and use a command line tool like XCOPY. It would be far easier and better than using the windows copy/paste commands. Once you have your drive plug it in and see what drive letter it is assigned.

How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive

How do i copy my entire computer to an external hard drive
12-09-2010, 07:26 AM

 

Location: Matthews, NC

14,691 posts, read 25,298,665 times

Reputation: 14387

1. Connect the drive
2. Go to Start, All Programs, Accessories, Windows Explorer
3. Drag and drop whatever folders you want to back up from your C drive to the Seagate drive (possibly E)
4. Profit

How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive
How do i copy my entire computer to an external hard drive

Please register to post and access all features of our very popular forum. It is free and quick. Over $68,000 in prizes has already been given out to active posters on our forum. Additional giveaways are planned.

Detailed information about all U.S. cities, counties, and zip codes on our site: City-data.com.

All times are GMT -6.

How do I transfer everything from my computer to an external hard drive?

To copy multiple files, hold CTRL as you select additional files or folders. Once you have files and folders highlighted, make sure you're in the Home tab, then select Organize > Copy to, and select your external storage device name from the list of options.

How do I Backup my entire computer?

Back up.
Select the Start button, then select Control Panel > System and Maintenance > Backup and Restore..
Do one of the following: If you've never used Windows Backup before, or recently upgraded your version of Windows, select Set up backup, and then follow the steps in the wizard..

What is the fastest way to transfer files from PC to external hard drive?

How to Transfer Files from PC to External Hard Drive Faster FAQs.
Connect the USB to Rear Port..
Update USB/Chipset Drivers..
Enable USB 3.0 Port..
Optimize the Performance..
Convert FAT32 to NTFS..
Format USB..