Is NetBIOS really gone on Windows?

9,951

Solution 1

"NetBIOS" the protocol (NBF) is gone, long replaced by NBT, CIFS, etc. "NetBIOS" as part of the name of other things still exists.

Windows still has an embedded WINS server, even if there's no dedicated WINS server on the network.

Solution 2

NETBIOS over TCP/IP is most certainly still supported in Windows Vista and above. You can see this in the TCP/IP settings on your adapter. There is still a spot to add WINS server addresses. We're running multiple WINS servers here on campus and all of our clients still use them. That said, DNS is the modern/preferred named resolution method, however NETBIOS is still around for compatibility with legacy applications and/or networks.

Solution 3

Rather than try to rehash what's well documented elsewhere....read http://www.jacco2.dds.nl/samba/smb.html

(NetBIOS still exists - NETBEUI is gone)

Share:
9,951

Related videos on Youtube

Harvey Kwok
Author by

Harvey Kwok

Updated on September 17, 2022

Comments

  • Harvey Kwok
    Harvey Kwok over 1 year

    I posted a similar question on StackOverflow. Somebody suggested me to post similar question here and see if anybody can give me some insight.

    From MSDN, I was told that NetBIOS is no longer supported starting from Windwos Vista. Sure enough, I can no longer see any NetBIOS name from the network properties.

    However, when I am writing codes on my Windows 7, I still encounter NetBIOS names in many places. For example

    1. I can still use "MYDOMAIN\Harvey" to logon my machine, where I believe MYDOMAIN is a NetBIOS name.
    2. The environment variables COMPUTERNAME and USERDOMAIN are still NetBIOS names. I am expecting to see a DNS names here
    3. My SQL Server instance names coming up from my SQL Server Management Studio is still something like MYMACHINE\Instance1.

    I am guessing Microsoft still maintains some pieces of it for backward compatibility. I want to understand how Windows 7 going to resolve the NetBIOS name to an IP address. I found this article explaining how the NetBIOS name resolution works. I am afraid this is no longer true for Windows 7. At least there is no WINS server for me. Can somebody explain to me how the Windows 7 do the NetBIOS name resolution?

    UPDATE If the protocol is gone, how does the NetBIOS name resolution happens? Does it still talk to WINS? If yes, is it still using NetBIOS protocol to talk to WINS?

  • Harvey Kwok
    Harvey Kwok over 13 years
    Thanks. If the protocol is gone, how does the NetBIOS name resolution happens? Does it still talk to WINS? If yes, is it still using NetBIOS protocol to talk to WINS? Sorry, I think this is the main part that I want to know. I updated my question to include this.
  • joeqwerty
    joeqwerty over 13 years
    Not supported and gone are two different things. NBT is very much a part of the Windows OS up to and including W2K8 and Windows 7. In addition, NBT is enabled by default.
  • Harvey Kwok
    Harvey Kwok over 13 years
    @joeq thanks for clearing up the difference between NetBIOS protocol and the NetBIOS itself