VMware vSphere Cluster ortamındaki Node’lar da detach edilmiş LUN’ları bulmak için kullanacağınız PowerCLI komut dosyası aşağıdaki gibidir.
$clusters = Get-Cluster | Sort-Object -Property Name
foreach ($cluster in $clusters) {
Write-Host $cluster
$esxi_hosts = $cluster | get-Vmhost -State Connected,Maintenance | Sort-Object -Property Name
foreach ($esxi_host in $esxi_hosts) {
Write-Host $esxi_host
($esxi_host | Get-ScsiLun | where {$_.ExtensionData.OperationalState -eq "off"}).CanonicalName
}
}