Storage Spaces: The physical disk's sector size is not supported by the storage pool. (0x80E70004)
Sometimes when trying to create a storage space, you may receive the following error:
This error means that the drive needs to be reset before being added to a storage pool.
To resolve the issue:
First run Powershell as Administrator:
Then run the following command to list all drives:
- Get-PhysicalDisk | select UniqueId,FriendlyName,SerialNumber,Size,CanPool
Then use the output of that command to identify the problematic drive(s). The drives needing to be reset WILL NOT be the C:\ drive of your PC and WILL have CanPool set to False.
Notate the UniqueId of the specified drive.
Last, we need to reset the drive.
WARNING: This will erase all data on the specified drive. Make extra sure you have selected the correct one.
Now run the following command
- Reset-PhysicalDisk -UniqueId "ReplaceThisWithTheUniqueIdOfTheDriveYouNeedToReset"
Once this is complete, you may continue with creating the storage space.
Related Articles
Creating a Storage Space
Preparing an Ultra-Fast Storage Space Now we need to create a Storage Space. A Storage Space is a lot like a RAID. We are going to merge two of our SSDs into one big one. First click on Start and type Computer Management. Click Open Click Disk ...
Adding a New Virtual Disk to a VM
In this article we will guide you through adding a new virtual disk to a VM. In your Host computer, go to your VMs folder. Create a folder with the name of the VM you want to add the virtual disk to. (In this example, the VM I will add the disk to is ...
How to connect a physical USB Drive into a Hyper-V VM
In this article we will connect a physical USB drive to a VM. To begin, plug the physical USB drive into your computer. On the computer that has the attached drive, go to This PC and identify the USB drive you want to attach to the VM To identify a ...
Detaching a VHD
Open Computer Management Search for Computer Management in the Start Menu Go to Disk Management In the left panel, expand Storage and click on Disk Management Locate the Mounted VHD Drive Identify the virtual drive by its letter (e.g., F:) Note the ...
How to Move a Virtual Hard Drive
This article will walk you through the process of moving a virtual hard drive (VHD or VHDX) from one location to another. Whether you need to free up space on your host machine or relocate a VM to a different storage drive, these steps will guide you ...