使用 PowerShell Get-Disk 时不显示磁盘 0

使用 PowerShell Get-Disk 时不显示磁盘 0

在我正在使用的一台机器上,PowerShell cmdletGet-Disk不显示Disk 0。但使用其他命令它会...

Get-Disk | Select Number, FriendlyName, HealthStatus, Size

Number FriendlyName    HealthStatus        Size
------ ------------    ------------        ----
     1 Kingston DT2000 Healthy      15502147584
C:\> Get-Disk -Number 0

Get-Disk : No MSFT_Disk objects found with property 'Number' equal to '0'. 
Verify the value of the property and retry.
At line:1 char:1
+ Get-Disk -Number 0
+ ~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (0:UInt32) [Get-Disk], CimJobException
    + FullyQualifiedErrorId : CmdletizationQuery_NotFound_Number,Get-Disk
Get-PhysicalDisk | Select DeviceId, FriendlyName, HealthStatus, Size

DeviceId FriendlyName                     HealthStatus          Size
-------- ------------                     ------------          ----
1        Kingston DT2000                  Healthy        15502147584
0        KXG50ZNV1T02 NVMe TOSHIBA 1024GB Healthy      1024209543168
'list disk' | DiskPart

Microsoft DiskPart version 10.0.17763.1911

Copyright (C) Microsoft Corporation.
On computer: WIN-6S1H8T9U9AT

DISKPART>
  Disk ###  Status         Size     Free     Dyn  Gpt
  --------  -------------  -------  -------  ---  ---
  Disk 0    Online          953 GB  1024 KB   *    *
  Disk 1    Online           14 GB  2048 KB
Get-Volume | Select DriveLetter, FileSystemLabel, HealthStatus, Size

DriveLetter FileSystemLabel HealthStatus          Size
----------- --------------- ------------          ----
                            Healthy          100663296
C                           Healthy      1023562215424
            Recovery        Healthy          523235328
D           KINGSTON        Healthy        15498014720

Get-Partition也正在表演……

Get-Partition


   DiskPath: \\?\usbstor#disk&ven_kingston&prod_dt2000&rev_...

PartitionNumber  DriveLetter Offset                                     Size Type
---------------  ----------- ------                                     ---- ----
1                D           4128768                                14.43 GB IFS

知道为什么Get-Disk以及Get-Partition缺少了什么Disk 0吗?

编辑 1:添加了 DiskPart 输出。编辑 2:强制获取磁盘 0
时添加了错误消息。Get-Disk

答案1

这很可能是因为磁盘 0 是动态磁盘。

Get-Diskcmdlet 仅显示基本磁盘和不是动态磁盘。引用自Get-Disk 的关于页面

此 cmdlet 返回物理磁盘对象,如基本磁盘和分区驱动器分区。动态磁盘可以跨越多个物理介质,因此 Get-Disk 不会返回它们。

您可以通过在 PowerShell 中运行以下语句来查找动态磁盘:

Get-CimInstance Win32_DiskPartition -Filter "Type='Logical Disk Manager'"

输出中存在 LDM(逻辑磁盘管理器)信息表明它是一个动态磁盘。

相关内容