티스토리 뷰

1. 물리디스크의 상태 확인

Get-PhysicalDisk


2. 불량난 디스크의 변수선언

$missingDisk = Get-PhysicalDisk | Where-Object { $_.OperationalStatus -eq 'Lost Communication' }


3. 변수선언한 디스크의 해제

$missingDisk | Set-PhysicalDisk -Usage Retired


4. 물리디스크 다시 확인

Get-PhysicalDisk


5. retied된 디시크 pool에서 제거

Remove-PhysicalDisk –PhysicalDisks $missingDisk –StoragePoolFriendlyName pool


6. 불량난 디스크 교체(슬롯에서 물리적 제거 및 재장착)

$replacementDisk = Get-PhysicalDisk –FriendlyName PhysicalDisk1


7. 재장착한 디스크 storage pool에 추가

Add-PhysicalDisk –PhysicalDisks $replacementDisk –StoragePoolFriendlyName pool 


8. 볼륨 수리

Repair-VirtualDisk –FriendlyName <VolumeName>


9. 스토리지 잡 상태 확인

Get-StorageJob



댓글