This is my cluster checklist script to verify many different components like Windows Updates, Hotfixes, 3Par installation, Driver information etc. 1 2 3 4 5 6 7 8 9 10 # Lets get our master Cluster Node, thats one of the most updated Cluster Node $MasterNode = ((Get-Cluster | Get-ClusterNode | Select Name,@{label="HotFixes";expression={(Get-Hotfix -ComputerName $_.Name).HotFixID.Count}} […]
↧