Summary: Use Windows PowerShell to copy a source directory to multiple destinations.
How can I use Windows PowerShell to make multiple backup copies of a source directory without wasting a
lot of time mousing around?
Copying a single source directory to multiple destinations can be a single line command, for example:
"c:\fso1","c:\fso2","c:\fso3" | % {Copy-Item c:\fso -Recurse -Destination $_}
Note The % symbol is an alias for the Foreach-Object cmdlet.