 
- 帖子
- 2874
- 积分
- 7021
- 技术
- 336
- 捐助
- 0
- 注册时间
- 2011-6-2
|
[转载代码] [PowerShell每日技巧]列出“真正的”硬盘分区(20131125)
WMI can provide lots of information about a system, but sometimes it is just a bit too much. So when you query for logical disks, you often get back many more than just the physical ones.
Setting an additional filter will do. This line returns only physical drives by making sure that only instances with a DriveType=3 are returned:
PS C:\> Get-WmiObject -Class Win32_LogicalDisk -Filter 'DriveType=3'
DeviceID : C:
DriveType : 3
ProviderName :
FreeSpace : 60000000000
Size : 100000000000
VolumeName :
DeviceID : D:
DriveType : 3
...
|
Since Get-WmiObject has a parameter -ComputerName, you can get this information remotely as well. And if you'd like to know what other drive types are there, simply remove the filter or visit a preferred search engine and search for "Win32_LogicalDisk DriveType".
http://powershell.com/cs/blogs/tips/archive/2013/11/25/listing-quot-real-quot-hard-drives.aspx |
|