Skip to main content

windows - Cannot see computers on network


I have three Windows 10 machines on a network, on the same default network: WORKGROUP.


One of them can see all three, call it Media-PC. The other two can only see each other but not Media-PC, call them desktop-1 & desktop-2.


I have turned on the following services, DNS Client, Function Discovery, SSDP Discovery & UPnP Service.


Network discovery is running on all three machines. I can ping all three computers from each other.


I cannot figure out why desktop-1 & 2 can't see Media-PC.


Media-PC can see them but they can only see each other.


Hope someone can help me with this.



Answer



Network discovery has since always been a painful subject in all versions of Windows, especially now when so many security fixes were applied.


I have collected below all the fixes I know. You might try them one by one, undoing the ones which do not help.


Homogenous account types


All the computers must be logged-on with the same type of account. Meaning that all must have a Microsoft account or a local account, as mixing account types will not work.


If you change an account type that has created some network shares, they should be deleted and recreated.


Network Reset


In PC Settings, Network & Internet Settings, click Network Reset and in the next screen click Reset now.


This will reset all network settings, so you may have to recreate any defined VPNs and re-enable settings such as Network Discovery.


Computer Browser service broken


As described in the Microsoft article SMBv1 is not installed by default in Windows 10 Fall Creators Update 2017 and Windows Server, Semi-annual Channel says :



The Computer Browser service relies on the SMBv1 protocol to populate the Windows Explorer Network node (also known as "Network Neighborhood"). This legacy protocol is long deprecated, doesn't route, and has limited security. Because the service cannot function without SMBv1, it is removed at the same time.


However, if you still have to use the Explorer Network in home and small business workgroup environments to locate Windows-based computers, you can follow these steps on your Windows-based computers that no longer use SMBv1:



  1. Start the "Function Discovery Provider Host" and "Function Discovery Resource Publication" services, and then set them to Automatic (Delayed Start).

  2. When you open Explorer Network, enable network discovery when you are prompted.


All Windows devices within that subnet that have these settings will now appear in Network for browsing. This uses the WS-DISCOVERY protocol. Contact your other vendors and manufacturers if their devices still don't appear in this browse list after the Windows devices appear. It is possible they have this protocol disabled or that they support only SMBv1.



If this does not help, you may enable SMB 1.0/CIFS File in Programs and Features -> Turn Windows features on or off. Enable both the SMB 1.0/CIFS Client and Server. The disadvantage is that you will be vulnerable to viruses that exploit SMB v1.0 vulnerabilities such as Wanna Cry, although one of your computers must first be infected for the virus to propagate to the others using this vulnerability.


Re-check network Discovery


In an elevated Command Prompt run


netsh advfirewall firewall set rule group="Network Discovery" new enable=Yes

Required Windows services


In the Services console, ensure the following services have a Startup type of "Automatic" and status is "Running".



  • Function Discovery Provider Host - Automatic (Delayed Start)

  • Function Discovery Resource Publication - Automatic (Delayed Start)

  • DNS Client - Automatic

  • SSDP Discovery - Automatic

  • UPnP Device Host - Automatic (if you use UPnP)


Missing master browser computer


Use regedit on the computer you wish to always be the master browser, and navigate to the registry key:


HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Browser\Parameters

Change the value of MaintainServerList from Auto to Yes.


If it is missing, add a new String Value IsDomainMaster and set it to True.


You may need to reboot to activate this.


For more information see Specifying Browser Computers.


Add credentials for other computers


If you cannot see shares created by other computers, you may need to add reciprocal credentials to both computers.


Go to Control Panel, User Accounts, Manager your credentials, and click on Windows Credentials. Now click on Add a Windows Credential.


Add all your users as follows :



  • Internet or network address: The name of the other computer

  • User name: Other computer name or Microsoft account email address

  • Password: other computer's logon password


Press OK to save. A Network Reset might be required.


Check sharing options for your network profile


In Control Panel -> Network and Sharing Center -> Change advanced sharing settings, ensure that all "Turn On ..." and "Allow ..." options are checked for your type of profile (normally Private).


Rebind all network adapters


For hard problems, uninstalling all network adapters in the Device Manager and reboot may help. After the reboot, Windows 10 automatically re-installs the network adapters.


Comments

Popular Posts

Use Google instead of Bing with Windows 10 search

I want to use Google Chrome and Google search instead of Bing when I search in Windows 10. Google Chrome is launched when I click on web, but it's Bing search. (My default search engine on Google and Edge is http://www.google.com ) I haven't found how to configure that. Someone can help me ? Answer There is no way to change the default in Cortana itself but you can redirect it in Chrome. You said that it opens the results in the Chrome browser but it used Bing search right? There's a Chrome extension now that will redirect Bing to Google, DuckDuckGo, or Yahoo , whichever you prefer. More information on that in the second link.

linux - Using an index to make grep faster?

I find myself grepping the same codebase over and over. While it works great, each command takes about 10 seconds, so I am thinking about ways to make it faster. So can grep use some sort of index? I understand an index probably won't help for complicated regexps, but I use mostly very simple patters. Does an indexer exist for this case? EDIT: I know about ctags and the like, but I would like to do full-text search. Answer what about cscope , does this match your shoes? Allows searching code for: all references to a symbol global definitions functions called by a function functions calling a function text string regular expression pattern a file files including a file

How do I transmit a single hexadecimal value serial data in PuTTY using an Alt code?

I am trying to sent a specific hexadecimal value across a serial COM port using PuTTY. Specifically, I want to send the hex codes 9C, B6, FC, and 8B. I have looked up the Alt codes for these and they are 156, 182, 252, and 139 respectively. However, whenever I input the Alt codes, a preceding hex value of C2 is sent before 9C, B6, and 8B so the values that are sent are C2 9C, C2 B6, and C2 8B. The value for FC is changed to C3 FC. Why are these values being placed before the hex value and why is FC being changed altogether? To me, it seems like there is a problem internally converting the Alt code to hex. Is there a way to directly input hex values without using Alt codes in PuTTY? Answer What you're seeing is just ordinary text character set conversion. As far as PuTTY is concerned, you are typing (and reading) text , not raw binary data, therefore it has to convert the text to bytes in whatever configured character set before sending it over the wire. In other words, when y

networking - Windows 10, can ping other PC but cannot access shared folders! What gives?

I have a computer running Windows 7 that shares a Git repo on drive D. Let's call this PC " win7 ". This repo is the origin of a project that we push to and pull from. The network is a wireless network. One PC on this network is running on Windows 10. Let's call this PC " win10 ". Win10 can ping every other PC on the network including win7 . Win7 can ping win10 . Win7 can access all shared files on win10 . Neither of the PCs have passwords. Problem : Win10 cannot access any shared files on win7 , not from Explorer, nor from Git Bash or any other Git management system (E-Git on Eclipse or Visual Studio). So, win10 cannot pull/push. Every other PC on the network can access win7 shared files and push/pull to/from the shared Git origin. What's wrong with Windows 10? I have tried these: Control Panel\All Control Panel Items\Network and Sharing Center\Advanced sharing settings\ File sharing is on, Discovery is on, Password protected sharing is off Adapte