Im currently running Windows XP Prof.
I tried using the copy con from the link provided but keep getting an error stating "cannot perform a cyclic copy". Im not sure why I keep getting that error even though I read the reasons why it may occur. I'm going to post a bit of what I was playing around with and see if anyone can gather anything from it. Im trying to keep it fairly simple, but it seems that I wont be able to for much longer

.
@echo off
REM Create backup copy of a foler, including all files in subfolders
echo Please provide the source folder:
COPY CON source
echo Please provide the destination folder:
COPY CON destination
XCOPY source destination /D /E
pause
I also read the other thread but they were dealing with a pre-determined source and destination.