I wrote this for transferring files to and from the vnc client/server. (Assumes Windows for client and server)
######################################## Here's an easy way to use a 3rd computer/ftp-server to transer files from your local computer to the remote computer, and both computers can be NATed as they will only act as clients. 1) Get an FTP account and add the directory: "transfer" to your ftp home 2) Create these directories on the local and remote computer: C:\transfer C:\transfer\send C:\transfer\receive 3) Make a file called "send.bat" and put inside that file (and change the ftp.server.com to your server): cd send ftp -s:..\send.txt ftp.server.com del /q *.* 4) Make a file called "receive.bat" and put inside that file (and change the ftp.server.com to your server): cd receive ftp -s:..\receive.txt ftp.server.com 5) Make a file called "send.txt" and put inside that file (change "username" and "password" with your ftp info): username password prompt cd transfer mput * by 6) Make a file called "receive.txt" and put inside that file (change "username" and "password" with your ftp info): username password prompt cd transfer mget * mdelete * by 7) Now put those 4 created files in C:\transfer When you want to send a file from your computer to the remote just copy (do copy just in case you have a backup) the file to C:\transfer\send and execute the "send.bat" file. At the remote computer, execute the "receive.bat" file, and the other way around. I have not run into any problems tranfering binary files and ascii files so I just leave it the default. ############################### ----- Original Message ----- From: "Akira Hatakeyama" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 12, 2002 10:01 PM Subject: Re: VNC Help > Greetings. > > On Mon, Aug 12, 2002 at 01:26:53PM -0300, Jones, Zico wrote: > > Does anyone know how to copy files from your local pc to the remote pc using > > vnc? > You cannot file transfer with VNC. But if you are using VNC, > remote PC and local PC are connected via IP, so you can use > several file transfer programs between them. See also FAQ #57. > > http://www.uk.research.att.com/vnc/faq.html#q57 <snip> _______________________________________________ VNC-List mailing list [EMAIL PROTECTED] http://www.realvnc.com/mailman/listinfo/vnc-list
