views:

104

answers:

2

Hi,

is it possible and safe to copy from one source to multiple destinations with Robocopy?

I mean, something like this in a bat file:

ROBOCOPY source dest_1
ROBOCOPY source dest_2

Is there any side effect?

Thanks!

A: 

Yup, go right ahead. This is exactly the sort of thing robocopy is good at.

SAL
A: 

This might be of help: http://robomojo.codeplex.com

It's a free and open source shell for Robocopy. It lets you set up "tasks" (i.e: a single Robocopy command) and combine them into "Jobs" (multiple tasks) which run in sequence.

Adrian K