Ok, I have seen: Change working directory to network share - however, it does not seem to work for me on Windows 10.
At work, I have a network share, let's say, at local IP address 20.0.0.1; so, first I go to a Windows Explorer window, type there \\20.0.0.1\, I get asked for a login and password; when I enter my credentials, I get a directory listing, no problem. (and I even get \\20.0.0.1\ as a node under Network in the tree view pane on the left of the Windows Explorer window.)
So, now I open Powershell as administrator, and try this:
PS C:\WINDOWS\system32> cd \\20.0.0.1\ cd : Cannot find path '\\20.0.0.1\' because it does not exist. At line:1 char:1 + cd \\20.0.0.1\ + ~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (\\20.0.0.1\:String) [Set-Location], ItemNotFoundException + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.SetLocationCommand Same for cmd.exe, ran as Administrator:
C:\WINDOWS\system32>pushd \\20.0.0.1\ The network name cannot be found. Net use does not work either:
C:\WINDOWS\system32>net use Y: \\20.0.0.1\ System error 67 has occurred. The network name cannot be found. ... and yet, the server is fully pingable:
C:\WINDOWS\system32>ping 20.0.0.1 Pinging 20.0.0.1 with 32 bytes of data: Reply from 20.0.0.1: bytes=32 time<1ms TTL=64 Reply from 20.0.0.1: bytes=32 time<1ms TTL=64 Ping statistics for 20.0.0.1: Packets: Sent = 2, Received = 2, Lost = 0 (0% loss), Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 0ms, Average = 0ms Control-C ^C How can I cd into this network share from a terminal (either cmd, or Powershell)?
20.0.0.1is only the machine, you need to tell the command where to go on the machine, e.g if it's a windows computer\\20.0.0.1\c$. also, only PowerShell supports UNC Path incd\\20.0.0.1\`would mount the "root" folder (that is, the "folder" that contains the collection of folders that I see, when I enter\\20.0.0.1\`in Windows Explorer)! Feel free to post this as an answer, I'll accept it ...\\20.0.0.1are the shares that are enabled on that machine, excluding the standard ones likec$. So it is not a real folder, it's only there to help you navigate through windows explorer / networks