Windows Server存储池更换硬盘

方法一 (Win2019可用)
更换一块新硬盘,在PowerShell中执行

Set-StoragePool -FriendlyName 存储池名 -RetireMissingPhysicalDisks Always

修复虚拟磁盘,删除坏盘

方法二 (可能不适用于Win2019)
在PowerShell中执行

Get-PhysicalDisk

$Disk = Get-PhysicalDisk -FriendlyName <物理盘名称>

Remove-PhysicalDisk -PhysicalDisks $Disk -StoragePoolFriendlyName <存储池名称>

Set-PhysicalDisk -FriendlyName <物理盘名称> -Usage Retired

Repair-VirtualDisk -FriendlyName <虚拟盘名称>

Remove-PhysicalDisk -PhysicalDisks $Disk -StoragePoolFriendlyName <存储池名称>

原物理盘继续使用
如果之前的物理盘没有故障,需要继续使用,但由于存储池信息丢失或其他原因导致的虚拟盘无法直接修复/使用的,先在存储池内重置此物理盘,然后执行命令

Set-PhysicalDisk -FriendlyName <物理盘名称> -Usage AutoSelect

接着再修复虚拟盘

来源:
https://www.chiphell.com/thread-1664710-1-1.html

https://davidpapkin.net/unable-to-remove-failed-disk-error-when-configuring-a-redundant-storage-space-in-windows-server-2012-r2/