PowerShell 技能连载 - 列出网络驱动器

有很多方法可以列出映射的网络驱动器。其中之一使用 PowerShell 的 Get-PSDrive 并检查目标根目录是否以 “\“ 开头,表示 UNC 网络路径:

1
2
3
4
5
PS> Get-PSDrive -PSProvider FileSystem | Where-Object DisplayRoot -like '\\*'

Name Used (GB) Free (GB) Provider Root CurrentLocation
---- --------- --------- -------- ---- ---------------
Z 11076,55 0,00 FileSystem \\192.168.2.107\docs

一个不错的方面是 Get-PSDrive 返回有用的附加详细信息,例如驱动器的大小。

PowerShell 技能连载 - 列出网络驱动器

http://blog.vichamp.com/2021/08/11/listing-network-drives-2/

作者

吴波

发布于

2021-08-11

更新于

2022-07-06

许可协议

评论