0

How do I access my network folders in a cmd window?

When I am trying to access as cd \\computername, then it outputs an error message saying:

CMD does not support UNC paths as current directories.

Greenonline
  • 2,390
ziaur
  • 1

1 Answers1

1

Use pushd instead of cd. pushd to create a temporary virtual drive. When you're done, use popd to delete it and it goes back to your previous directory automatically. Something like:

C:\a\local\path> pushd \\somewhere

And after you're done use popd.

Ludwig
  • 203