Post

Microsoft-Exchange-Powershell

img

img


Ref:


  1. Get specific information about a node
    1
    
    Get-ClusterNode -Name "Node1"
    
  2. Fileter nodes by status:
    1
    
    Get-ClusterNode | Where-Object {$_.State -eq "UP"}
    
  3. Check resources owned bu a specific node
    1
    
    Get-ClusterNode -Name "Node1" | Get-ClusterResource
    
  4. 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.