Hi Paul,
Hope you're doing wwell.
The fact that the "FriendlyName", "SerialNumber", and "UniqueID" properties are the same for all three disks is unusual and can cause problems. Each disk should have a unique identifier. If the system cannot distinguish between the disks, it may not be able to pool them correctly.
If the disks have the same "SerialNumber" and "UniqueID", you may need to assign unique IDs manually. Here’s how you can do that:
- Open PowerShell as an administrator.
- Run the following command to get the list of physical disks and their current IDs:
Get-PhysicalDisk | Select-Object FriendlyName, SerialNumber, UniqueID
- Use the "Set-PhysicalDisk" cmdlet to assign a unique ID to each disk:
Set-PhysicalDisk -UniqueId "new-unique-id" -FriendlyName "disk-friendly-name"
Replace "new-unique-id" with a unique identifier for the disk and "disk-friendly-name" with the appropriate friendly name from your list.
- Try to create a storage pool using Storage Spaces manually to see if it bypasses the issue.
Best Regards,
Ian Xue
If the Answer is helpful, please click "Accept Answer" and upvote it.