我有一个带有一个存储池(4 个磁盘中的 2 路镜像)的 Windows 10 Pro,当我运行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。
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
Primordial 是任何未配置磁盘的默认存储池。在用磁盘创建池、将它们添加到池或将它们格式化为独立驱动器之前,它就像是对您的磁盘的审判。
每个存储子系统有一个原始。
我认为你可以通过执行类似“set-disk -canpool:False”的操作来有效地使池至少变空。如果我没记错的话