Board logo

标题: [转载代码] [PowerShell每日技巧]列出“真正的”硬盘分区(20131125) [打印本页]

作者: DAIC    时间: 2013-11-25 19:47     标题: [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
作者: 林小七    时间: 2013-11-25 21:25

ps?明明是wmi
作者: PowerShell    时间: 2013-11-26 09:47

你不能否认,从古至今,微软脚本经历了bat,vbs,wmi,jscript等。
直到powershell,我认为才有了【兼收并蓄,包罗万有,被powershell一统江湖】的感觉!

那么说 ::::
powershell哪里强呢?大家凭啥被你【powershell一统江湖】呢?
且听我慢慢道来:
--------------------------------------------------------------------------------------

不外呼继承发扬,如果换成另外一种说法,不外乎四处调用,或者说相互嵌入。还有封装。
1楼这只是调用wmi的例子。还可以调用bat,嵌入vbs,嵌入c#。
c#嵌入powershell之后,从使用的角度,就变成了解释的语言,就变成了powershell的库。wmi也是如此。
把1楼的代码作成库,那就成了powershell的库。你就可以不关心powershell到底怎么实现的,powershell到底调用了谁,完成的此功能。
由于powershell【生长】在。net平台上,。net平台相互调用做的太好了,所以powershell调用。net平台上的iron python 之类也完全可以。还有更多我就不多说了。
一个好的脚本语言,四处都应有接口,应该能八方调用。不论谁做到了,都算好脚本语言,都算一统江湖 ~~~~~~~~




说道封装  Get-Disk  -----此命令需要管理员权限。
Get-PhysicalDisk 这两个命令也提供了楼主那条命令的类似功能。




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2