-
Notifications
You must be signed in to change notification settings - Fork 88
NetBios
dscbot edited this page Jun 7, 2024
·
7 revisions
Parameter | Attribute | DataType | Description | Allowed Values |
---|---|---|---|---|
InterfaceAlias | Key | String | Specifies the alias of a network interface. Supports the use of '*' and '%' | |
Setting | Required | String | Specifies if NetBIOS should be enabled or disabled or obtained from the DHCP server (Default). If static IP, Enable NetBIOS. |
Default , Enable , Disable
|
This resource is used to enable or disable the NetBios on a network interface.
Disable NetBios on Adapter.
Configuration NetBios_DisableNetBios_Config
{
Import-DscResource -ModuleName NetworkingDsc
Node localhost
{
NetBios DisableNetBios
{
InterfaceAlias = 'Ethernet'
Setting = 'Disable'
}
}
}
Disable NetBios on all adapters.
Configuration NetBios_DisableNetBios_Config_Wildcard
{
Import-DscResource -ModuleName NetworkingDsc
Node localhost
{
NetBios DisableNetBios
{
InterfaceAlias = '*'
Setting = 'Disable'
}
}
}
- 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