我想使用以下命令获取NAS驱动器的详细信息,例如所有者,访问权,路径等,但是,它没有给出我期望得到的信息:
Get-PSDrive -PSProvider FileSystem | %{$_.Root }
A:\
C:\
D:\
Y:\
Z:\
When I run only first part of the command like below..
Get-PSDrive -PSProvider FileSystem
Name Used (GB) Free (GB) Provider Root CurrentLocation
---- --------- --------- -------- ---- ---------------
A FileSystem A:\
C 26.82 23.18 FileSystem C:\ Users\sa-its-sd-na-vco2d-d
D .03 9.96 FileSystem D:\
Y 112.84 137.16 FileSystem \\exmaple.hac.com\opp$
Z FileSystem Z:\
我的意图是得到\\exmaple.hac.com\opp$
,但没有得到。知道如何获取吗?
答案 0 :(得分:0)
问题是,您正在使用Root
,但想要DisplayRoot
。
我认为您也可以使用select
:
Get-PSDrive -PSProvider FileSystem | Select DisplayRoot
将输出类似:
A:\
C:\
D:\
\\exmaple.hac.com\opp$
Z:\
这将仅选择“根”列。如果您想要更多,例如Name和DisplayRoot:
Get-PSDrive -PSProvider FileSystem | Select Name,Root