Difference between revisions of "Windows partitions"
From OpenZFS on OS X
(Created page with " Powershell Get-Partition | ForEach-Object { [PSCustomObject]@{ Path = "\\?\Harddisk$($_.DiskNumber)Partition$($_.PartitionNumber)" Size = "...") |
(No difference)
|
Latest revision as of 02:47, 12 March 2025
Powershell
Get-Partition | ForEach-Object { [PSCustomObject]@{ Path = "\\?\Harddisk$($_.DiskNumber)Partition$($_.PartitionNumber)" Size = "$($_.Size) bytes" AccessPath = ($_.AccessPaths -join ", ") } } | Format-Table -AutoSize
Then use the syntax: zpool create BOOM HarddiskXPartitionY