OK, what I want to do doesn't seem that hard in theory, but I can't get it to work. I am trying to make a little .bat file that I can use with my Windows XP scheduled tasks so that it will copy the files of one folder on my computer to a folder on my companies network every night
(
Read more... )
Comments 3
replace /U "C:\Documents and Settings\mgray.MAIDPRO\Application Data\Microsoft\Outlook\*.*" "Z:\Outlook Backup"
The problem has to do with the spaces. Windows interprets a space as a new argument so it's attempting to replace files in C:\Documents into and
Reply
replace "C:\Documents and Settings\mgray.MAIDPRO\Application Data\Microsoft\Outlook\*.*" "Z:\Outlook Backup" /u
pause
or
copy *.* "Z:\Outlook Backup" /Y
Reply
Reply
Leave a comment