次のコマンドを実行して、昇格された権限で 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 を使用すると、同じコマンドを問題なく実行できます。
任意のヒント?