[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[转载代码] [PowerShell每日技巧]查看磁盘分区的详细信息(20131216)

To view disk partitioning information, use WMI:
  1. Get-WmiObject -Class Win32_DiskPartition |
  2.   Select-Object -Property *
复制代码
Next, pick the properties you are really interested in, then replace the "*" with a comma-separated list of these properties. For example:
  1. Get-WmiObject -Class Win32_DiskPartition |
  2.   Select-Object -Property Name, BlockSize, Description, BootPartition
复制代码
If you pick four or less properties, the result is a neat table, otherwise a list:

Name                                    BlockSize Description                         BootPartition
----                                    --------- -----------                         -------------
Disk #0, Partition #0                         512 Installable File System                     False
Disk #0, Partition #1                         512 Installable File System                     False
Disk #0, Partition #2                         512 Installable File System                      True


If you are hungry for more, use the parameter -List to search for other WMI classes, either related to "disk", or just something completely different:

PS> Get-Wmiobject -Class Win32_*Processor* -List


   NameSpace: ROOT\cimv2

Name                                Methods              Properties
----                                -------              ----------
Win32_Processor                     {SetPowerState, R... {AddressWidth, Architecture, Availabili...
Win32_ComputerSystemProcessor       {}                   {GroupComponent, PartComponent}
Win32_AssociatedProcessorMemory     {}                   {Antecedent, BusSpeed, Dependent}
Win32_PerfFormattedData_Counters... {}                   {BuildScatterGatherCyclesPersec, Captio...
Win32_PerfRawData_Counters_PerPr... {}                   {BuildScatterGatherCyclesPersec, Captio...
Win32_PerfFormattedData_Counters... {}                   {BuildScatterGatherListCallsPersec, Cap...
Win32_PerfRawData_Counters_PerPr... {}                   {BuildScatterGatherListCallsPersec, Cap...
Win32_PerfFormattedData_Counters... {}                   {C1TransitionsPersec, C2TransitionsPers...
Win32_PerfRawData_Counters_Proce... {}                   {C1TransitionsPersec, C2TransitionsPers...
Win32_PerfFormattedData_PerfOS_P... {}                   {C1TransitionsPersec, C2TransitionsPers...
Win32_PerfRawData_PerfOS_Processor  {}                   {C1TransitionsPersec, C2TransitionsPers...


http://powershell.com/cs/blogs/tips/archive/2013/12/16/finding-disk-partition-details.aspx

返回列表