UNC Paths in Windows Command Shell
Problem:
Copy and other command shell commands don’t work with UNC paths, i.e. \\server\dir.
Solution:
Use pushd <path> to temporarily assign a drive letter and map it to the path.
pushd \\server\rootfolder\subfolder
When done, use popd to unmap the letter.
No comments yet.