You could create a batch file:
copy c:\file1.txt z:\
copy c:\file2.txt z:\
copy c:\file3.txt z:\
Then use Windows Task Scheduler to run it every three days.
(when you choose "daily" in Task Scheduler and click next, the next window allows you to choose every three days).
Frank4d's solution is all you need with an addition:
Scheduled tasks run in the security context of the local system. This means that a normal scheduled task cannot access network resources on another machine. You need to create a domain account that has rights to both the local folder you're getting the files from and the network share you're copying them to. When you create the scheduled job, go into the properties and set the job to run under the account you created. (Make sure to set the password on the domain account to never expire since you need to explicitly enter that password into the scheduled job so it can log on.)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.