New
#11
If you want to try it, use the following commands to create your own storage space:
Code:$PhysicalDisks = Get-StorageSubSystem -FriendlyName "Windows Storage*" | Get-PhysicalDisk -CanPool $True New-StoragePool -FriendlyName "QNAP StoragePool" -StorageSubsystemFriendlyName "Windows Storage*" -PhysicalDisks $PhysicalDisks Update-StoragePool -FriendlyName "QNAP StoragePool" -Confirm:$False $VirtualDiskSize=Get-VirtualDiskSupportedSize -StoragePoolFriendlyName "QNAP StoragePool" -ResiliencySettingName Simple New-VirtualDisk -StoragePoolFriendlyName "QNAP StoragePool" -FriendlyName "QNAP VirtualDisk" -Size $VirtualDiskSize.VirtualDiskSizeMax -ProvisioningType Thin -ResiliencySettingName "Simple" -NumberOfColumns 8 Initialize-Disk -VirtualDisk (Get-VirtualDisk -FriendlyName "QNAP VirtualDisk") -passthru | New-Partition -AssignDriveLetter -UseMaximumSize | Format-Volume -NewFileSystemLabel "QNAP Volume" -FileSystem NTFS -Confirm:$false -ClusterSize (32KB)
Hope parameters are correctly set for your needs:
-ResiliencySettingName Simple ... no redundancy used
-NumberOfColumns 8 ... optimized for speed, use 1 for JBOD-like speed
-ClusterSize (32KB) ... you can use 64KB if you plan to add more disks.
Last edited by muchomurka; 07 Jun 2020 at 16:13.