Sorry you wanted a batch process.
You can try SyncBackSE
it schedules file copies very well and the free version does a excellent job
with logging.
Russ
--
Russell Grover - SBITS.Biz [SBS-MVP]
Microsoft Gold Certified Partner
Microsoft Certified Small Business Specialist
World Wide 24hr SBS Remote Support -
http://www.SBITS.Biz
Microsoft Online Services -
http://www.microsoft-online-services.com
"Russ SBITS.Biz [SBS-MVP]" <(E-Mail Removed)> wrote in message
news:#(E-Mail Removed)...
> Try RichCopy 4.0
> It's Robo Copy on steroids
>
> http://technet.microsoft.com/en-us/m...t.aspx?pr=blog
>
> --
> Russell Grover - SBITS.Biz [SBS-MVP]
> Microsoft Gold Certified Partner
> Microsoft Certified Small Business Specialist
> World Wide 24hr SBS Remote Support - http://www.SBITS.Biz
> Microsoft Online Services - http://www.microsoft-online-services.com
>
>
> "Pegasus [MVP]" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>>
>>
>> "Eric" <(E-Mail Removed)> said this in news item
>> news:0BA6058A-4560-4610-9872-(E-Mail Removed)...
>>> Does anyone have any suggestions on how to create a batch file?
>>> I would like to copy everything within D drive into G drive, and
>>> overwrite
>>> anything without request for any confirmation. After that, shut down my
>>> XP
>>> window.
>>> Does anyone have any suggestions on how to code this batch file?
>>> Thanks in advance for any suggestions
>>> Eric
>>
>> Here you go:
>> @echo off
>> xcopy d:\*.* g:\ /s /y
>>
>> If you are dealing with large amounts of data then this option is
>> preferable:
>> @echo off
>> robocopy d:\ g:\ *.* /s /is /w:1 /r:1
>>
>> You can download robocopy.exe from here:
>> http://www.microsoft.com/downloads/d...displaylang=en.
>> To see its many switches, type robocopy /? at the Command Prompt.
>