I would like to copy Recursively the full C:\Test Folder with all subdirectories including the Test folder and the folders permisions. I tried using the following commands but it only copies the files:
Powershell:
`Get-ChildItem -Path -Recurse C:\Test | Copy-Item -Destination F:\ -Recurse -Container`
Robocopy:
robocopy C:\Test F:\ /s /e