I have two Windows 10 computers on the same home network. Prior to the 1803 update I used to keep them in sync by sharing a folder on one, connecting to it on the other, and using sync software. The update has broken this.
Now I can always ping the other machine by IPv4 address, but most of the time pinging the hostname returns "Ping request could not find host $hostname". Occasionally it does work, and returns an IPv6 address.
So far, so annoying, but I could simply use the IP all the time in UNC paths instead of the hostname. However, even though I can ping the other machine, I cannot connect to the share. Trying to open \192.168.xxx.xxx through Explorer gets me a lengthy pause and then "Windows cannot access \192.168.xxx.xxx" with Error 0x80070035, "The network path was not found.".
How can I share files between the computers now?
Info that may be useful:
Other SuperUser questions that are (probably) not dupes, but may be related:
After quite a lot of wasted hours I found... maybe a solution, maybe more of a workaround, elseweb: turning off and on the association of File & Print Sharing with the network adapter on the target computer (the one whose share you're trying to connect to) appears to fix it. So far the fix has stuck for me, but others have reported it only lasting until the next reboot, or possibly (if on wifi) the next network change.
Cycling this can be put in a Powershell script:
Disable-NetAdapterBinding -name "adaptername" -ComponentID ms_server
Enable-NetAdapterBinding -name "adaptername" -ComponentID ms_server
Needs to be run as Administrator.
User contributions licensed under CC BY-SA 3.0