![]() |
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:
![]() ![]() ![]() ![]() ![]() ![]() ![]()
Hi there, I have been reading these comments with interest and have been trying some of the code. Can anyone help me with the following:
on our server (Microsoft Server 2003, standard edition, service pack 1) when I execute the batch file with 'echo date %date%' I get the following result: date 09.on. on my XP machine I am getting the expected result of: date (22/09/2008) What is going on? When I type 'date' into the command prompt I am getting today's date and the question for entering the new date... Thanks
Lesson on this stuff is great. Thanks for the info as I'm really starting to learn a lot on this stuff. Now, is there anyway to use this to do an incremental backup? I want to get my fullbackup, but then tell this to just get what's changed or is new since it was last backed up. Anyone have the code or could give any direction?
How about backing up an mp3 player? Can this command file be modified to specify a usb device as the source file? Looking around in Device Manager I found my mp3 player under Portable Devices, and opening Properties then details, found data for my player under Device Instance Id, Hardware Ids, Compatible Ids, Matcing Device Id, Service, Enumerator and Capabilities. Would I use one of those ids in place of the drive spec? Which one?
Correct, that would be simplex. However my player does not show up on the tree as a drive letter, but by its name. I tried to access the player using subsequent drive letters (f, g, h, i ...) without result. That's what led me into Device Manager and the ids I quoted in my post.
I have not tried clicking on the device and mapping it to a drive. Yathink?
I haven't had much luck with it
heres my script @echo off set vbsource=j:\wamp set vbdest=J:\vbbackups set vbcmd=xcopy /s /c /d /e /h /i /r /y set vbtxt=vbulletinfilelist.txt set fullvbcmd=%vbcmd% "%vbsource%\www\" "%vbdest%\www" "%vbdest%\%vbtxt%" set ifvbcmd=%fullvbcmd% echo ### Setting Vbulletin Source Directory to %vbsource% ### echo ### Setting Vbulletin Destination Directory to %vbdest% ### echo ### Setting Backup Process Command to %vbcmd% #### echo ### Setting Up Full Command Process to %ifvbcmd% ### echo ### Vbulletin Forum Dir and Sub Directories... %fullvbcmd% echo Backup Complete! @pause i keep getting this error J:\vbbackups>vbback.bat ### Setting Vbulletin Source Directory to j:\wamp ### ### Setting Vbulletin Destination Directory to J:\vbbackups ### ### Setting Backup Process Command to xcopy /s /c /d /e /h /i /r /y #### ### Setting Up Full Command Process to xcopy /s /c /d /e /h /i /r /y "j:\wamp\www\" "J:\vbbackups\www" "J:\vbbackups\vbul letinfilelist.txt" ### ### Vbulletin Forum Dir and Sub Directories... Invalid number of parameters 0 File(s) copied Backup Complete! Press any key to continue . . . have tried many diff ways no luck any help would be great
Your problem seems to be in this line:
set fullvbcmd=%vbcmd% "%vbsource%\www\" "%vbdest%\www" "%vbdest%\%vbtxt%" You have 3 directories listed, I'm not sure what you're trying to do with it. The syntax should something like: set fullvbcmd=%vbcmd% "%vbsource%\www\" "%vbdest%\www\" Both the source and destination should be directories.
I have a problem that I was wondering if someone can help me with when using this batch. I have edited the batch to match my needs and it's working great. But now what I need to do is copy files from a directory that is on a CD (that part is fine) and put them into a destination path that contains a hidden directory. When I change Windows view settings to view hidden files/folders, my batch works flawlessly. However, when I hide files/folders, the batch errors saying an invalid destination.
Any tips? Thanks, Chris
I was able to figure out my problem. It didn't occur to me while I was wrapped up in it, but once I stepped away from it for a little while, it dawned on me to just use the ATTRIB command to change the hidden attribute, and then change it back to hidden after the copy was done.
Thanks, great batch file!
Hi, I'm currently using this template to backup my hard drive and I've got the /d command so it will only replace updated files from my main drive to the backup drive. But is there any command to compare a folder and the backup version and delete any files from my backup which have been deleted/renamed/whatever from the main so I've got a complete mirror?
Thanks.
There is no switch/command that I'm aware of to compare and delete files in the backup folder that have been removed from the original...
It may possibly be accomplished by a script that walks all files and compares them, by periodically deleting the backup directory to remove stale files, or by using alternating/multiple backup directories. Keep in mind that if a user accidently deletes files, it may be a good idea for those files to remain in the backup directory for a period of time facilitating recovery. |