PowerShell 技能连载 - 列出网络驱动器
有很多方法可以列出映射的网络驱动器。其中之一使用 PowerShell 的 Get-PSDrive
并检查目标根目录是否以 “\“ 开头,表示 UNC 网络路径:
1 | PS> Get-PSDrive -PSProvider FileSystem | Where-Object DisplayRoot -like '\\*' |
一个不错的方面是 Get-PSDrive
返回有用的附加详细信息,例如驱动器的大小。
PowerShell 技能连载 - 列出网络驱动器
http://blog.vichamp.com/2021/08/11/listing-network-drives-2/