copy file to remote desktop drive

眉间皱痕 提交于 2019-12-05 19:43:42
Thomas Lee

If your host's c: drive is injected into a terminal services session, it just gets a new drive letter in the remote session.

On my network, my host machine's drives are injected into a VM and C: becomes M:.

So in that case, in the remote session:

copy c:\file.png m:\png

BUt perhaps a beter way - from your host:

Copy \\remote\c$\file.png c:\file.png

My remote session usually names the local resource tsclient, such that I can browse my local C drive with this PS command:

Set-Location \\tsclient\C

then I can do anything I would normally do on the local file system, e.g. copying:

copy \\tsclient\C\file.txt C:\file.txt

You can share a folder on your server and map it as network drive on the client computer. Then you can use the copy command.

At the server side you kann check and deplace the files manually or with a program.

if both are Windows 7 ; Just copy and paste done in ordinary window

If both machines run the same OS, then it can be achieved

If you are using mstc program then Go to Remote Desktop Connection -> Options -> Local Resources -> check the drivers option and connect to the remote PC. Then you can perform copy paste like usual

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!