You are not logged in.
Dear visitor, welcome to Aqua Computer Forum. If this is your first visit here, please read the Help. It explains how this page works. You must be registered before you can use all the page's features. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

Quoted from "x-stars"
Kein Prog im eigentlichem Sinne, aber ich benutz diese Batch um meine Daten auf der externen Platte mit den aktuellen Daten auf der Platte im Rechner zu synchronisieren. Dabei werden nur die neuen und die geänderten Daten kopiert:
![]()
Source code
1 2 3 4 xcopy QUELLE:\*.* ZIEL\*.* /C /S /I /E /R /D /Y ECHO OFF ECHO Backup abgeschlossen! PAUSE
Einfach in eine Textdatei kopieren und die Endung in ".bat" ändern, dann reicht ein Doppelklick und die Daten werden synchronisiert.
(die Idee kommt von Tom)
|
|
Source code |
1 2 3 4 5 6 7 |
@ECHO OFF ECHO Starte Backup... robocopy z:\ x:\Backup /MIR /E /XA:S ECHO. ECHO Backup complete... ECHO. PAUSE |
Quoted from "RedFlag1970"
Mit Robocopy und den Parametern solte man sich gut auskennen!
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
:@ECHO OFF SETLOCAL SET _source=c:\ SET _dest=u:\ SET _what=/COPYALL /B /SEC /NP :: /COPYALL :: COPY ALL file info :: /B :: copy files in Backup mode. :: /SEC :: copy files with SECurity :: /NP :: no progress SET _options=/R:0 /W:0 /LOG:RC_log_auswertung.txt :SET _options=/R:0 /W:0 /LOG:RoboCopy_log.txt /NFL /NDL :: /R:n :: number of Retries :: /W:n :: Wait time between retries :: /LOG :: Output log file :: /NFL :: No file logging :: /NDL :: No dir logging ROBOCOPY %_source% %_dest% %_what% %_options% |
Quoted from "Eikman"
Juhu, ich werde mal in einer Signatur zitiert![]()
-