关于powershell:使用powershell脚本的Unc路径

关于powershell:使用powershell脚本的Unc路径

我有一个用于 PowerShell 课程的项目。我应该通过网络将客户端计算机的用户文件夹数据复制到服务器。

我的脚本是:

Computer= (Get-ADComputer -Filter 'name -notlike "serveur*"').Name

$Path= "\\$pc\c$\Users"
$Destination= "E:\Sauvegardes\$pc"

Foreach($pc in $Computer) {
    robocopy $Path $Destination /MT:128
    }

运行脚本后,我发现 PowerShell 向我发送了一条日志,说它找不到路径\\@{Name-PT-IT}\

在此处输入图片描述 参见下图

准确地说,在图像中你可以看到日志说\\@{Name-PT-IT}\。这是因为里面返回的名称之一@pcPT-IT

我是不是犯了错误?

相关内容