View Single Post
  #6  
Old 07-11-2005, 07:22 AM
Spota Spota is offline
Member
 
Join Date: Dec 2004
Posts: 36
Default Re: backing up my HHs

I back up several things to a different drive. I wrote a script using robocopy and I copied the music and PT part and pasted below (you will need robocopy to run this, from the resourse kit or d\l from MS). THe great thing about robocopy is that it only copies files that change. I backup about 150GB per night, but only a few mbs change so it only take 10 or 20 seconds.

:Music are all MP3s
echo started music at %date% %time% >> update.txt
robocopy D:\Music G:\Backup_Music /MIR /R:0 /W:0 /V /ETA
echo completed Music at %date% %time% >> update.txt

:PT is poker tracker db
echo started PT at %date% %time% >> update.txt
copy "C:\Program Files\Poker Tracker V2\ptrack.mdb" "C:\Program Files\Poker Tracker V2\db_copy"
copy "C:\Program Files\Poker Tracker V2\hhdb.mdb" "C:\Program Files\Poker Tracker V2\db_copy"
robocopy "C:\Program Files\Poker Tracker V2\db_copy" G:\Backup_PT /MIR /R:0 /W:0 /V /ETA
echo completed PT at %date% %time% >> update.txt
Reply With Quote