8

When using Microsoft's Remote Desktop Connection, one can set certain local drives to be available on the remote machine.

On the remote box they show up in Explorer as 'E on LOCALBOX' and provide a simple way to copy files back and forth.

On Server Core installations there is no Explorer, so how can I access the drives from the command line?

When using third party file managers that run on Server Core, the drives show up as 'System Folder' but am I unable to open them.

Peter Hahndorf
  • 13,763
  • 3
  • 37
  • 58

2 Answers2

11

On the command line:

\\tsclient\c

Either use Powershell, or map the UNC to a drive letter.

enter image description here

Ryan Ries
  • 55,011
  • 9
  • 138
  • 197
  • I noticed myself that typing '\\tsclient\c' did work in xplorer2 but using cmd.exe did not. But you are right, it works in PowerShell and mapping it works as well (even though I'm sure I tried that before). – Peter Hahndorf Jan 30 '13 at 14:54
0

To quickly map and use from the command prompt:

pushd \\tsclient\c

When you're done:

popd 
Eric Jarvi
  • 21
  • 2