What is MinBandwidthWeightAction in NetQos Policy?

Ayushi Chaudhuri 190 Reputation points
2023-03-30T06:22:56.95+00:00

I was searching for a command to allocate a certain value to the bandwidth and came across the MinBandwidthWeightAction parameter of NetQosPolicy. Does anyone know what is the function of it?

Windows Server PowerShell
Windows Server PowerShell
Windows Server: A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.PowerShell: A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
5,323 questions
0 comments No comments
{count} votes

Accepted answer
  1. Sedat SALMAN 12,985 Reputation points
    2023-03-30T06:58:04.0433333+00:00

    MinBandwidthWeightAction is a parameter in the New-NetQosPolicy cmdlet in PowerShell, used to set the minimum bandwidth weight for a specific Quality of Service (QoS) policy on a Windows machine. It helps reserve a certain portion of the network bandwidth for an application or traffic type, ensuring they receive a minimum share of the available bandwidth.

    Here's an example of how to use the MinBandwidthWeightAction parameter:

    New-NetQosPolicy -Name "MyAppPolicy" -AppPathNameMatchCondition "C:\Program Files\MyApp\MyApp.exe" -MinBandwidthWeightAction 20
    
    

    This command creates a new QoS policy named "MyAppPolicy" for the application located at "C:\Program Files\MyApp\MyApp.exe" and sets the minimum bandwidth weight to 20.

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful