July 4th, 2013

PowerTip: Use PowerShell to Copy Items and Retain Folder Structure

Doctor Scripto
Scripter

Summary: Copy items in a folder and retain the container with Windows PowerShell 3.0.

Hey, Scripting Guy! Question How can I use Windows PowerShell 3.0 to copy a folder structure from a drive to a network share, and retain the original structure?

Hey, Scripting Guy! Answer Use the Copy-Item cmdlet and specify the –Container switched parameter:

Copy-Item c:\fso –destination \\server1\share -recurse -container

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.