An account will enable you to access:
Don't have an account?
Microsoft Virtualization Discussions
how do I get a count of disks based on module connection?
something like this:
(Get-NaDisk 0a.*).Count | ? {$_.port -eq "A"} | fl
cheers
Solved! See The Solution
got it:
$a = (Get-NaDisk 0a.*).Count | ? {$_.port -eq "A"}
$a.count
View solution in original post