Troubleshooting Missing Disk Storage Spaces: Replacing Larger Capacity Disks
This article aims to help users understand and resolve common issues that arise when replacing disks in a Storage Spaces pool, specifically when increasing the capacity by replacing 4TB disks with larger 12TB disks.
Background Information
Storage Spaces is a storage management feature built into Windows, which allows users to easily create, manage and monitor storage pools of physical disks, and create virtual disks called storage spaces from that pool.
When working with Storage Spaces, it is essential to be aware of potential compatibility issues when resizing a storage pool by replacing physical disks of lower capacity with higher capacity ones.
Initial Scenario
The user initially had a Storage Spaces pool with a simple layout consisting of 4 x 4TB disks.
After successfully replacing the first disk with a 12TB disk, they encountered two problems:
Resolving Missing Disk Issue
Firstly, if a disk is reported as missing in a Storage Spaces pool, it might still be physically present and recognized by the operating system. A misconfiguration in Storage Spaces could cause the issue.
To resolve the missing disk situation, run the following PowerShell commands:
# List all disks in the system
Get-Disk
# Search for the missing disk by its serial number, for example:
$Disk = Get-Disk -FriendlyName "XYZ1234567890ABC"
# Assuming the above code identifies the missing disk, add it back to the Storage Spaces pool:
Add-PhysicalDisk -PhysicalDisks $Disk -StoragePoolFriendlyName "StoragePoolName"
Replace "StoragePoolName" with the actual name of your Storage Spaces pool and "XYZ1234567890ABC" with the serial number of the missing disk.
Expanding Storage Pool with the New Disk
After resolving the missing disk issue, the new 12TB disk might still not be used to expand the storage pool. To resolve this issue, you can use the PowerShell command Optimize-Volume followed by the name of the affected volume:
Optimize-Volume -DriveLetter D -FileSystemReplace "D" with the drive letter of your Storage Spaces volume.
Preparing for Future Disk Replacements
For a successful disk replacement and storage pool expansion, follow the recommended steps below:
-
Maintain a compatible set of disks within a storage pool. Ideally, use the same disk models and sizes for all physical disks.
-
Resize the storage space (volume) and wait until the operation is completed before removing any disks.
-
Remove and replace only one disk at a time from the storage pool. It is imperative to complete one disk replacement before starting the next.
-
Re-add the new disk to the storage pool, then resize and Optimize-Volume after the entire replacement process for all the disks you wish to upgrade.
Summary and References
In this article, you learned about potential compatibility issues, consequences, and solutions that come with replacing and upgrading the disks in a Windows Storage Spaces pool.
Here are some helpful online resources to learn more about Storage Spaces and disk replacements: