Checking CPU Affinity
I needed to double check the CPU Affinity settings I had set on some VM’s which I wanted tied to the cores in my host, just to double check I had these correct the following one liner works a treat….
Get-Cluster “My Cluster” | Get-VM | Get-View | foreach {Write-output $_.Name $_.Config.CpuAffinity.AffinitySet}
Is MSCS Supported on a HA/DRS Cluster ? Unable to format a LUN











thanks, this is exactly what i was looking for.