You can get QLogic Driver Versions of HP Servers with following script: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 $Clusters = Get-Content C:\Clusters.txt foreach ($Cluster in $Clusters) { $Servers = (Get-Cluster $Cluster | Get-ClusterNode).Name foreach ($Server in $Servers) { try { […]
↧