Estoy intentando acceder a un recurso compartido de red en PowerShell 5.1 con permisos elevados ejecutando el siguiente comando:
gi "\\192.168.1.1\data"
Recibo el siguiente error:
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
El mismo comando se puede ejecutar sin problemas cuando uso PowerShell sin permisos elevados.
¿Algun consejo?