xcopy (
−)
REM This is a basic batch file to copy files that changed in My Documents and Quicken to a Flash Drive (mapped to E)
REM erase e:\backup\*.* /F /S /Q
xcopy "C:\Documents and Settings\Default\My Documents\*.*" e:\backup\*.* /S /C /F /H /R /Y /D
xcopy "C:\QuickenW\Q3.dir" e:\backup\*.* /S /C /F /H /R /Y /D
xcopy "C:\QuickenW\Qdata.*" e:\backup\*.* /S /C /F /H /R /Y /D
exit