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!
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!
Yup, go right ahead. This is exactly the sort of thing robocopy is good at.
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.
Note that this will not work if you are using the /mon
option.
I have a problem in a complex copy. Below is an example of my script and CSV with source and destination paths. The powershell script I created works well in part but not totally, it makes the copies ...
I m using robocopy to do backups with a PowerShell script, and it s pretty awesome, except that I d like it to only show the progress percentage while it copies and not all of the other information. ...
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 ...
I m attempting to run a series of commands programmatically, read the error codes, and detect if these codes indicate success or failure so I can respond accordingly. Currently my commands are using ...
Hi I m trying to use robocopy to copy a single file from my computer to another computer over the network. The file I m going to copy is named setup.exe and the directory it rests in also has a ...
I have job that runs every 15 minutes that uses robocopy to copy a backup of the tranaction logs to a different server. This job is failing USER has full access rights to both home folder and the ...
Does anyone know if it is possible to download the latest robocopy for Windows 2003. The latest version provides the /DST option which ignores time stamps changed due to BST (British Summer Time). ...
Iam using robocopy s /MIR command to copy the source files from MKS sandbox to SVN working copy and then iam committing to svn repository.this process is needed becasue we are in the process of ...