Announcement

Collapse
No announcement yet.

how do i back my laptop up to an external hd?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • how do i back my laptop up to an external hd?

    I just bought an external HD, and need to back everything on my laptop up to it and do a factory reset since I'm selling it. Anyone mind telling me how to do it? Thanks

  • #2
    You want to back the data up, or make a complete copy of the drive?
    How do we forget ourselves? How do we forget our minds?

    Comment


    • #3
      I just want to be able to access my documents, photos and music files

      Comment


      • #4
        Just hook that motherfucker up to a USB port and copy the shit over! Then wipe the laptop when you're done
        How do we forget ourselves? How do we forget our minds?

        Comment


        • #5
          Originally posted by The Geofster View Post
          Just hook that motherfucker up to a USB port and copy the shit over! Then wipe the laptop when you're done
          This! Drag and drop, baby!

          Comment


          • #6
            Personally, and I know this is super old skool but it works. I use a batch file setup in Windows Task Scheduler.

            Code:
            c:
            cd\
            xcopy "c:\Directory I want backed up" "e:\Destination of my directory"  /E /M /C /G /H /R /Y /J /I
            xcopy "c:\More Data" "e:\Destination of more data"  /E /M /C /G /H /R /Y /J /I
            xcopy "c:\Out look stuff" "e:\Dest Outlook" /E /M /C /G /H /R /Y /J /I>e:\lastbackup.txt
            
            exit
            The last xcopy runs and it's results are written to e:\lastbackup.txt so I can see date/time stamp of last successful backup. I have this run everynight as I'm afraid of hard drive failure. All the code I write gets backed up daily/manually, to an offsite SVN server so I'm not really worried about "versions" of things, just "today's" data.

            To employ the batch file on your machine just replace the c:\Data paths with the paths you wish to backup and obviously the e:\ drive and destinations. In a console/DOS screen you can do "xcopy /?" to research the switches.

            Oh yeah, on the edit. My OS is Win 7 32 so the switches might change if you're in XP, Win8, etc. Also, there's a ton of information on the web for setting up a simple Windows Task in Scheduler. Google it for detailed how to's.
            Originally posted by Taya Kyle, American Gun
            There comes a time when honest debate, serious diplomatic efforts, and logical arguments have been exhausted and only men and women willing to take up arms against evil will suffice to save the freedom of a nation or continent.

            Comment

            Working...
            X