使用 UNC 路径通过 Powershell 从远程 PC 复制文件

使用 UNC 路径通过 Powershell 从远程 PC 复制文件

我需要一种方法来将文件从远程 PC 复制到本地磁盘Powershell v2.0,尝试使用该远程 PC 的管理员权限。通过以下 cmdlet,我们可以复制文件:

Copy-Item -Path C:\somefile.txt -Destination c:\someotherfile.txt

但我的问题是如何在上述 cmdlet 中指定我的本地 PC 路径作为目标路径或将远程 PC 路径指定为源路径?如何指定UNC 路径上述 cmdlet 中的源路径或目标路径?

相关内容