Win 10 저장소 공간에서 원시 저장소 풀을 삭제할 수 없습니다.

Win 10 저장소 공간에서 원시 저장소 풀을 삭제할 수 없습니다.

Windows 10 Pro에 하나의 저장소 풀(4개 디스크 중 양방향 미러)이 있고 명령을 실행하면 내가 만들지 않은 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

이 풀을 삭제하려고 하면 오류가 발생하고 Google 검색결과가 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. "지원되지 않음"이란 무엇을 의미합니까?
  2. 이 스토리지 풀을 삭제하는 방법은 무엇입니까?

답변1

Primordial은 프로비저닝되지 않은 디스크의 기본 스토리지 풀입니다. 디스크에서 풀을 생성하거나, 풀에 추가하거나, 독립 실행형 드라이브로 포맷하기 전에는 디스크를 영구화하는 것과 같습니다.

스토리지 하위 시스템당 하나의 원시가 있습니다.

"set-disk -canpool:False"와 같은 작업을 수행하면 최소한 풀을 비우는 데 효과적으로 만들 수 있다고 생각합니다. IIRC

관련 정보