@ECHO OFF CLS REM /S : Subdirectories REM /Q : Quiet Donot display Filenames REM /R : Overwrites Read Only File REM /Y : Supress Prompting When Overwriting Existing File REM /I : If Destination doesn't Exist and copying more than One File, its assumed as DIRECTORY. ECHO 'Processing Local 2 Testing : Complete' ECHO 'Make sure Testing Server Directory is Mapped as Y:' net use Y: \\yourserver.address ECHO 'Copying Local To Testing Directory... Please wait .......' XCOPY C:\ProjectFolder Y:\ProjectFolder /S /Q /R /Y /I /EXCLUDE:1-Exclude-Complete.txt ECHO '* * * * * * Copying Completed * * * * * * * *' PAUSE