|
| 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