Backing up your files should be fast and easy, so that you make a backup every day (or at least weekly if you are lazy and your work is not so important ). In the german computer magazine c't, a simple and efficient backup script was presented, which has some unique features:
Setup of the bff.bat script:
Quelle
and Ziel
to fit your environment.Notes:
For windows XP machines, here is the script. You can find the zipfile for all windows versions on the c't homepage
set Quelle="C:\Dokumente und Einstellungen" set Ziel="D:\Backup\%date%" set templog="%temp%\temp.log" ; echo . >>%windir%\backup.log echo Starte Backup: %date% %time% von %Quelle% nach %Ziel% >>%windir%\backup.log md %Ziel% xcopy %Quelle% %Ziel% /m /s /v /c /i /f /h /k /o /x /y >>%windir%\backup.log echo Starte Überprüfung >>%windir%\backup.log start /w windiff.exe -Sdx %templog% -T %Ziel% %quelle% find "different" %templog% >>%windir%\backup.log echo Fertig >>%windir%\backup.log start notepad.exe %windir%\backup.log ; rem Erstellt 2003 von Axel Vahldiek / c't rem mailto: axv@ctmagazin.de
~~LINKBACK~~