echo off cls echo ************************************************************************** echo * * echo * This will only backup the new or updated files and documents to BORG * echo * * echo ************************************************************************** echo. xcopy "C:\documentation\*.*" "M:\Backup\documentation\*.*" /D /Y /E echo. echo. echo ************************************************************************** echo * * echo * The backup process has finished! If this command console box is * echo * open, then you can close it by clicking on the [X] on the top right * echo * hand corner. * echo * * echo ************************************************************************** exit