PS C:\> Get-WmiObject Win32_LogicalDisk DeviceID : C: DriveType : 3 ProviderName : FreeSpace : 10559041536 Size : 78452355072 VolumeName : Sea Drive DeviceID : D: DriveType : 5 ProviderName : FreeSpace : Size : VolumeName : DeviceID : E: DriveType : 5 ProviderName : FreeSpace : Size : VolumeName : PS C:\> Get-WmiObject Win32_LogicalDisk | Format-List * Status : Availability : DeviceID : C: StatusInfo : __GENUS : 2 __CLASS : Win32_LogicalDisk __SUPERCLASS : CIM_LogicalDisk __DYNASTY : CIM_ManagedSystemElement __RELPATH : Win32_LogicalDisk.DeviceID="C:" __PROPERTY_COUNT : 40 __DERIVATION : {CIM_LogicalDisk, CIM_StorageExtent, CIM_LogicalDevice, CIM_LogicalElement...} __SERVER : M5-1875135 __NAMESPACE : root\cimv2 __PATH : \\M5-1875135\root\cimv2:Win32_LogicalDisk.DeviceID="C:" Access : 0 BlockSize : Caption : C: Compressed : False ConfigManagerErrorCode : ConfigManagerUserConfig : CreationClassName : Win32_LogicalDisk Description : Local Fixed Disk DriveType : 3 ErrorCleared : ErrorDescription : ErrorMethodology : FileSystem : NTFS FreeSpace : 10559041536 InstallDate : LastErrorCode : MaximumComponentLength : 255 MediaType : 12 Name : C: NumberOfBlocks : PNPDeviceID : PowerManagementCapabilities : PowerManagementSupported : ProviderName : Purpose : QuotasDisabled : QuotasIncomplete : QuotasRebuilding : Size : 78452355072 SupportsDiskQuotas : False SupportsFileBasedCompression : True SystemCreationClassName : Win32_ComputerSystem SystemName : M5-1875135 VolumeDirty : VolumeName : Sea Drive VolumeSerialNumber : F0FE15F7 Status : Availability : DeviceID : D: StatusInfo : __GENUS : 2 __CLASS : Win32_LogicalDisk __SUPERCLASS : CIM_LogicalDisk __DYNASTY : CIM_ManagedSystemElement __RELPATH : Win32_LogicalDisk.DeviceID="D:" __PROPERTY_COUNT : 40 __DERIVATION : {CIM_LogicalDisk, CIM_StorageExtent, CIM_LogicalDevice, CIM_LogicalElement...} __SERVER : M5-1875135 __NAMESPACE : root\cimv2 __PATH : \\M5-1875135\root\cimv2:Win32_LogicalDisk.DeviceID="D:" Access : BlockSize : Caption : D: Compressed : ConfigManagerErrorCode : ConfigManagerUserConfig : CreationClassName : Win32_LogicalDisk Description : CD-ROM Disc DriveType : 5 ErrorCleared : ErrorDescription : ErrorMethodology : FileSystem : FreeSpace : InstallDate : LastErrorCode : MaximumComponentLength : MediaType : 11 Name : D: NumberOfBlocks : PNPDeviceID : PowerManagementCapabilities : PowerManagementSupported : ProviderName : Purpose : QuotasDisabled : QuotasIncomplete : QuotasRebuilding : Size : SupportsDiskQuotas : SupportsFileBasedCompression : SystemCreationClassName : Win32_ComputerSystem SystemName : M5-1875135 VolumeDirty : VolumeName : VolumeSerialNumber : Status : Availability : DeviceID : E: StatusInfo : __GENUS : 2 __CLASS : Win32_LogicalDisk __SUPERCLASS : CIM_LogicalDisk __DYNASTY : CIM_ManagedSystemElement __RELPATH : Win32_LogicalDisk.DeviceID="E:" __PROPERTY_COUNT : 40 __DERIVATION : {CIM_LogicalDisk, CIM_StorageExtent, CIM_LogicalDevice, CIM_LogicalElement...} __SERVER : M5-1875135 __NAMESPACE : root\cimv2 __PATH : \\M5-1875135\root\cimv2:Win32_LogicalDisk.DeviceID="E:" Access : BlockSize : Caption : E: Compressed : ConfigManagerErrorCode : ConfigManagerUserConfig : CreationClassName : Win32_LogicalDisk Description : CD-ROM Disc DriveType : 5 ErrorCleared : ErrorDescription : ErrorMethodology : FileSystem : FreeSpace : InstallDate : LastErrorCode : MaximumComponentLength : MediaType : 11 Name : E: NumberOfBlocks : PNPDeviceID : PowerManagementCapabilities : PowerManagementSupported : ProviderName : Purpose : QuotasDisabled : QuotasIncomplete : QuotasRebuilding : Size : SupportsDiskQuotas : SupportsFileBasedCompression : SystemCreationClassName : Win32_ComputerSystem SystemName : M5-1875135 VolumeDirty : VolumeName : VolumeSerialNumber : PS C:\> Get-WmiObject Win32_LogicalDisk | Format-List Name, FileSystem, FreeSpace Name : C: FileSystem : NTFS FreeSpace : 10559029248 Name : D: FileSystem : FreeSpace : Name : E: FileSystem : FreeSpace : PS C:\> Get-WmiObject Win32_LogicalDisk | Format-List [n]* Name : C: NumberOfBlocks : Name : D: NumberOfBlocks : Name : E: NumberOfBlocks : PS C:\> Get-WmiObject Win32_LogicalDisk | Format-List [f]* FileSystem : NTFS FreeSpace : 10558660608 FileSystem : FreeSpace : FileSystem : FreeSpace : PS C:\> Get-WmiObject Win32_LogicalDisk | Format-List [n]*, [f]* Name : C: NumberOfBlocks : FileSystem : NTFS FreeSpace : 10558660608 Name : D: NumberOfBlocks : FileSystem : FreeSpace : Name : E: NumberOfBlocks : FileSystem : FreeSpace : PS C:\> Get-WmiObject Win32_LogicalDisk | Format-List [na]*, [f]* Access : 0 Availability : Name : C: NumberOfBlocks : FileSystem : NTFS FreeSpace : 10558660608 Access : Availability : Name : D: NumberOfBlocks : FileSystem : FreeSpace : Access : Availability : Name : E: NumberOfBlocks : FileSystem : FreeSpace : PS C:\> Get-WmiObject Win32_LogicalDisk | Format-List [nf]* FileSystem : NTFS FreeSpace : 10558660608 Name : C: NumberOfBlocks : FileSystem : FreeSpace : Name : D: NumberOfBlocks : FileSystem : FreeSpace : Name : E: NumberOfBlocks : PS C:\> Get-WmiObject Win32_LogicalDisk | Format-List f* FileSystem : NTFS FreeSpace : 10558660608 FileSystem : FreeSpace : FileSystem : FreeSpace : PS C:\> Get-WmiObject Win32_LogicalDisk | Format-List nf* PS C:\> Get-WmiObject Win32_LogicalDisk | Format-List [nf]* FileSystem : NTFS FreeSpace : 10558660608 Name : C: NumberOfBlocks : FileSystem : FreeSpace : Name : D: NumberOfBlocks : FileSystem : FreeSpace : Name : E: NumberOfBlocks :