PuTTY
From Computer Club Wiki
PuTTY is a terminal application for Windows. The complete package comes with a few other useful programs such as pageant, for managing your ssh keys, and pscp, for securely copying files between computers.
pscp
- Install using the full Windows installer or by downloading the pscp.exe file to a folder such as c:\putty
- The easiest way to run pscp is by adding the directory to your path. This allows you to run the command from any directory.
- Right-click My Computer, go to Properties
- Select Advanced and click Environment Variables
- Scroll down in the System Variables box until you find Path, then click it and click Edit
- Add the pscp directory to the end of the value string (make sure there's a semicolon separating it from the previous entry)
- If you're confused about this, just guess and check, it shouldn't hurt things too badly
- Now open cmd from the Run dialog
- cd to the directory you want to copy something from and use a command similar to the following (typing in your password as necessary):
pscp myfile.txt bob@yakko.cs.wmich.edu:www/
- This will upload the file myfile.txt (from the current directory) to your www directory on yakko

