Skip to content

Commit 70d6305

Browse files
authored
Merge pull request #3872 from MicrosoftDocs/main
Publish main to live, Wednesday 3:30PM PDT, 09/11
2 parents 24cf33b + 74aadd4 commit 70d6305

7 files changed

+1311
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,182 @@
1+
---
2+
description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
3+
external help file: Microsoft.FailoverClusters.Adless.PowerShell.psm1-help.xml
4+
Module Name: FailoverClusters
5+
ms.date: 09/11/2024
6+
online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-workgroupclusternode?view=windowsserver2025-ps&wt.mc_id=ps-gethelp
7+
schema: 2.0.0
8+
title: Add-WorkgroupClusterNode
9+
---
10+
11+
# Add-WorkgroupClusterNode
12+
13+
## SYNOPSIS
14+
Adds a node to a workgroup cluster.
15+
16+
## SYNTAX
17+
18+
```
19+
Add-WorkgroupClusterNode [-Node] <String[]> [-Credentials] <PSCredential[]> [-Name] <String>
20+
[-Credential] <PSCredential> [-NoStorage] [-Confirm] [-WhatIf] [<CommonParameters>]
21+
```
22+
23+
## DESCRIPTION
24+
25+
The `Add-WorkgroupClusterNode` cmdlet adds a node to a workgroup cluster.
26+
27+
## EXAMPLES
28+
29+
### EXAMPLE 1
30+
31+
```powershell
32+
$params = @{
33+
Node = @("Node1", "Node2")
34+
Credentials = @($cred1, $cred2)
35+
Name = "Node3"
36+
Credential = $cred3
37+
}
38+
Add-WorkgroupClusterNode @params
39+
```
40+
41+
This example adds `Node3` to the cluster whose membership is comprised of `Node1` and `Node2`.
42+
43+
## PARAMETERS
44+
45+
### -Node
46+
47+
An array of nodes to be added to the cluster.
48+
49+
```yaml
50+
Type: String[]
51+
Parameter Sets: (All)
52+
Aliases:
53+
54+
Required: True
55+
Position: 1
56+
Default value: None
57+
Accept pipeline input: False
58+
Accept wildcard characters: False
59+
```
60+
61+
### -Credentials
62+
63+
An array of credentials for the nodes.
64+
65+
```yaml
66+
Type: PSCredential[]
67+
Parameter Sets: (All)
68+
Aliases:
69+
70+
Required: True
71+
Position: 2
72+
Default value: None
73+
Accept pipeline input: False
74+
Accept wildcard characters: False
75+
```
76+
77+
### -Name
78+
79+
The name of the node to be added.
80+
81+
```yaml
82+
Type: String
83+
Parameter Sets: (All)
84+
Aliases:
85+
86+
Required: True
87+
Position: 3
88+
Default value: None
89+
Accept pipeline input: False
90+
Accept wildcard characters: False
91+
```
92+
93+
### -Credential
94+
95+
The credential for the node to be added.
96+
97+
```yaml
98+
Type: PSCredential
99+
Parameter Sets: (All)
100+
Aliases:
101+
102+
Required: True
103+
Position: 4
104+
Default value: None
105+
Accept pipeline input: False
106+
Accept wildcard characters: False
107+
```
108+
109+
### -NoStorage
110+
111+
Specifies that shared storage is ignored for the workgroup cluster node.
112+
113+
```yaml
114+
Type: SwitchParameter
115+
Parameter Sets: (All)
116+
Aliases:
117+
118+
Required: False
119+
Position: Named
120+
Default value: False
121+
Accept pipeline input: False
122+
Accept wildcard characters: False
123+
```
124+
125+
### -Confirm
126+
127+
Prompts you for confirmation before running the cmdlet.
128+
129+
```yaml
130+
Type: SwitchParameter
131+
Parameter Sets: (All)
132+
Aliases:
133+
134+
Required: False
135+
Position: Named
136+
Default value: False
137+
Accept pipeline input: False
138+
Accept wildcard characters: False
139+
```
140+
141+
### -WhatIf
142+
143+
Shows what would happen if the cmdlet runs. The cmdlet isn't run.
144+
145+
```yaml
146+
Type: SwitchParameter
147+
Parameter Sets: (All)
148+
Aliases:
149+
150+
Required: False
151+
Position: Named
152+
Default value: False
153+
Accept pipeline input: False
154+
Accept wildcard characters: False
155+
```
156+
157+
### CommonParameters
158+
159+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
160+
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
161+
-WarningAction, and -WarningVariable. For more information, see
162+
[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters).
163+
164+
## INPUTS
165+
166+
## OUTPUTS
167+
168+
## NOTES
169+
170+
## RELATED LINKS
171+
172+
[New-WorkgroupCluster](new-workgroupcluster.md)
173+
174+
[Remove-WorkgroupCluster](remove-workgroupcluster.md)
175+
176+
[Remove-WorkgroupClusterNode](remove-workgroupclusternode.md)
177+
178+
[Set-WorkgroupClusterRemotingConfiguration](set-workgroupclusterremotingconfiguration.md)
179+
180+
[Test-WorkgroupCluster](test-workgroupcluster.md)
181+
182+
[Test-WorkgroupClusterRemoting](test-workgroupclusterremoting.md)

0 commit comments

Comments
 (0)