我有两个Copy-Item命令
Copy-Item "C:\Test\folder1" "\\remote_machine\destination" -Recurse
Copy-Item "C:\Test\folder2" "\\remote_machine\destination" -Recurse
folder1和folder2包含文件夹和文件
两个命令都相似,但我得到的结果不同
更新:我没有收到任何错误。问题是关于第二个文件夹的路径。我希望两个文件夹的内容都在一个目标文件夹中。
答案 0 :(得分:3)
PowerShell存在问题 - http://groups.google.com/group/microsoft.public.windows.powershell/browse_frm/thread/ae9b8b4424c2af22
我的示例的解决方案是
Copy-Item "C:\Test\folder1" "\\remote_machine\destination" -Recurse
Copy-Item "C:\Test\folder2\*" "\\remote_machine\destination" -Recurse