bledd. said:synctoy
its free, and microsoft make it..
can use it in conjunction with task scheduler (instructions are in the synctoy help file)
bledd. said:it doesn't run when you're not running it though
bledd. said:synctoy
its free, and microsoft make it..
can use it in conjunction with task scheduler (instructions are in the synctoy help file)
That's the ticket!bledd. said:...and is commandline![]()
BillytheImpaler said:Why not just write a simple batch script that copies the contents of the directory to the backup volume? You'd then just set it as a scheduled task.
Only problem with this is it copies the entire folder every time...BillytheImpaler said:Why not just write a simple batch script that copies the contents of the directory to the backup volume? You'd then just set it as a scheduled task.
BillytheImpaler said:Why not just write a simple batch script that copies the contents of the directory to the backup volume? You'd then just set it as a scheduled task.
ns400r said:^ Yeah, what he said.
bledd. said:robocopy does this, but you can set it to only copy updated files (instead of mindlessly copying multiple gb's everytime it backs up, it'll just copy the updated files) = far better!
@ECHO off
COLOR 80
ROBOCOPY "E:\Graphics" "X:\Graphics" *.* /S /PURGE >X:\Backuplog.txt
ROBOCOPY "E:\Uni" "X:\Uni" *.* /S /PURGE >>X:\Backuplog.txt
ROBOCOPY "E:\College" "X:\College" *.* /S /PURGE >>X:\Backuplog.txt
ROBOCOPY "E:\Jobs" "X:\Jobs" *.* /S /PURGE >>X:\Backuplog.txt
ROBOCOPY "E:\Stuff\My website details" "X:\Stuff\My website details" *.* /S /PURGE >>X:\Backuplog.txt
ROBOCOPY "E:\Stuff\Win Settings" "X:\Stuff\Win Settings" *.* /S /PURGE >>X:\Backuplog.txt
ROBOCOPY "E:\Stuff\XP Modding" "X:\Stuff\XP Modding" *.* /S /PURGE >>X:\Backuplog.txt
ROBOCOPY "E:\Stuff\X1" "X:\Stuff\X1" *.* /S /PURGE >>X:\Backuplog.txt
ROBOCOPY "C:\Documents and Settings\Administrator\Favorites" "X:\Favorites" *.* /S /PURGE >>X:\Backuplog.txt
ROBOCOPY "C:\WINDOWS\Fonts" "X:\Fonts" *.* /S /PURGE >>X:\Backuplog.txt
MSG Administrator Backup Complete