In this article, we will discuss the process of formatting a storage space volume using the ReFS (Resilient File System) filesystem on Windows Server 2025. This guide is designed to help you troubleshoot any potential issues you may encounter while formatting a volume larger than 8TB or 12TB, which are typically used with 2.5-inch SATA WD hard disks, connected to a Windows Server 2025 VM via a Host Bus Adapter (HBA).
Prerequisites
Before we begin, ensure the following prerequisites are met:
- A Windows Server 2025 VM with the necessary hardware and storage configuration.
- Access to the VM and its storage devices.
- Adequate knowledge of Windows Server 2025 and its storage management tools.
Formatting a Storage Space Volume with ReFS
To format a storage space volume with the ReFS filesystem, follow these steps:
Step 1: Create a Storage Pool
First, create a storage pool using the available physical disks. Here's how:
# Create a new storage pool
PoolCreate Pool1 -MinimumSize 10GB -PhysicalDisk 0,1,2,3
Step 2: Create a Virtual Disk
Next, create a virtual disk from the storage pool. Replace 'Size' with the desired size:
# Create a new virtual disk
New-VirtualDisk -Size 8TB -PoolName Pool1 -FilePath D:\Pool1\Disk1.vhdx
Step 3: Create a Storage Space
Create a storage space using the virtual disk:
# Create a new storage space
New-StorageSpace -Name StorageSpace1 -Size 8TB -FriendlyName "Storage Space 1" -VirtualDiskPath D:\Pool1\Disk1.vhdx
Step 4: Format the Storage Space with ReFS
Finally, format the storage space with the ReFS filesystem:
# Format the storage space
New-Volume -Size 8TB -StoragePoolFriendlyName "Pool1" -FileSystem ReFS -DriveLetter Z:
Troubleshooting Common Issues
While formatting a large volume with ReFS, you might encounter some common issues. Here's how to troubleshoot them:
Issue 1: ReFS not Supported
Ensure that your Windows Server 2025 VM and the connected storage devices support the ReFS filesystem. ReFS is natively supported on Windows Server 2019 and later versions.
Issue 2: Insufficient Disk Space
Ensure that there is enough free space on the virtual disk to create a storage space and format it with ReFS.
Issue 3: Disk Geometry Mismatch
If you encounter a 'Disk geometry mismatch' error, try the following:
- Delete the virtual disk and recreate it.
- Convert the physical disks to GPT partition style (if they're MBR).
Summary and References
In this article, we discussed the process of formatting a storage space volume with the ReFS filesystem on Windows Server 2025, focusing on troubleshooting common issues when working with large volumes (8TB and 12TB) connected via HBA to a Windows Server 2025 VM. For more information on ReFS, refer to the following resources: