With this powershell command you will be able to copy any site tree items to another path.
$rootOfitemsToCopy = Get-Item "/sitecore/content/Test";
$destinationItemPath = Get-Item "/sitecore/content/Home";
Copy-Item -Path $rootOfitemsToCopy.Paths.FullPath -Destination $destinationItemPath.Paths.FullPath -Recurse