Windows

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

  • December 17, 2020

當我執行get-storagepool命令時,我有一個帶有一個儲存池的 Windows 10 Pro(4 個磁碟中的 2 個鏡像),我看到還有另一個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. 如何刪除這個儲存池?

Primordial 是任何未配置磁碟的預設儲存池。在您從磁碟中創建一個池、將它們添加到池中或將它們格式化為獨立驅動器之前,這就像對磁碟進行操作一樣。

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

我認為您可以通過執行“set-disk -canpool:False”之類的操作來有效地使池至少變空。IIRC

引用自:https://serverfault.com/questions/1046286