en-US/about_xNetBIOS.help.txt
.NAME
xNetBIOS # Description This resource is used to enable or disable the NetBios on a network interface. .PARAMETER InterfaceAlias Key - String Specifies the alias of a network interface. .PARAMETER Setting Required - String Allowed values: Default, Enable, Disable Default - Use NetBios settings from the DHCP server. If static IP, Enable NetBIOS. .EXAMPLE Disable NetBios on Adapter Configuration Example { param ( [Parameter()] [System.String[]] $NodeName = 'localhost' ) Import-DscResource -ModuleName xNetworking node $NodeName { xNetBIOS DisableNetBIOS { InterfaceAlias = 'Ethernet' Setting = 'Disable' } } } |