Robocopy - Rename folders after copying

Hello Guys

I need to copy and rename about 100 folders. Is there any chance I can create a Excel, VCS or a batch file with all the wanted Folder names to set up with robocopy?

Like this:

SRC
testone

DEST
testtwo

For example:
C:\user\admin\Folders\testone  C:\user\admin\Folders\testtwo


Thanks for your help
  • Edited by theWasabi 21 hours 48 minutes ago
February 19th, 2015 8:46am

CSV fie"
Source, DEstination
folder1,folder2
folder1,folder2
etc

Import-Csv copies.csv |
   ForEach-Object{
        ROboCopy $_.Source $_.Destination *.* /E /...
   }

Free Windows Admin Tool Kit Click here and download it now
February 19th, 2015 9:16am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics