Storage Pool: Change a Physical Disk

Windows Server 2019

In this article, we will see how to change a failed physical disk.

When a disk is in error, an icon appears at the pool and virtual disks.

Change the disk

Open a command prompt and enter the command below to view the physical disks and identify the disk in error.

Get-PhysicalDisk

Enter the command below to mark the disc as “removed”.

Set-PhysicalDisk -FriendlyName "DISK-NAME" -Usage Retired

Add a new physical disk to the server and add it to the storage pool.

Start repairing virtual disks:

Repair-VirtualDisk -FiendlyName "VDISK-NAME"

Remove the disc from the failed drive:

$DiskRemove = Get-PhysicalDisk -FriendlyName "DISK-NAME"
Remove-PhysicalDisk -PhysicalDisks $DiskRemove -StorePoolFriendlyName "POOL-NAME"

Confirm the action and wait while the command is executed.

Refresh the storage pools and validate that the pool and virtual disks are no longer in error.

Romain Drouche
System Architect | MCSE: Core Infrastructure
IT infrastructure expert with over 15 years of field experience. Currently a Systems and Networks Project Manager and Information Systems Security (ISS) expert, I use my expertise to ensure the reliability and security of technological environments.

Leave a Comment