# List all the folders in Banana
$folders = Get-ChildItem C:Banana
foreach ($folder in $folders.name){
#For each folder in C:anana, copy folder c:copyme and it's content to c:anana$folder
Copy-Item -Path "C:copyme" -Destination "C:anana$folder" -Recurse
}