Try something like this
$hd=$disk.GetEnumerator() |where {$_.Value.Label-eq"Hard disk 10"} |Select-ExpandPropertyValue
Via $hd you can now access the properties.
$hd.Label / $hd.CapGB / ...
Try something like this
$hd=$disk.GetEnumerator() |where {$_.Value.Label-eq"Hard disk 10"} |Select-ExpandPropertyValue
Via $hd you can now access the properties.
$hd.Label / $hd.CapGB / ...