Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

copy file to remote desktop drive

I want to copy a file from my local C:\filename.png to the remote computer to which I am connected via remote desktop's C:\ drive.

Is it possible to copy using powershell or anyother terminal command?

I am using windows 7 (local PC) --- Remote Desktop (Windows Server 2003)

like image 968
coure2011 Avatar asked Sep 18 '25 08:09

coure2011


1 Answers

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
like image 69
Rickard Avatar answered Sep 20 '25 00:09

Rickard