Skip to content

Commit 38c8af1

Browse files
committed
Updates
1 parent e18ba44 commit 38c8af1

8 files changed

+177
-17
lines changed

docset/winserver2025-ps/failoverclusters/Disable-AccelNetManagement.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ Disable-AccelNetManagement [<CommonParameters>]
2121

2222
## DESCRIPTION
2323

24-
Disables Accelerated Networking Management cluster-wide. This doesn't turn off SR-IOV on VMs.
24+
Disables AccelNet Management cluster-wide. This doesn't turn off SR-IOV on VMs.
2525

2626
Disabling this feature on the cluster won't change any configuration settings on the VMs. They will
27-
no longer be managed by Accelerated Networking or tracked by HUD.
27+
no longer be managed by AccelNet or tracked by HUD.
2828

2929
## EXAMPLES
3030

@@ -34,7 +34,7 @@ no longer be managed by Accelerated Networking or tracked by HUD.
3434
Disable-AccelNetManagement
3535
```
3636

37-
This example disables the Accelerated Networking Management layer on the cluster.
37+
This example disables the AccelNet Management layer on the cluster.
3838

3939
## PARAMETERS
4040

@@ -55,4 +55,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
5555

5656
[Enable-AccelNetManagement](enable-accelnetmanagement.md)
5757

58+
[Get-AccelNetManagement](get-accelnetmanagement.md)
59+
5860
[Get-AccelNetManagementPreReq](get-accelnetmanagementprereq.md)
61+
62+
[Set-AccelNetManagement](set-accelnetmanagement.md)

docset/winserver2025-ps/failoverclusters/Enable-AccelNetManagement.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@ Enable-AccelNetManagement [-IntentName] <String> [[-NodeReservePercentage] <UInt
2222

2323
## DESCRIPTION
2424

25-
Enables Accelerated Networking Management cluster-wide, sets the numbers of nodes to reserve, and
26-
enables provided intent.
25+
Enables AccelNet Management cluster-wide. Also sets the number of nodes to reserve and enables the
26+
provided intent for AccelNet Management.
2727

2828
## EXAMPLES
2929

3030
### EXAMPLE 1
3131

3232
```powershell
33-
Enable-AccelNetManagement -IntentName "MyIntent" -NodeReservePercentage 10
33+
Enable-AccelNetManagement -IntentName "MyIntent" -NodeReservePercentage 25
3434
```
3535

36-
This example enables the `MyIntent` intent for Accelerated Networking Management and reserves
37-
**10%** of the nodes for that purpose. If the command is successful, it will return `$true`. If
36+
This example enables the `MyIntent` intent for Accelerated Networking Management and reserves `25`
37+
percent of the nodes for that purpose. If the command is successful, it will return `$true`. If
3838
there is an error, it will return `$false`.
3939

4040
## PARAMETERS
@@ -93,4 +93,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
9393
9494
[Disable-AccelNetManagement](disable-accelnetmanagement.md)
9595
96+
[Get-AccelNetManagement](get-accelnetmanagement.md)
97+
9698
[Get-AccelNetManagementPreReq](get-accelnetmanagementprereq.md)
99+
100+
[Set-AccelNetManagement](set-accelnetmanagement.md)

docset/winserver2025-ps/failoverclusters/Enable-AccelNetVM.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,13 @@ Enables Accelerated Networking on a VM.
1616
## SYNTAX
1717

1818
```
19-
Enable-AccelNetVM [-VMName] <String> [-Performance] <PerformanceWeight> [<CommonParameters>]
19+
Enable-AccelNetVM [-VMName] <String> [-Performance] <PerformanceWeight> [[-VM] <VirtualMachineBase>]
20+
[<CommonParameters>]
2021
```
2122

2223
## DESCRIPTION
2324

24-
Enables Accelerated Networking on a VM.
25+
Enables AccelNet on a VM.
2526

2627
## EXAMPLES
2728

@@ -31,7 +32,7 @@ Enables Accelerated Networking on a VM.
3132
Enable-AccelNetVM -VMName "MyVM" -Performance High
3233
```
3334

34-
This example enables Accelerated Networking with the performance level set to `High` for the VM
35+
This example enables AccelNet with the performance level set to `High` for the VM
3536
named `MyVM`.
3637

3738
## PARAMETERS
@@ -73,6 +74,22 @@ Accept pipeline input: False
7374
Accept wildcard characters: False
7475
```
7576
77+
### -VM
78+
79+
The VM object.
80+
81+
```yaml
82+
Type: VirtualMachineBase
83+
Parameter Sets: (All)
84+
Aliases:
85+
86+
Required: False
87+
Position: 3
88+
Default value: None
89+
Accept pipeline input: True (ByValue)
90+
Accept wildcard characters: False
91+
```
92+
7693
### CommonParameters
7794
7895
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,

docset/winserver2025-ps/failoverclusters/FailoverClusters.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Help Version: 5.0.3.3
55
Locale: en-US
66
Module Guid: cc3e946b-9141-48c2-95d8-d9e56594416a
77
Module Name: FailoverClusters
8-
ms.date: 10/21/2022
8+
ms.date: 01/22/2025
99
title: FailoverClusters
1010
---
1111

@@ -17,7 +17,10 @@ This reference provides cmdlet descriptions and syntax for all failover cluster-
1717
lists the cmdlets in alphabetical order based on the verb at the beginning of the cmdlet. If these
1818
cmdlets aren't available in your PowerShell session, you may need to add the
1919
`Failover Cluster Module for Windows PowerShell` Feature, using the following PowerShell command:
20-
`Add-WindowsFeature RSAT-Clustering-PowerShell`.
20+
21+
```powershell
22+
Add-WindowsFeature RSAT-Clustering-PowerShell
23+
```
2124

2225
## FailoverClusters Cmdlets
2326

@@ -395,6 +398,10 @@ Turns off maintenance for a disk resource or Cluster Shared Volume within a fail
395398

396399
Sets Accelerated Networking on a VM.
397400

401+
### [Set-AccelNetManagement](Set-AccelNetManagement.md)
402+
403+
Sets Accelerated Networking Management cluster-wide.
404+
398405
### [Set-ClusterAffinityRule](Set-ClusterAffinityRule.md)
399406

400407
Enabled or Disable an affinity rule, and update the rule type.

docset/winserver2025-ps/failoverclusters/Get-AccelNetManagement.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Get-AccelNetManagement
2121

2222
## DESCRIPTION
2323

24-
Retrieves the intent enabled for Accelerated Networking Management.
24+
Retrieves the intent enabled for AccelNet Management.
2525

2626
## EXAMPLES
2727

@@ -42,3 +42,11 @@ This example retrieves the enabled intent name.
4242
## NOTES
4343

4444
## RELATED LINKS
45+
46+
[Disable-AccelNetManagement](disable-accelnetmanagement.md)
47+
48+
[Enable-AccelNetManagement](enable-accelnetmanagement.md)
49+
50+
[Get-AccelNetManagementPreReq](get-accelnetmanagementprereq.md)
51+
52+
[Set-AccelNetManagement](set-accelnetmanagement.md)

docset/winserver2025-ps/failoverclusters/Get-AccelNetVM.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Get-AccelNetVM [[-VMName] <String>] [[-VM] <VirtualMachineBase>] [<CommonParamet
2121

2222
## DESCRIPTION
2323

24-
Get VMs with Accelerated Networking.
24+
Retrieves VMs where AccelNet is enabled.
2525

2626
## EXAMPLES
2727

@@ -33,7 +33,7 @@ Get-AccelNetVM -VMName "MyVM"
3333

3434
This example retrieves a VM named `MyVM`.
3535

36-
If no VM name is provided, all VM names are retrieved.
36+
If the **-VMName** parameter isn't provided, all VM names are retrieved.
3737

3838
### EXAMPLE 2
3939

docset/winserver2025-ps/failoverclusters/Get-VMAdaptersConnectedToEnabledIntentSwitch.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ Gets the adapters on the VM that are connected to the enabled intent switch.
1616
## SYNTAX
1717

1818
```
19-
Get-VMAdaptersConnectedToEnabledIntentSwitch [[-VMName] <String>] [<CommonParameters>]
19+
Get-VMAdaptersConnectedToEnabledIntentSwitch [[-VMName] <String>] [[-VM] <VirtualMachineBase>]
20+
[<CommonParameters>]
2021
```
2122

2223
## DESCRIPTION
@@ -52,6 +53,22 @@ Accept pipeline input: False
5253
Accept wildcard characters: False
5354
```
5455
56+
### -VM
57+
58+
The VM object.
59+
60+
```yaml
61+
Type: VirtualMachineBase
62+
Parameter Sets: (All)
63+
Aliases:
64+
65+
Required: False
66+
Position: 2
67+
Default value: None
68+
Accept pipeline input: True (ByValue)
69+
Accept wildcard characters: False
70+
```
71+
5572
### CommonParameters
5673
5774
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
---
2+
description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
3+
external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml
4+
Module Name: FailoverClusters
5+
ms.date: 01/22/2025
6+
online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-accelnetmanagement?view=windowsserver2025-ps&wt.mc_id=ps-gethelp
7+
schema: 2.0.0
8+
title: Set-AccelNetManagement
9+
---
10+
11+
# Set-AccelNetManagement
12+
13+
## SYNOPSIS
14+
Sets Accelerated Networking Management cluster-wide.
15+
16+
## SYNTAX
17+
18+
```
19+
Set-AccelNetManagement [[-IntentName] <String>] [[-NodeReservePercentage] <UInt32>]
20+
[<CommonParameters>]
21+
```
22+
23+
## DESCRIPTION
24+
25+
Sets AccelNet Management cluster-wide. Also sets the number of nodes to reserve and enables the
26+
provided intent for AccelNet Management. Returns `$true` upon success, and `$false` otherwise.
27+
28+
If AccelNet Management is currently active with a certain intent, providing a value for the
29+
`-IntentName` parameter will disable the current AccelNet Management configuration. After disabling
30+
the current AccelNet Management configuration, AccelNet Management is reenabled based on the
31+
configuration of the new intent.
32+
33+
## EXAMPLES
34+
35+
### EXAMPLE 1
36+
37+
```powershell
38+
Set-AccelNetManagement -IntentName "LowPerformance" -NodeReservePercentage 10
39+
```
40+
41+
This example enables the `LowPerformance` intent for AccelNet Management and reserves `10` percent
42+
of the nodes for that purpose. If the command is successful, it will return `$true`. If there is an
43+
error, it will return `$false`.
44+
45+
## PARAMETERS
46+
47+
### -IntentName
48+
49+
The intent name to be used for AccelNet Management. This parameter is required.
50+
51+
This value must be an integer greater than or equal to **0** and less than or equal to **99**.
52+
53+
```yaml
54+
Type: String
55+
Parameter Sets: (All)
56+
Aliases:
57+
58+
Required: True
59+
Position: 1
60+
Default value: None
61+
Accept pipeline input: False
62+
Accept wildcard characters: False
63+
```
64+
65+
### -NodeReservePercentage
66+
67+
The percentage of cluster nodes that can be down simultaneously while still maintaining enough
68+
virtual functions for each VM chosen for Accelerated Networking Management.
69+
70+
```yaml
71+
Type: UInt32
72+
Parameter Sets: (All)
73+
Aliases:
74+
75+
Required: False
76+
Position: 2
77+
Default value: 0
78+
Accept pipeline input: False
79+
Accept wildcard characters: False
80+
```
81+
82+
### CommonParameters
83+
84+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
85+
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
86+
-WarningAction, and -WarningVariable. For more information, see
87+
[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters).
88+
89+
## INPUTS
90+
91+
## OUTPUTS
92+
93+
## NOTES
94+
95+
## RELATED LINKS
96+
97+
[Disable-AccelNetManagement](disable-accelnetmanagement.md)
98+
99+
[Enable-AccelNetManagement](enable-accelnetmanagement.md)
100+
101+
[Get-AccelNetManagement](get-accelnetmanagement.md)
102+
103+
[Get-AccelNetManagementPreReq](get-accelnetmanagementprereq.md)

0 commit comments

Comments
 (0)