PowerShell for Failover Clustering in Windows Server 2008 R2
The team is looking for feedback on their current set of 68 cmdlets. They are using the new Module feature of PowerShell version 2.
To get a complete list of the cmdlets, run the following command: Get-Command -Module FailoverClusters
Example of creating a highly available File Server
$Node1 = "symonp-n1"
$Node2 = "symonp-n2"
$FileServerGroupName = "symonp-fsBlog"
$FileServerDiskResourceName = "Cluster Disk 1"
# Create a highly available file server
Add-ClusterFileServerRole `
-Storage $FileServerDiskResourceName `
-Name $FileServerGroupName
List of Verbs and Nouns
| Verbs | Nouns |
|
|




