我正在编写要从服务器A运行的PowerShell脚本。我想连接到服务器B并将文件复制到服务器A作为备份。
如果不能这样做,那么我想从服务器A连接到服务器B并将文件复制到服务器B中的另一个目录。
我看到了Copy-Item
命令,但看不到如何给它提供计算机名称。
我以为我可以做类似的事情
Copy-Item -ComputerName ServerB -Path C:\Programs\temp\test.txt -Destination (not sure how it would know to use ServerB or ServerA)
我怎样才能做到这一点?