DSCResources/DSC_NetAdapterRsc/en-US/about_NetAdapterRsc.help.txt
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
.NAME
NetAdapterRsc .DESCRIPTION This resource is used to enable or disable RSC (Recv Segment Coalescing) for specific protocols on a network adapter. .PARAMETER Name Key - String Specifies the Name of network adapter. .PARAMETER Protocol Required - String Allowed values: IPv4, IPv6, All Specifies which protocol to make changes to. .PARAMETER State Required - Boolean Specifies whether RSC should be enabled or disabled. .PARAMETER StateIPv4 Read - String Returns the current state of RSC for IPv4 .PARAMETER StateIPv6 Read - String Returns the current state of RSC for IPv6 .EXAMPLE 1 This configuration disables RSC for IPv6 on the network adapter. Configuration NetAdapterRsc_DisableRscIPv6_Config { Import-DSCResource -ModuleName NetworkingDsc Node localhost { NetAdapterRsc DisableRscIPv6 { Name = 'Ethernet' Protocol = 'IPv6' State = $false } } } .EXAMPLE 2 This configuration disables RSC for IPv4 on the network adapter. Configuration NetAdapterRsc_DisableRscIPv4_Config { Import-DSCResource -ModuleName NetworkingDsc Node localhost { NetAdapterRsc DisableRscIPv4 { Name = 'Ethernet' Protocol = 'IPv4' State = $false } } } .EXAMPLE 3 This configuration disables RSC on the network adapter. Configuration NetAdapterRsc_DisableRscAll_Config { Import-DSCResource -ModuleName NetworkingDsc Node localhost { NetAdapterRsc DisableRscAll { Name = 'Ethernet' Protocol = 'All' State = $false } } } |