-
Notifications
You must be signed in to change notification settings - Fork 88
WinsServerAddress
dscbot edited this page Jun 7, 2024
·
3 revisions
Parameter | Attribute | DataType | Description | Allowed Values |
---|---|---|---|---|
InterfaceAlias | Key | String | Alias of the network interface for which the WINS server address is set. | |
Address | Write | StringArray[] | The desired WINS Server address(es). Exclude to remove all WINS servers. |
This resource is used to control a node's WINS Server address(s) for the given network interface.
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'
}
}
}
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'
}
}
}
- DefaultGatewayAddress
- DnsClientGlobalSetting
- DnsConnectionSuffix
- DnsServerAddress
- Firewall
- FirewallProfile
- HostsFile
- IPAddress
- IPAddressOption
- NetAdapterAdvancedProperty
- NetAdapterBinding
- NetAdapterLso
- NetAdapterName
- NetAdapterRdma
- NetAdapterRsc
- NetAdapterRss
- NetAdapterState
- NetBios
- NetConnectionProfile
- NetIPInterface
- NetworkTeam
- NetworkTeamInterface
- ProxySettings
- Route
- WaitForNetworkTeam
- WinsServerAddress
- WinsSetting