PowerShell 技能连载 - 查找所有活动的驱动器号
要快速地获取所有驱动器号,请使用以下代码:
#requires -Version 1
[Environment]::GetLogicalDrives()
执行结果是所有活动的驱动器号:
PS>
C:\
D:\
E:\
F:\
G:\
PowerShell 技能连载 - 查找所有活动的驱动器号
http://blog.vichamp.com/2015/04/08/find-all-active-drive-letters/