DSCResources/DSC_NetAdapterBinding/en-US/about_NetAdapterBinding.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 |
.NAME
NetAdapterBinding .DESCRIPTION This resource is used to bind or unbind transport or filters to a network interface. .PARAMETER InterfaceAlias Key - String Specifies the alias of a network interface. Supports the use of '*'. .PARAMETER ComponentId Key - String Specifies the underlying name of the transport or filter in the following form - ms_xxxx, such as ms_tcpip. .PARAMETER State Write - String Allowed values: Enabled, Disabled Specifies if the component ID for the Interface should be Enabled or Disabled. .PARAMETER CurrentState Read - String Allowed values: Enabled, Disabled, Mixed Returns the current state of the component ID for the Interfaces. .EXAMPLE 1 Disabling IPv6 for the Ethernet adapter. Configuration NetAdapterBinding_DisableIPv6_Config { Import-DSCResource -ModuleName NetworkingDsc Node localhost { NetAdapterBinding DisableIPv6 { InterfaceAlias = 'Ethernet' ComponentId = 'ms_tcpip6' State = 'Disabled' } } } |