In this video, I will show you how to enable or disable NetBIOS over TCP/IP via Windows PowerShell.
Here's how to:
1. Run PowerShell as an Administrator
2. Disable NetBIOS settings: $adapters=(gwmi win32_networkadapterconfiguration )
Foreach ($adapter in $adapters){
Write-Host $adapter
$adapter.settcpipnetbios(2)
}
Enable NetBIOS settings: $adapters=(gwmi win32_networkadapterconfiguration )
Foreach ($adapter in $adapters){
Write-Host $adapter
$adapter.settcpipnetbios(1)
}
Use Default NetBIOS settings from DHCP Server:
$adapters=(gwmi win32_networkadapterconfiguration )
Foreach ($adapter in $adapters){
3. Finally check NetBIOS settings' status by going to Network and Sharing Center → Current network's "Properties" → "Internet Protocol version 4 (TCP/IPv4)" option → "Advanced" button under the General tab → WINS tab. Here you will see whether NetBIOS settings are enabled, disabled or default.
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Hope you liked my video. In case you chase any problems or have some IT related questions then please let me know in the comments or inform me via my emails: [email protected] or [email protected]
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
If you enjoyed my video then please LIKE and SHARE my video with others and also don't forget to SUBSCRIBE for more clever IT and technology tutorials!!!! Cheers ;)