Skip to content

Instantly share code, notes, and snippets.

@istairbn
Created May 19, 2015 11:34
Show Gist options
  • Save istairbn/0c985a4b4b7bd24da253 to your computer and use it in GitHub Desktop.
Save istairbn/0c985a4b4b7bd24da253 to your computer and use it in GitHub Desktop.
Microsoft HPC Server 2012 - Set all Nodes that are Offline but functional to an Online State
Add-PsSnapin Microsoft.HPC
$NODE = Get-HpcNode -State Offline -HealthState OK -GroupName ComputeNodes -ErrorAction Stop
Set-HpcNodeState -Node $NODE -State Online -Confirm:$False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment