Skip to content

Instantly share code, notes, and snippets.

@istairbn
Created May 19, 2015 11:32
Show Gist options
  • Save istairbn/7ec67e8188fa2dbe9c15 to your computer and use it in GitHub Desktop.
Save istairbn/7ec67e8188fa2dbe9c15 to your computer and use it in GitHub Desktop.
Microsoft HPC Server 2012 - Set all your nodes in an Error state to Offline to avoid issues
Add-PsSnapin Microsoft.HPC
$NODE = Get-HpcNode -State Online -HealthState Error -GroupName ComputeNodes -ErrorAction Stop
Set-HpcNodeState -Node $NODE -State Offline -Force -Confirm:$False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment