Estou tentando acessar um compartilhamento de rede no PowerShell 5.1 com permissões elevadas executando o seguinte comando:
gi "\\192.168.1.1\data"
Estou recebendo o seguinte erro:
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
O mesmo comando pode ser executado sem problemas quando uso o PowerShell sem permissões elevadas.
Alguma dica?