Need to know how to describe something to confirm the physical ESX servers have 2 good trails in the SAN

Hello

I wanted to know "how to do something to confirm the physical ESX servers have 2 good trails in the SAN script" via power Cli script.

Kindly help me for the script

Thank you

KR

Try the following lines

Get-VMHost | Get-ScsiLun |
    Select @{N="Hostname";E={$_.VMHost.Name}},
    CanonicalName,
    @{N="Active Paths";E={($_ | Get-ScsiLunPath | where {$_.State -ne "dead"}).Count}}

It will show the number of deaths per LUN non-chemins

Tags: VMware

Similar Questions

Maybe you are looking for