無法從 Win 10 儲存空間刪除原始儲存池

無法從 Win 10 儲存空間刪除原始儲存池

我的 Windows 10 Pro 附帶一個儲存池(4 個磁碟中的 2 路鏡像),當我執行get-storagepool命令時,我看到還有另一個奇怪的儲存池Primordial,但不是我創建的。

FriendlyName  OperationalStatus HealthStatus IsPrimordial IsReadOnly    Size AllocatedSize
------------  ----------------- ------------ ------------ ----------    ---- -------------
Primordial    OK                Healthy      True         False      4.76 TB        3.6 TB
Storage pool1 OK                Healthy      False        False       3.6 TB       1.86 TB

當我嘗試刪除此池時,我收到錯誤和 0 google 結果。

Remove-StoragePool -FriendlyName Primordial
WARNING: An operation was attempted on the primordial storage pool
which was not supported. This operation might have succeeded for other
objects in the pipeline.
Remove-StoragePool : This operation is not supported on primordial storage pools.
Activity ID: {d02ca163-e71d-4d67-9a69-705b736f5c69}
At line:1 char:1
 1. Remove-StoragePool -FriendlyName Primordial
 2. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (StorageWMI:ROOT/Microsoft/...SFT_StoragePool) [Remove-StoragePool], C
   imException
    + FullyQualifiedErrorId : StorageWMI 48000,Remove-StoragePool
  1. 「不支援」是什麼意思
  2. 如何刪除這個儲存池呢?

答案1

Primordial 是任何未配置磁碟的預設儲存池。在您建立磁碟區、將它們新增至池中或將它們格式化為獨立磁碟機之前,這就像磁碟的pergatory。

每個儲存子系統都有一個原始子系統。

我認為你可以透過執行「set-disk -canpool:False」之類的操作來有效地使池至少變空。國際研究委員會

相關內容