使用 Powershell 转到网络共享文件夹

使用 Powershell 转到网络共享文件夹

我正在尝试以提升的权限访问 PowerShell 5.1 中的网络共享并执行以下命令:

gi "\\192.168.1.1\data"

我收到以下错误:

gi : Cannot find path '\\192.168.1.1\data' because it does not exist.
At line:1 char:1
+ gi "\\192.168.1.1\data"
+ ~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (\\192.168.1.1\data:String) [Get-Item], ItemNotFoundException
    + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetItemCommand

当我使用没有提升权限的 PowerShell 时,可以毫无问题地执行相同的命令。

有小费吗?

相关内容