Transfer from HDD to HDD is taking a long time.
Transfer from HDD to HDD is taking a long time.
I tried to set up storage using four disks, but when I opened the storage option it didn’t show any choices. In the Disk Manager I couldn’t locate a virtual disk option and saw an error saying I can’t create a new virtual disk with 3 columns and a 256k interleave size. I’m not sure where to go or how to fix this. Thanks for your help!
To create the virtual disk using PowerShell, follow the command structure you described. Ensure you retrieve the storagepoolfriendlyname first by running get-storagepool. Once obtained, use New-VirtualDisk with the appropriate parameters such as friendly name, maximum size, interleave size, and columns. Format the disk via NTFS afterward and set the cluster size to 512KB.
Success @Electronics Wizardy I followed the command you suggested and corrected the spelling from the Windows online guide. Here’s what I ended up using: New-VirtualDisk -StoragePoolFriendlyName "Pool1" -Interleave 256KB -FriendlyName "Disk1" -UseMaximumSize -ResiliencySettingName Parity -NumberOfColumns 3 PowerShell Result: FriendlyName ResiliencySettingName FaultDomainRedundancy OperationalStatus HealthStatus Size FootprintOnPool StorageEfficiency
I observed that storage space parity affects performance, showing disk mark results slower than actual file movement. It’s unclear why this happens, and I attempted some adjustments recently. Using three drives seems preferable since the raid stripe size matches the NTFS cluster size, allowing full writes without needing to recompute parity data.
It looks like CristalDisk behaves in both directions, suggesting there might be improved settings for more accurate measurements. I ran a quick sanity check and found that 3 strikes a good balance between speed and space usage. Thanks again for your feedback!
I received quite an issue today. My SSD on my PC failed and isn't showing up in any computer, even when I installed it externally. I switched to another SSD to install Windows, but now I can't see the pool drive. It appears in Disk Manager, so I'm planning to back it up elsewhere—though I'll need to order a new disk. This is really frustrating. What should I do to restore it as visible in Windows? I'm a bit nervous about making mistakes... What steps would you recommend? Thanks for your help.