Skip to content

Commit 62568cd

Browse files
committed
Changed cmdlets
1 parent 5fd4083 commit 62568cd

File tree

5 files changed

+278
-196
lines changed

5 files changed

+278
-196
lines changed

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

Lines changed: 31 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ Adds a node to a workgroup cluster.
1717

1818
```
1919
Add-WorkgroupClusterNode [-Node] <String[]> [-Credentials] <PSCredential[]> [-Name] <String>
20-
[-Credential] <PSCredential> [-NoStorage] [-Confirm] [-WhatIf] [<CommonParameters>]
20+
[-Credential] <PSCredential> [-NoStorage] [-Confirm] [-WhatIf]
21+
[-AuthenticationMethod] <WorkgroupClusterAuthenticationMethod> [<CommonParameters>]
2122
```
2223

2324
## DESCRIPTION
@@ -42,17 +43,33 @@ This example adds `Node3` to the cluster whose membership is comprised of `Node1
4243

4344
## PARAMETERS
4445

45-
### -Node
46+
### -AuthenticationMethod
47+
{{ Fill AuthenticationMethod Description }}
4648

47-
An array of nodes to be added to the cluster.
49+
```yaml
50+
Type: WorkgroupClusterAuthenticationMethod
51+
Parameter Sets: (All)
52+
Aliases:
53+
Accepted values: Certificates, NoCertificates
54+
55+
Required: True
56+
Position: 5
57+
Default value: None
58+
Accept pipeline input: False
59+
Accept wildcard characters: False
60+
```
61+
62+
### -Credential
63+
64+
The credential for the node to be added.
4865
4966
```yaml
50-
Type: String[]
67+
Type: System.Management.Automation.PSCredential
5168
Parameter Sets: (All)
5269
Aliases:
5370

5471
Required: True
55-
Position: 1
72+
Position: 4
5673
Default value: None
5774
Accept pipeline input: False
5875
Accept wildcard characters: False
@@ -63,7 +80,7 @@ Accept wildcard characters: False
6380
An array of credentials for the nodes.
6481
6582
```yaml
66-
Type: PSCredential[]
83+
Type: System.Management.Automation.PSCredential[]
6784
Parameter Sets: (All)
6885
Aliases:
6986

@@ -79,7 +96,7 @@ Accept wildcard characters: False
7996
The name of the node to be added.
8097
8198
```yaml
82-
Type: String
99+
Type: System.String
83100
Parameter Sets: (All)
84101
Aliases:
85102

@@ -90,17 +107,17 @@ Accept pipeline input: False
90107
Accept wildcard characters: False
91108
```
92109
93-
### -Credential
110+
### -Node
94111
95-
The credential for the node to be added.
112+
An array of nodes to be added to the cluster.
96113
97114
```yaml
98-
Type: PSCredential
115+
Type: System.String[]
99116
Parameter Sets: (All)
100117
Aliases:
101118

102119
Required: True
103-
Position: 4
120+
Position: 1
104121
Default value: None
105122
Accept pipeline input: False
106123
Accept wildcard characters: False
@@ -111,7 +128,7 @@ Accept wildcard characters: False
111128
Specifies that shared storage is ignored for the workgroup cluster node.
112129
113130
```yaml
114-
Type: SwitchParameter
131+
Type: System.Management.Automation.SwitchParameter
115132
Parameter Sets: (All)
116133
Aliases:
117134

@@ -127,7 +144,7 @@ Accept wildcard characters: False
127144
Prompts you for confirmation before running the cmdlet.
128145
129146
```yaml
130-
Type: SwitchParameter
147+
Type: System.Management.Automation.SwitchParameter
131148
Parameter Sets: (All)
132149
Aliases:
133150

@@ -143,7 +160,7 @@ Accept wildcard characters: False
143160
Shows what would happen if the cmdlet runs. The cmdlet isn't run.
144161
145162
```yaml
146-
Type: SwitchParameter
163+
Type: System.Management.Automation.SwitchParameter
147164
Parameter Sets: (All)
148165
Aliases:
149166

docset/winserver2025-ps/failoverclusters/New-WorkgroupCluster.md

Lines changed: 65 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Creates a new workgroup cluster.
1818
```
1919
New-WorkgroupCluster [[-Node] <String[]>] [[-Credentials] <PSCredential[]>] [[-Name] <String>]
2020
[[-StaticAddress] <String[]>] [[-IgnoreNetwork] <String[]>]
21-
[[-ManagementPointNetworkType] <AdminAccessPointResType>]
22-
[[-AdministrativeAccessPoint] <AdminAccessPoint>] [-NoStorage] [-S2D] [-Force] [-Confirm] [-WhatIf]
23-
[<CommonParameters>]
21+
[[-ManagementPointNetworkType] <AdminAccessPointResType>] [[-AdministrativeAccessPoint] <AdminAccessPoint>]
22+
[-NoStorage] [-S2D] [-Force] [-Confirm] [-WhatIf]
23+
[-AuthenticationMethod] <WorkgroupClusterAuthenticationMethod> [<CommonParameters>]
2424
```
2525

2626
## DESCRIPTION
@@ -42,68 +42,77 @@ Note: Only None and DNS are supported for AdministrativeAccessPoint.
4242

4343
## PARAMETERS
4444

45-
### -Node
45+
### -AdministrativeAccessPoint
4646

47-
An array of nodes to be included in the cluster.
47+
Specifies the type of administrative access point that the cmdlet creates for the cluster.
48+
Acceptable values are:
49+
50+
- `DNS`: The cmdlet creates an administrative access point for the cluster. The administrative
51+
access point is registered in DNS but isn't enabled in Active Directory Domain Services.
52+
- `None`
53+
54+
The cmdlet doesn't create an administrative access point for the cluster. Some clustered roles and
55+
functionality might not be available for a cluster that doesn't have an administrative access
56+
point. Also, you cannot use Failover Cluster Manager to manage a cluster that doesn't have an
57+
administrative access point.
4858

4959
```yaml
50-
Type: String[]
60+
Type: AdminAccessPoint
5161
Parameter Sets: (All)
5262
Aliases:
63+
Accepted values: None, Dns
5364

5465
Required: False
55-
Position: 1
56-
Default value: @()
66+
Position: 7
67+
Default value: None
5768
Accept pipeline input: False
5869
Accept wildcard characters: False
5970
```
6071
61-
### -Credentials
62-
63-
An array of credentials for the nodes.
72+
### -AuthenticationMethod
73+
{{ Fill AuthenticationMethod Description }}
6474
6575
```yaml
66-
Type: PSCredential[]
76+
Type: WorkgroupClusterAuthenticationMethod
6777
Parameter Sets: (All)
6878
Aliases:
79+
Accepted values: Certificates, NoCertificates
6980

70-
Required: False
71-
Position: 2
81+
Required: True
82+
Position: 8
7283
Default value: None
7384
Accept pipeline input: False
7485
Accept wildcard characters: False
7586
```
7687
77-
### -Name
88+
### -Credentials
7889
79-
The name of the workgroup cluster.
90+
An array of credentials for the nodes.
8091
8192
```yaml
82-
Type: String
93+
Type: System.Management.Automation.PSCredential[]
8394
Parameter Sets: (All)
8495
Aliases:
8596

8697
Required: False
87-
Position: 3
98+
Position: 2
8899
Default value: None
89100
Accept pipeline input: False
90101
Accept wildcard characters: False
91102
```
92103
93-
### -StaticAddress
104+
### -Force
94105
95-
Specifies one or more static addresses to use when running the cmdlet. Networks with DHCP enabled
96-
are always included, but other networks need a static address to be specified using the
97-
**StaticAddress** parameter or should be explicitly ignored with this **IgnoreNetwork** parameter.
106+
Forces the command to run without asking for user confirmation.
98107
99108
```yaml
100-
Type: String[]
109+
Type: System.Management.Automation.SwitchParameter
101110
Parameter Sets: (All)
102111
Aliases:
103112

104113
Required: False
105-
Position: 4
106-
Default value: None
114+
Position: Named
115+
Default value: False
107116
Accept pipeline input: False
108117
Accept wildcard characters: False
109118
```
@@ -115,7 +124,7 @@ always included, but other networks need a static address to be specified using
115124
**StaticAddress** parameter or should be explicitly ignored with this **IgnoreNetwork** parameter.
116125
117126
```yaml
118-
Type: String[]
127+
Type: System.String[]
119128
Parameter Sets: (All)
120129
Aliases:
121130

@@ -151,29 +160,34 @@ Accept pipeline input: False
151160
Accept wildcard characters: False
152161
```
153162

154-
### -AdministrativeAccessPoint
163+
### -Name
155164

156-
Specifies the type of administrative access point that the cmdlet creates for the cluster.
157-
Acceptable values are:
165+
The name of the workgroup cluster.
158166

159-
- `DNS`: The cmdlet creates an administrative access point for the cluster. The administrative
160-
access point is registered in DNS but isn't enabled in Active Directory Domain Services.
161-
- `None`
167+
```yaml
168+
Type: System.String
169+
Parameter Sets: (All)
170+
Aliases:
162171
163-
The cmdlet doesn't create an administrative access point for the cluster. Some clustered roles and
164-
functionality might not be available for a cluster that doesn't have an administrative access
165-
point. Also, you cannot use Failover Cluster Manager to manage a cluster that doesn't have an
166-
administrative access point.
172+
Required: False
173+
Position: 3
174+
Default value: None
175+
Accept pipeline input: False
176+
Accept wildcard characters: False
177+
```
178+
179+
### -Node
180+
181+
An array of nodes to be included in the cluster.
167182

168183
```yaml
169-
Type: AdminAccessPoint
184+
Type: System.String[]
170185
Parameter Sets: (All)
171186
Aliases:
172-
Accepted values: None, Dns
173187
174188
Required: False
175-
Position: 7
176-
Default value: None
189+
Position: 1
190+
Default value: @()
177191
Accept pipeline input: False
178192
Accept wildcard characters: False
179193
```
@@ -183,7 +197,7 @@ Accept wildcard characters: False
183197
Specifies that shared storage is ignored for the workgroup cluster node.
184198

185199
```yaml
186-
Type: SwitchParameter
200+
Type: System.Management.Automation.SwitchParameter
187201
Parameter Sets: (All)
188202
Aliases:
189203
@@ -199,7 +213,7 @@ Accept wildcard characters: False
199213
Specifies whether to enable Storage Spaces Direct when creating the workgroup cluster.
200214

201215
```yaml
202-
Type: SwitchParameter
216+
Type: System.Management.Automation.SwitchParameter
203217
Parameter Sets: (All)
204218
Aliases:
205219
@@ -210,18 +224,20 @@ Accept pipeline input: False
210224
Accept wildcard characters: False
211225
```
212226

213-
### -Force
227+
### -StaticAddress
214228

215-
Forces the command to run without asking for user confirmation.
229+
Specifies one or more static addresses to use when running the cmdlet. Networks with DHCP enabled
230+
are always included, but other networks need a static address to be specified using the
231+
**StaticAddress** parameter or should be explicitly ignored with this **IgnoreNetwork** parameter.
216232

217233
```yaml
218-
Type: SwitchParameter
234+
Type: System.String[]
219235
Parameter Sets: (All)
220236
Aliases:
221237
222238
Required: False
223-
Position: Named
224-
Default value: False
239+
Position: 4
240+
Default value: None
225241
Accept pipeline input: False
226242
Accept wildcard characters: False
227243
```
@@ -231,7 +247,7 @@ Accept wildcard characters: False
231247
Prompts you for confirmation before running the cmdlet.
232248

233249
```yaml
234-
Type: SwitchParameter
250+
Type: System.Management.Automation.SwitchParameter
235251
Parameter Sets: (All)
236252
Aliases:
237253
@@ -247,7 +263,7 @@ Accept wildcard characters: False
247263
Shows what would happen if the cmdlet runs. The cmdlet isn't run.
248264

249265
```yaml
250-
Type: SwitchParameter
266+
Type: System.Management.Automation.SwitchParameter
251267
Parameter Sets: (All)
252268
Aliases:
253269

0 commit comments

Comments
 (0)