Need Batch File code to copy emails

Status
Not open for further replies.

alphiemarn

Baseband Member
Messages
36
I got stuck on this one...

Please can a genius help me to write a batch script on how to copy all incoming and outgoing emails to a different directory/folder.
 
not really genius but its a batch

cls
@echo off
copy c:\queue\*.txt c:\temp

if you want to delete the orgional files from "c:\queue\" add

del c:\queue\*.txt
 
Status
Not open for further replies.
Back
Top Bottom