Robocopy to multiple destinations

14,965

Solution 1

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

Solution 2

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.

Solution 3

Note that this will not work if you are using the /mon option.

Share:
14,965
andrew0007
Author by

andrew0007

Updated on June 07, 2022

Comments

  • andrew0007
    andrew0007 almost 2 years

    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!