Here's an easy way to use a 3rd computer/ftp-server to transer files from your local computer to the remote computer with a click, 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. Have fun :-) Rachel ----- Original Message ----- From: "Fredrik Malmquist" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, May 20, 2002 9:22 AM Subject: Re: File Transfer with WinVNC? > > Another option is to set up a company FTP server - then you have a central > > log of all traffic back and forth. It does require setting up an FTP > client > > you're comfortable with on the VNC client. Also, make sure not to allow > > anonymous uploads or you'll be sure to be abused. Also, firewall > > considerations will apply to make sure the client can make an FTP > connection > > to the FTP server. Given these, though, FTP is a good way to transfer > > files. > > FTP really sucks with firewalls, it uses random ports in the high port-range > that needs to be mapped and discovered, and those ports are random and > varies with the server you are running, and most of the time it doesn't > really say what numbers these ports are going to be. > > \Fredrik > --------------------------------------------------------------------- > To unsubscribe, mail [EMAIL PROTECTED] with the line: > 'unsubscribe vnc-list' in the message BODY > See also: http://www.uk.research.att.com/vnc/intouch.html > --------------------------------------------------------------------- --------------------------------------------------------------------- To unsubscribe, mail [EMAIL PROTECTED] with the line: 'unsubscribe vnc-list' in the message BODY See also: http://www.uk.research.att.com/vnc/intouch.html ---------------------------------------------------------------------