Shortcuts
|
How to Backup using Batch Files2004-12-10 (updated: 2020-09-30) by PhilipTags: backup, batch file, script Sometimes it is useful, or even necessary to simply copy existing directories to another hard disk or network drive, rather than using more complicated backup methods. Multiple directories can be backed up comparatively easy with a simple click, by creating and running a batch file. That file can be executed manually from your desktop, can be added to startup or scheduled for periodic execution as needed. Batch files have comparatively easy syntax and can have many uses, so this method could also be a good learning experience by example. You can simply copy the text below, and paste it into Notepad. Create a new file with either .bat or .cmd extension, rather than txt. Here is a working example of a backup script you can modify for your needs:
The above example backs up "My Documents", Favorites, Outlook Express email/address book, (all for the current user) and the Windows Registry. It copies the files to the directory defined in the %drive% variable, or "g:\Backup". If the script is ran multiple times, it will only rewrite if the source files are newer. It will create subdirectories as necessary, and it will retain file attributes. It can copy system and hidden files. In the above file, all lines that begin with "::" are comments. The "set drive=" and "set backupcmd=" near the top define two variables (referenced by %drive% and %backupcmd%), used a number of times throughout the file; the first being the location of the top directory where we want to backup, and the second the actual copy command with all necessary switches. All the "echo " lines in the file simpy output the line of text to the screen, and the lines beginning with %backupcmd% are the actual commands to execute. Note that most of the folders in the above backup example are subdirectories of the %USERPROFILE%... It is possible to simply backup the entire user profile with My Documents, Favorites, Outlook Express, Outlook, etc. by backing up this one folder. Here is an example (it assumes the above "drive" and "backupcmd" variables are set):
Backing up Other Directories and networked PCs You can backup other directories by simply creating more alike lines:
For example, if you'd like to backup "C:\Program Files\Microsoft Office" to our destination "G:\Backup\MS Office" (and retain the directory structure) you'd need to add the following line to the batch file:
Here is another example, backing up the Administrator Profile on a machine on the LAN with computer name "Lianli":
Remember, you have to save the batch file with either .bat or .cmd extension, then just double-click to execute it. Using the Current Date Sometimes it is useful to create folders with the date incorporated in the folder name. Here is how to set the variable folder to the current date (assuming US system date format):
It is also possible to use the current time in the folder name. The following example with incorporate both the current date and time to the minute, separated by underscores. There is an extra step that cleans up possible spaces in single-digit hours in the system time:
Example - dated directories In the example below, we first set 3 variables: drive, folder, and backupcmd. The "drive" variable defines the root directory of our backups. The "folder" takes the 2 digit day value from the current date (US date format, taking 2 digits from the date command output, starting at the 7th character), which we will use as a subdirectory. The third variable, "backupcmd" defines our backup command with the appropriate command line switches we want to use.
This example will backup the "C:\Program Files\somedirectory" folder to "D:\Backup\[dd]" where [dd] is the current day of the month. After a month, we will have 30ish daily copies of the backup... And, because of the xcopy command line switches chosen, following backups will only overwrite files that are newer, speeding up subsequent backups. Alternatively you can add a line to delete the %folder% directory prior to executing the %backupcmd% if you prefer to start clean (and take longer). Cleaning up It is usually a good idea to clean up temporary files, cookies, and history from the destination backup, as applicable. It is especially useful if you're backing up full, multiple user profiles and overwriting them periodically. Since temporary files and cookies change, your backed up directories will keep increasing with unnecessary files. To remedy this, the following code can be added to the backup script, or to a separate batch file. It will automatically search all subdirectories for "cookies", "temp" and "history", and then remove those directories:
Note that you need to change to the destination drive, and the main backup directory before searching for files to delete. Any sub-folders that contain "cookies", "temp", or "history" will be deleted automatically. You can test to see what will be deleted by commenting out the "for /f ....." line (just add :: to the beginning of the line, or delete it from the batch file and add it again later). If that line is not present, the file will only list all files to be deleted in the cleaup.txt file, located in the destination directory (G:\Backup\cleanup.txt in the above example). If you add the cleanup portion to the end of your backup batch file, you may want to remove the "@pause" line at the end of the backup portion, so everything can execute without user interacion. Alternatively, there is a simpler one-line method of deleting specific subdirectories after backing up. The disadvantage of using this method is that you'd need another line for each separate directory to be removed... In other words, it doesn't work well when removing a large number of directories by similar names. Still, here is an example:
See Also: How to backup using Batch Files in Windows 10 (using Robocopy) Notes:
User Reviews/Comments:
rate:
avg:
by
David - 2006-02-10 14:48
For the UK people who may stumble upon this...check out the date and time line which will capture the date and time... if today was 23/06/2006 and 19:30, the variable dateNtime would be 23-06-2006_19-30
Hope this saves someone some time!! The code is below @echo off :: variables set drive=M:\mybackup SET dateNtime="%date:~0,2%-%date:~3,2%-%date:~6,6%_%time:~0,2%-%time:~3,2%" set backupcmd=xcopy /s /c /d /e /h /i /r /k /y echo ### Backing up your Sites directory... %backupcmd% "C:\Program Files\Sites" "%drive%\%dateNtime%" echo Backup Complete - Your Backup is located at %drive% @pause
by
Grant - 2006-02-20 21:45
by
philip - 2006-02-22 16:25
You only need one additonal line for each LAN client/directory, not 10. For example, to backup the administrator profile on 3 remote machines named COMP1, COMP2, and COMP2, you'd need something like:
@echo off :: variables set drive=g:\Backup set backupcmd=xcopy /s /c /d /e /h /i /r /k /y %backupcmd% "\\COMP1\c\Documents and Settings\Administrator" "%drive%\COMP1 - admin profile" %backupcmd% "\\COMP2\c\Documents and Settings\Administrator" "%drive%\COMP2 - admin profile" %backupcmd% "\\COMP3\c\Documents and Settings\Administrator" "%drive%\COMP3 - admin profile" echo Backup Complete! @pause And so on, for each client you want to backup. In other words, you do need to add one line of code for each directory you're backing up (it includes all subdirectories as well), I am not sure how you can further simplify that.
by
Al - 2006-02-28 13:54
by
andrew - 2006-03-01 14:02
by
zorak1083 - 2006-04-10 11:16
David,
If i want to rename a folder when it's backed up deppending on the date, for example i have a folder with files that are populating every day in C:\pictures and i want to make a backup of it every to D:\Backup but change the folder name to "pictures_dd_mm_yyyy" what do i have to do? Rename the folder before backing up or during the backup procedure? The main problem of this procedure is how to avoid overwriting every time the new folder to the backup destination to the old folder. How the system will be able to identify the current dd_mm_yyyy? Can you send me the code for this batch? Thanx for your time
by
anonymous - 2006-04-24 12:47
by
anonymous - 2006-06-01 08:57
by
Philip - 2006-06-01 09:49
The xcopy "/d" command-line parameter specifies that the command is to copy all source files that are newer than existing destination files. Using this option allows you to update the backup directory only with files that have changed since last time you ran it (rather than copying all files). You should still end up with identical directories/files after execuring the batch file, while saving time for consecutive backups.
I hope this helps. Please direct any further questions to our forums. Thanks.
by
Ravi - 2006-06-24 04:09
by
denis2006 - 2006-07-12 16:25
by
MyK - 2006-08-09 09:13
by
loganj - 2007-01-09 13:17
by
Phil - 2007-01-18 11:21
Your code works great! Buttt.... When I put the batch file in the Scheduled Tasks and try to get it to run it Bombs. I look in the logfile and it says it ran successfully. I been trying to search the problem and the only thing I come up with is someone posted about having problems with drive letters in the batch file not working and having to put in \\server\folder. I tryed but to no avail. Help!! Thanks in advance.
by
captainkaos - 2007-01-31 01:24
i HAVE TRIED MODING THE CODE WITH NO HOPE OF IT
i want to back up a network drive drive letter(x) with a folder name ( ma) X:\ma to D:\ma code @echo off :: variables set drive=x:\Backup set backupcmd=xcopy /s /c /d /e /h /i /r /y %backupcmd% "x:\ma" "%drive%\ d:\ma" echo Backup Complete! @pause ????? where have i gone wrong Capt Kaos Australia
by
eurofins - 2007-02-01 15:55
The batch file works great and has saved me a lot of time, but what about a code that will automatically cancel the script should a network drive not be detected? It would be great for those remote customers not to get the error when a mapped drive is not there.
Any help on this would be great. Thanks
by
Philip - 2007-02-01 20:50
by
Doron - 2007-02-06 15:40
by
XplosiV - 2007-02-28 01:03
by
Eddieduce - 2007-04-20 16:26
by
zoulou - 2007-04-24 09:20
Im sorry that i dont understand most of them cause im new in batch files but i also want to backup & zip some files, lets say:
"C:\program Files\winzip\wzzip" -a -p -r C:\BACKUP\BACKUP.zip "C:\Program Files\ahead\*.*" copy C:\BACKUP\BACKUP.zip K:\BACKUP\BACKUP.zip i run this batch every day and i want to verify that the backup is done, otherwise prompt me with an error message possible? I think that the best way is to compare the date that the backup was run with the date that the backup.zip file is modyfied. that was a thought but i dont know if is the best way thnx in adnvance
by
anonymous - 2007-04-30 17:25
Here is another batch file. I have it running on my machine so that when it is run it backs up all of my documents in the C:\ drive to my E:\ drive. See what you think. Nice and simple. However I do want to add a command to tell it to copy ONLY what has been changed since the last backup. I know this can be done using /D:m-d-y (leaving them blank checks target directory and only copies if the date of the last edit of the source has been changed) However I am not sure how to add it in. Any help would be greatly appreciated.
@echo off color F9 cls xcopy /R /E /H /Y "c:\Documents and Settings\User1\My Documents\*.*" "E:\my documents\*.*" PAUSE
by
Philip - 2007-04-30 18:27
by
jm1647 - 2007-05-07 02:12
by
Loranga - 2007-05-09 12:14
Hi, I have problems with getting the dates on my folder. I live in Sweden so I tried the other settings. The backup works but I would like to get dates on my folders when I backuo them.
@echo off :: variables set drive=G:\Projekt\Arbetsdokument\test SET dateNtime="%date:~0,2%-%date:~3,2%-%date:~6,6%_%time:~0,2%-%time:~3,2%" set backupcmd=xcopy /s /c /d /e /h /i /r /k /y echo ### Backing up your Sites directory... %backupcmd% "C:\Documents and Settings\John\My Documents\backup" "%drive%\%dateNtime%" echo Backup Complete - Your Backup is located at %drive% @pause |