How to transfer files to Amazon EC2 instance from my Windows 7 computer?
Windows remote desktop allows you to make certain drive on your local computer available on to the cloude instance.
Simplest way.
- Launch putty. Linux users can simply launch the terminal.
scp -i /path/to/PEM_File /path/to/file username@host_address.amazonaws.com:/path/to/copy
If you're looking for something UI based, I'd go with Filezilla.
The simplest way is to install an FTP service on your EC2 host, open port 21 in the firewall and Security Group, and use your FTP client of choice on Win7 to push the data up.
For bonus points, use SFTP instead over port 22. You don't mention the EC2 host OS, but if it's Windows you can use msftpsvr on the host and FileZilla on Win7.