You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `Add-WorkgroupClusterNode` cmdlet adds a node to a workgroup cluster. This cmdlet allows you to expand an existing workgroup cluster by adding a new node, specifying the required credentials and authentication method. The node can be added with or without shared storage, depending on your configuration.
28
+
The `Add-WorkgroupClusterNode` cmdlet adds a node to a workgroup cluster. This cmdlet lets you
29
+
expand an existing workgroup cluster by adding a new node, specifying the required credentials and
30
+
authentication method. The node can be added with or without shared storage, depending on your
31
+
configuration.
27
32
28
33
## EXAMPLES
29
34
30
-
### EXAMPLE 1
35
+
### Example 1: Add a node to a workgroup cluster
36
+
37
+
This example adds `Node3` to the cluster whose membership is comprised of `Node1` and `Node2`.
31
38
32
39
```powershell
33
-
$params = @{
40
+
$parameters = @{
34
41
Node = @("Node1", "Node2")
35
42
Credentials = @($cred1, $cred2)
36
43
Name = "Node3"
37
44
Credential = $cred3
38
45
}
39
-
Add-WorkgroupClusterNode @params
46
+
Add-WorkgroupClusterNode @parameters
40
47
```
41
48
42
-
This example adds `Node3` to the cluster whose membership is comprised of `Node1` and `Node2`.
43
-
44
49
## PARAMETERS
45
50
46
51
### -AuthenticationMethod
52
+
47
53
Specifies the authentication method to use when adding the node to the workgroup cluster. Acceptable values are:
54
+
48
55
-`Certificates`: Uses certificate-based authentication for secure communication between nodes.
49
56
-`NoCertificates`: Uses local user accounts and passwords for authentication without certificates.
50
57
@@ -183,21 +190,26 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
183
190
## INPUTS
184
191
185
192
### System.String[]
193
+
186
194
You can pipe an array of node names to this cmdlet.
187
195
188
196
### System.Management.Automation.PSCredential[]
197
+
189
198
You can pipe an array of credentials to this cmdlet.
190
199
191
200
### System.String
201
+
192
202
You can pipe the name of the node to be added.
193
203
194
204
### System.Management.Automation.PSCredential
205
+
195
206
You can pipe the credential for the node to be added.
196
207
197
208
## OUTPUTS
198
209
199
210
### None
200
-
This cmdlet does not generate any output. It performs the operation of adding a node to a workgroup cluster.
211
+
212
+
This cmdlet doesn't generate any output. It performs the operation of adding a node to a workgroup cluster.
0 commit comments