Windows 10: WSD vs Netbios Network Discovery

Discus and support WSD vs Netbios Network Discovery in Windows 10 Network and Sharing to solve the problem; What is the difference between WSD and Netbios? Is one preferred over the other? What kind of problems are associated with failing to use one or... Discussion in 'Windows 10 Network and Sharing' started by sewing1243, Apr 25, 2017.

  1. WSD vs Netbios Network Discovery


    What is the difference between WSD and Netbios?

    Is one preferred over the other?

    What kind of problems are associated with failing to use one or the other?

    :)
     
    sewing1243, Apr 25, 2017
    #1

  2. Windows 10 build 1511 PCs don't appear in their own or other Windows 10 build 1511 network folder

    PS: All of this is also somehow tied to the discovery method the PCs are using, WSD or NetBIOS. What I've noticed is that on PCs that I fail to run the netcfg command on will only be discovered under NetBIOS, it appears that WSD fails.
     
    SEwing1243, Apr 25, 2017
    #2
  3. After Build 10586 Update Computers Not Showing Up in Network Folder

    PS: All of this is also somehow tied to the discovery method the PCs are using, WSD or NetBIOS. What I've noticed is that on PCs that I fail to run the netcfg command on will only be discovered under NetBIOS, it appears that WSD fails.
     
    SEwing1243, Apr 25, 2017
    #3
  4. WSD vs Netbios Network Discovery

    I have to say this must be a question no one can answer in a straight forward way. Let's start with saying that Microsoft has introduced an undated (or a new version of) network discovery topology in Windows 10 that is not compatible with older Windows OS's. I never had issues with Windows 7 and Windows XP home networking. I don't remember having to deal with services called "Function Discovery...". Never had issues with my computers "not" being listed in Network Places either. Of course the so-called discovery method between W7 and XP was NetBIOS.

    In my mixed W10 (Home and Pro) and W7 network, WSD has problems maintaining the list of computer names in Network Places. Specifically, the computer name associated with the computer running W10 Home keeps disappearing after 30 minutes or so. The only way to make it reappear is to restart the "Function Discovery Resource Publication" service on the computer. This is a major pain. So I assume this is an undocumented bug. I don't know if Microsoft is aware or has addressed it.

    My solution was to disable the service and let NetBIOS take over as the discovery method for the computers on my LAN. Here's what I did: https://social.technet.microsoft.com...tpronetworking

    I would like to use WSD, but until MS fixes the service on W10 Home, I'll stay with NetBIOS. Is it true that MS is dumping Network Places in Windows 10? If so, what will replace it?
     
    lintek25475, Mar 25, 2018
    #4
  5. As I've dug deeper into this morass I've found that not only can no one seem to answer any questions, but Microsoft keeps changing things so often that I don't think they know how networking in Windows 10 works. During a recent Windows update they turned off SMBv1 (the the very feature that creates the Computer management service that populates the network folder in Windows File Explorer) and no one seems to know how they work/how to turn on the newer protocols, SMBv2 and SMBv3.
     
    sewing1243, Mar 25, 2018
    #5
  6. Eagle51 Win User
    Hey sewing1243,
    Check the following link for the commands to check/disable/enable SMBv1 / SMBv2 / v3 - https://support.microsoft.com/en-us/...in-windows-and

    Here are the powershell (run as admin) commands for checking SMB stuff from that link.
    Note: I've tweaked them (FINDSTR) just to clean up the output. The following make NO changes to your PC.

    get-windowsoptionalfeature -Online -FeatureName SMB1Protocol | FINDSTR "FeatureName"
    get-windowsoptionalfeature -Online -FeatureName SMB1Protocol | FINDSTR "State"
    get-windowsoptionalfeature -Online -FeatureName SMB1Protocol-Client | FINDSTR "FeatureName"
    get-windowsoptionalfeature -Online -FeatureName SMB1Protocol-Client | FINDSTR "State"
    get-windowsoptionalfeature -Online -FeatureName SMB1Protocol-Server | FINDSTR "FeatureName"
    get-windowsoptionalfeature -Online -FeatureName SMB1Protocol-Server | FINDSTR "State"
    get-windowsoptionalfeature -Online -FeatureName SMB1Protocol-Deprecation | FINDSTR "FeatureName"
    get-windowsoptionalfeature -Online -FeatureName SMB1Protocol-Deprecation | FINDSTR "State"
    get-smbserverconfiguration | Select EnableSMB1Protocol,EnableSMB2Protocol | FORMAT-LIST
    sc.exe query mrxsmb10 | FINDSTR "SERVICE_NAME"
    sc.exe query mrxsmb10 | FINDSTR "STATE"
    sc.exe qc mrxsmb10 | FINDSTR "START_TYPE"
    sc.exe query mrxsmb20 | FINDSTR "SERVICE_NAME"
    sc.exe query mrxsmb20 | FINDSTR "STATE"
    sc.exe qc mrxsmb20 | FINDSTR "START_TYPE"
    sc.exe query browser| FINDSTR "SERVICE_NAME"
    sc.exe query browser | FINDSTR "STATE"
    sc.exe qc browser | FINDSTR "START_TYPE"
    sc.exe query fdphost | FINDSTR "SERVICE_NAME"
    sc.exe query fdphost | FINDSTR "STATE"
    sc.exe qc fdphost | FINDSTR "START_TYPE"
    sc.exe query fdrespub | FINDSTR "SERVICE_NAME"
    sc.exe query fdrespub | FINDSTR "STATE"
    sc.exe qc fdrespub | FINDSTR "START_TYPE"
    Get-ItemProperty -Path HKLM:SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters -Name SMB1,SMB2 | FORMAT-LIST -Property SMB1,SMB2
    Get-ItemProperty -Path HKLM:SYSTEM\CurrentControlSet\Services\LanmanWorkstation -Name DependOnService | FORMAT-LIST -Property DependOnService
    Get-ItemProperty -Path HKLM:SYSTEM\CurrentControlSet\Services\Browser\Parameters | FORMAT-LIST -Property MaintainServerList

    Note: If you have SMBv2 enabled you automatically get SMBv3. When I do a Get-SmbConnection it shows the Dialect/Protocol for my other Win10 PC as 3.1.1 and my Router/USB File Share as 1.5

    Note: I have to use SMBv1 Client, due to using my routers USB File Sharing.

    Here are the services I've found that seem to affect using WSD Discovery Method with SMBv2/v3
    Service | Default Startup Type | Startup Type For WSD
    =====================================================
    Function Discovery Provider Host | Manual | Automatic Delayed
    Function Discovery Resource Publication | Manual | Automatic Delayed
    SSDP Discovery | Manual | Automatic Delayed
    UPnP Device Host | Manual | Automatic

    Note: UPnP Device Host is set to it's default startup type and it' never running, so not sure it belongs in the list?

    Note: I've noticed the following with Function Discovery Provider Host running and starting the Function Discovery Resource Publication ... the Discovery Method changes to WSD from Netbios in File Explorer > Network. Now what that exactly means, well your guess is as good a mine *Smile
     
    Eagle51, Mar 25, 2018
    #6
  7. Good stuff. I agree with it all. I don't mind which discovery method is used mind you. I just wished it actually worked. On my W10 Home computer, the FDRP service just dies even though the service displays it is running when I open services.msc. I know this by looking in Network Places on the other computers on my network. The W10 Home is not found in the list. When I restart the service, bam! It comes back. As for NetBIOS, that discovery method and using one computer (with the Computer Browser service on) to maintain the list in a mixed Windows network environment consistently works.

    I don't know where MS is trying to take us in terms of a home networking methodology, but I hope they get there soon and tell us what to expect. I hope it's not that HomeGroup crap either. Every update is causing me hours of frustration getting my file sharing to work again. I make changes and the updates seems to revert my changes to MS defaults. Mind-boggling.
     
    lintek25475, Mar 25, 2018
    #7
  8. Eagle51 Win User

    WSD vs Netbios Network Discovery

    Hey lintek25475,
    You don't need to worry about HomeGroup ... it has been deprecated and already removed in Insider Previews (starting with 17063). So, I expect HomeGroup will be gone in the upcoming Spring Creators Update (RS4) in a few weeks.
     
    Eagle51, Mar 25, 2018
    #8
  9. Oh no. Guess what I just discovered. Like I said, it doesn't really matter which discovery method is used. Just want it to work. I know NetBIOS does. But W10 Home computer name disappears in Network Places when not using NetBIOS which means WSD is being used. So I performed another tweak.

    - Disabling NetBIOS over TCP/IP for all adaptor properties
    - Turn on Network Discovery from Advanced Sharing Settings>Network discovery
    - (This was the first additional tweak) On the W10 Home computer uncheck the box for "Turn on automatic setup of network connected devices"
    - Disable the Computer Browser service on all
    - Set FDRP (publication) and FDPH (provider) services to "manual"
    - (This was the second additional tweak) On the W10 Home computer I set HomeGroup Provider service from "manual" to "automatic"

    Now all the computer names are displayed and stable. But, you mention MS is going to get rid of HomeGroup. That's the thing which makes WSD stable in my mixed network environment.
     
    lintek25475, Mar 26, 2018
    #9
  10. Bree New Member
  11. It never ends. I guess I will have to prepare for the worst "again".
    *Banghead
     
    lintek25475, Mar 26, 2018
    #11
  12. Eagle51 Win User
    I've found those 2 need to be set to Automatic Delayed and yes it does take a few seconds for things to show up in File Explorer > Network.

    Granted I don't have a Win7 PC in the mix and I know it doesn't help you, but I just did a clean install (1709) on my son's laptop and it sees the other 2 Win10 PC's on my network using WSD and SMBv2/v3 ... So it can/does work ...

    Note: If I have time I'll disable Netbios and see what happens.

    1. Discovery Type shows as WSD
    2. Netbios is set to default for the adaptors
    3. SMBv1 NOT installed/enable
    4. FDRP and FDPH startup type set to Automatic Delayed and they are running
    5. SSDP startup type set to Manual and it is running
    6. Computer Browser startup type set to Disabled
    Note: Since it's tied to SMBv1 ... I don't think it matters what it's set to, when SMBv1 is not installed.
    7. HGP and HGL startup type set to Disabled
     
    Eagle51, Mar 26, 2018
    #12
  13. jimbo45 Win User

    WSD vs Netbios Network Discovery

    Hi folks.

    Sorry I can't answer the query but a PLEASE to any Ms staffer etc reading these Forums (and Im sure they do). :

    Can you get some sort of Networking that just works straight out of the box so people's NAS's, Linux Samba servers,Androids phones, tablets,iPhones, Smart TV's and of course other Windows laptops/computers!! can see and connect to Windows shares (and the other way around too - Windows should be able to connect to those devices).

    I've been using Windows since Windows 3.11 that's a long time - and Windows Networking has always been randomly problematic.

    I've also used Linux for years too -- and Linux Networking has for me always worked straight out of the box - only rarely if using some rare type of Wifi hardware was there a problem --certainly never had problem on LAN's.

    Networking is an essential these days -- even for small "mom and pop" installations - so PLEASE Ms FIX IT.

    For the rest I like Windows 10 - easiest install and apart from Networking least problematic Windows yet so don't undo all the good work by hosing up Networking nearly every time there's an update. !!!

    Cheers
    jimbo
     
    jimbo45, Mar 26, 2018
    #13
  14. I guess this post should be considered "solved".
     
    lintek25475, Mar 26, 2018
    #14
  15. According to this article on Technet (Stop using SMB1 | Storage at Microsoft) SMBv1 is dead, The network folder in file explorer will no longer populate properly unless you go through a whole lot of garbage every time you reboot or you'll manually have to search for assets on the remote PCs. In a small home or business network that is BS. One shouldn't need a Microsoft certified tech or admin to run a 4 PC peer to peer network...which is what HomeGroup was supposed to do, but making it work is an even bigger pain in the neck (I finally have a semi stable HomeGroup, but what it took to get there was unbelievable and I couldn't tell you for sure how I managed it...and now it's going away in the next big update).
     
    sewing1243, Apr 5, 2018
    #15
Thema:

WSD vs Netbios Network Discovery

Loading...
  1. WSD vs Netbios Network Discovery - Similar Threads - WSD Netbios Network

  2. Network discovery

    in Windows 10 Gaming
    Network discovery: I am using Windows 10. I have set up a disk drive on the Wi-Fi router, but I cannot see it on Windows file explorer under Network. Even though I turn on network discovery, I still cannot see my network devices. Please help! Thank you so much.b...
  3. Network discovery

    in Windows 10 Software and Apps
    Network discovery: I am using Windows 10. I have set up a disk drive on the Wi-Fi router, but I cannot see it on Windows file explorer under Network. Even though I turn on network discovery, I still cannot see my network devices. Please help! Thank you so much.b...
  4. Network discovery

    in Windows 10 Network and Sharing
    Network discovery: I am using Windows 10. I have set up a disk drive on the Wi-Fi router, but I cannot see it on Windows file explorer under Network. Even though I turn on network discovery, I still cannot see my network devices. Please help! Thank you so much.b...
  5. Network Discovery

    in Windows 10 Ask Insider
    Network Discovery: I have a server running windows server 2008 r2 and the network discovery is on. On why windows 10 pc I don't see it. I can see my windows 10 machine on the server-side but not the other way. Any solutions, or suggestions. I would greatly appreciate it. Thanks. submitted by...
  6. Network Discovery

    in AntiVirus, Firewalls and System Security
    Network Discovery: Hi I wanted to know more about network discovery and can someone view files when turned on? https://answers.microsoft.com/en-us/windows/forum/all/network-discovery/fe481712-64da-43d8-94af-2b05f88c1d13
  7. network discovery

    in Windows 10 Network and Sharing
    network discovery: I am trying to add a printer connected to another PC, both win10Pro although I can see the other pc when I try to connect the printer get a message saying contact network admin for permissions. Pc #2 has been shared, same with printer, files and sharing activated, I read...
  8. Network Discovery.

    in Windows 10 Network and Sharing
    Network Discovery.: Network Discovery. I added a USB memory stick to my router (as suggested by Computer Active) I tried to access it from my laptop by trying \\192.168.1.1 (My router default gateway) as suggested in the article. It came back with Network Discovery must be switched on - - - - -...
  9. Network discovery

    in Windows 10 Network and Sharing
    Network discovery: Is it safe to leave netwrok discovery on and file sharing off? Because I was just wondering if I should turn it off for my home computer since other devices have had virus before. Can I get a virus if I leave network discovery on and file sharing off, if I have another...
  10. NetBIOS discovery

    in Windows 10 Network and Sharing
    NetBIOS discovery: Hi---one of computers connected to home LAN running Windows 10 can't be viewed in Network control panel of others. What are the services required to be started on both guest and host computers to show local computer automatically in Explorer under Network branch? I have...

Users found this page by searching for:

  1. wsd netbios

    ,
  2. windows 10 wsd discovery

    ,
  3. discovery wsd

    ,
  4. netbios vs wsd,
  5. force netbios update,
  6. DISCOVERY METHOD WSD,
  7. wsd netbios windows10,
  8. discovery method ssdp wsd,
  9. WHY ONLY WSD DISCOVERY METHOD IS SHOWING IN MY NETWORK,
  10. network discovery wsd not netbios?,
  11. Netbios over TCP/IP is switched off wds,
  12. netbios discovery issues on windows 10,
  13. windows disable wsd force netbios,
  14. force windows to use netbios instead of wsd,
  15. nas discovery on wsd or netbios