Just 'upgraded to W 10 on a couple of my computers, one to Home and the other to Pro, and found that they, and my MS Surface (W10 pro) and older W7 lappy all show up in the 'Network' section of file explorer. However, on the W10 devices, my NAS and my FoxT2 do not show up on any of any of the W10 computers' 'Network' section of file explorer. In addition, if you try to 'map a network drive', the NAS (or the Fox etc.) aren't displayed on the network of the W10 machines. After much Googling, I found the cause of the 'problem' and its solution.
The problem is that by default, Windows 10 runs SMB2/3 and the FoxT2 and my ReadyNAS seems not to like 'it up em', and won't display in the 'Network' section of explorer or the network Browse window, although you can still access/connect by using \\IPaddress\ShareName.
The solution is to disable SMB2/3 on the W10 devices as per the following lines at an elevated command prompt and following a reboot, all will be present and correct.
To disable SMBv2 and SMBv3 on the SMB client, run the following commands:
sc.exe config lanmanworkstation depend= bowser/mrxsmb10/nsi
sc.exe config mrxsmb20 start= disabled
And for completeness:
To enable SMBv2 and SMBv3 on the SMB client, run the following commands:
sc.exe config lanmanworkstation depend= bowser/mrxsmb10/mrxsmb20/nsi
sc.exe config mrxsmb20 start= auto
To disable SMBv1 on the SMB client, run the following commands:
sc.exe config lanmanworkstation depend= bowser/mrxsmb20/nsi
sc.exe config mrxsmb10 start= disabled
To enable SMBv1 on the SMB client, run the following commands:
sc.exe config lanmanworkstation depend= bowser/mrxsmb10/mrxsmb20/nsi
sc.exe config mrxsmb10 start= auto
But see Fenlander's post below before doing this.