PowerShell的UNC网络路径问题

时间:2018-09-07 17:36:19

标签: powershell

省略了敏感数据。

我无法让PowerShell连接到共享文件夹。     Copy-Item : Cannot find path '\\192.168.0.000\Common Data\Software\Crystal Reports\CRRedist2005_X64.msi' because it does not exist.

这对一台机器有效,但对另一台机器无效。

$source = "\\192.168.0.000\Common Data\Software\Crystal Reports\CRRedist2005_X64.msi"
Copy-Item $source -Destination $env:USERPROFILE\Downloads -Verbose

这在两台计算机上均不起作用

Copy-Item "\\192.168.0.000\Common Data\Software\Crystal Reports\CRRedist2005_X64.msi" -Destination $env:USERPROFILE\Downloads -Verbose

我尝试使用New-PSDrive方法

    New-PSDrive -Name S -Root "\\192.168.0.000\Common Data\" -PSProvider FileSystem
Copy-Item "S:\Software\Crystal Reports\CRRedist2005_X64.msi" -Destination $env:USERPROFILE\Downloads -Verbose

The specified drive root "\\192.168.0.000\Common Data\" either does not exist, or it is not a folder.

FileSystem ::还提供了找不到的路径

Copy-Item "FileSystem::\\192.168.0.000\Common Data\Software\Crystal Reports\CRRedist2005_X64.msi" -Destination $env:USERPROFILE\Downloads -verbose

如果我将地址复制到文件资源管理器中,则不会有任何问题。

我要疯狂地弄清楚为什么它不起作用。

编辑:重新映射驱动器,它可以在第二台计算机上工作。

0 个答案:

没有答案