Skip to content

Commit 0f8a9fd

Browse files
committed
Little edits
1 parent 7d243e8 commit 0f8a9fd

File tree

1 file changed

+20
-8
lines changed

1 file changed

+20
-8
lines changed

docset/winserver2025-ps/failoverclusters/Add-WorkgroupClusterNode.md

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,17 @@
22
description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
33
external help file: Microsoft.FailoverClusters.Adless.PowerShell.psm1-help.xml
44
Module Name: FailoverClusters
5-
ms.date: 04/24/2025
5+
ms.date: 04/25/2025
66
online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-workgroupclusternode?view=windowsserver2025-ps&wt.mc_id=ps-gethelp
77
schema: 2.0.0
88
title: Add-WorkgroupClusterNode
9+
ai-usage: ai-generated
910
---
1011

1112
# Add-WorkgroupClusterNode
1213

1314
## SYNOPSIS
15+
1416
Adds a node to a workgroup cluster.
1517

1618
## SYNTAX
@@ -23,28 +25,33 @@ Add-WorkgroupClusterNode [-Node] <String[]> [-Credentials] <PSCredential[]> [-Na
2325

2426
## DESCRIPTION
2527

26-
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.
2732

2833
## EXAMPLES
2934

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`.
3138

3239
```powershell
33-
$params = @{
40+
$parameters = @{
3441
Node = @("Node1", "Node2")
3542
Credentials = @($cred1, $cred2)
3643
Name = "Node3"
3744
Credential = $cred3
3845
}
39-
Add-WorkgroupClusterNode @params
46+
Add-WorkgroupClusterNode @parameters
4047
```
4148

42-
This example adds `Node3` to the cluster whose membership is comprised of `Node1` and `Node2`.
43-
4449
## PARAMETERS
4550

4651
### -AuthenticationMethod
52+
4753
Specifies the authentication method to use when adding the node to the workgroup cluster. Acceptable values are:
54+
4855
- `Certificates`: Uses certificate-based authentication for secure communication between nodes.
4956
- `NoCertificates`: Uses local user accounts and passwords for authentication without certificates.
5057

@@ -183,21 +190,26 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
183190
## INPUTS
184191
185192
### System.String[]
193+
186194
You can pipe an array of node names to this cmdlet.
187195
188196
### System.Management.Automation.PSCredential[]
197+
189198
You can pipe an array of credentials to this cmdlet.
190199
191200
### System.String
201+
192202
You can pipe the name of the node to be added.
193203
194204
### System.Management.Automation.PSCredential
205+
195206
You can pipe the credential for the node to be added.
196207
197208
## OUTPUTS
198209
199210
### 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.
201213
202214
## NOTES
203215

0 commit comments

Comments
 (0)