Microsoft-Exchange-Powershell
Ref:
- Get specific information about a node
1
Get-ClusterNode -Name "Node1"
- Fileter nodes by status:
1
Get-ClusterNode | Where-Object {$_.State -eq "UP"}
- Check resources owned bu a specific node
1
Get-ClusterNode -Name "Node1" | Get-ClusterResource
- Starts the Cluster service on a node in a failover cluster
1
Start-ClusterNode -Name node3
This post is licensed under CC BY 4.0 by the author.