DSCResources/DSC_WinsServerAddress/en-US/about_WinsServerAddress.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 |
.NAME
WinsServerAddress .DESCRIPTION This resource is used to control a node's WINS Server address(s) for the given network interface. .PARAMETER InterfaceAlias Key - String Alias of the network interface for which the WINS server address is set. .PARAMETER Address Write - StringArray The desired WINS Server address(es). Exclude to remove all WINS servers. .EXAMPLE 1 Configure WINS Server for the Ethernet adapter. Configuration WinsServerAddress_Config { Import-DscResource -Module NetworkingDsc Node localhost { WinsServerAddress WinsServerAddress { Address = '192.168.0.1' InterfaceAlias = 'Ethernet' } } } .EXAMPLE 2 Configure primary and secondary WINS Server addresses on the Ethernet adapter. Configuration WinsServerAddress_PrimaryAndSecondary_Config { Import-DscResource -Module NetworkingDsc Node localhost { WinsServerAddress PrimaryAndSecondary { Address = '192.168.0.1', '192.168.0.2' InterfaceAlias = 'Ethernet' } } } |