- Thread Author
- #1
Hello,
after adding disks to a clustered ThinkAgile node, we have the disks in a "lost communication" state. We tried several solutions without success
below are the steps we tried
First, create an array of the disks that are failing or failed.
$disk = get-physicaldisk | where-object operationalstatus -like *lost*
$disk
Next, remove the disks.
$disk | set-physicaldisk -Usage Retired
Get-PhysicalDisk
Next, remove the disks from the Storage Pool.
Get-Storagepool s2d* | Remove-PhysicalDisk -physicaldisk $disk
Get-PhysicalDisk
get-physicaldisk | where-object operationalstatus -like *unrec* | reset-physicaldisk
Get-PhysicalDisk
after adding disks to a clustered ThinkAgile node, we have the disks in a "lost communication" state. We tried several solutions without success
below are the steps we tried
First, create an array of the disks that are failing or failed.
$disk = get-physicaldisk | where-object operationalstatus -like *lost*
$disk
Next, remove the disks.
$disk | set-physicaldisk -Usage Retired
Get-PhysicalDisk
Next, remove the disks from the Storage Pool.
Get-Storagepool s2d* | Remove-PhysicalDisk -physicaldisk $disk
Get-PhysicalDisk
get-physicaldisk | where-object operationalstatus -like *unrec* | reset-physicaldisk
Get-PhysicalDisk