This should get you all the VMFS LUNs.
Get-Datastore|where {$_.Type-eq"VMFS"} |%{
$_.ExtensionData.Info.Vmfs.Extent|%{
$_.DiskName
}
}
This should get you all the VMFS LUNs.
Get-Datastore|where {$_.Type-eq"VMFS"} |%{
$_.ExtensionData.Info.Vmfs.Extent|%{
$_.DiskName
}
}