Other computers do not appear under Network
Browsing has moved from the old master browser to two services that are off by default on most installs.
What you see
\\pcname works perfectly but the machine is invisible in the Network folder. Common after a feature update, which resets the network profile to Public.
What is actually wrong
The Computer Browser service and SMB1 are gone. Discovery now depends on Function Discovery Resource Publication and the SSDP/UPnP host, both of which are disabled when the network is classified as Public.
Codes and articles
Fixes (2)
Put the network back on the Private profile
The profile has flipped to Public — which it does after most feature updates and after any adapter change.
Check what the machine thinks it is on.
Get-NetConnectionProfile | Format-Table Name,InterfaceAlias,NetworkCategorySet it to Private — only on a network you control.
Set-NetConnectionProfile -InterfaceAlias 'Ethernet' -NetworkCategory PrivatePublic exists to make the machine invisible on hotel and café networks. Setting it to Private on such a network exposes shares to strangers, so this is a decision about where the machine is, not a formality.
Confirm the discovery firewall rules are now enabled.
Get-NetFirewallRule -DisplayGroup 'Network Discovery' | Format-Table DisplayName,Enabled,Profile
Start the two services discovery actually uses
The profile is already Private.
Check the four services involved.
Get-Service FDResPub,fdPHost,SSDPSRV,upnphost | Format-Table Name,DisplayName,Status,StartTypeSet them to start automatically and start them.
'FDResPub','fdPHost','SSDPSRV','upnphost' | ForEach-Object { Set-Service $_ -StartupType Automatic Start-Service $_}
FDResPub is what publishes this machine to others; fdPHost is what discovers them. Fixing only one gives you a machine that can see everybody or be seen by everybody, but not both.
Do the same on the machines that should be visible — discovery is not one-sided.
Get-Service FDResPub,fdPHost | Format-Table Name,StatusWhere this stops. This write-up was written and checked by hand. It says what each step changes, how to confirm it worked and how to reverse it, and anything destructive is flagged before you reach it. If it does not match what your machine is doing, search the Support Centre for the exact code or message — and when something needs a person, get in touch.