IT strongly recommends that you configure your clients as described in the online X-windows (X11) and SSH documents (Windows / Linux/MacOSX).
If you want to be able to use PuTTY command line on your Windows computer, first, install and configure the PuTTY client to connect a remote host. Now add the PuTTY install path to your Windows system PATH environment variable. This will allow you to use PuTTY's command line mode on your Windows computer.
C:\Program Files (x86)\PuTTY\.;C:\Program Files (x86)\PuTTY.
Please review PuTTY command line documentation for complete details if you would like to use it in a Windows cmd window.
In a Windows (cmd) window or adding a line to a batch script, use
putty.exe -ssh traine@darwin.hpc.udel.edu
or with X11 forwarding and running Xming, use
putty.exe -ssh -X traine@darwin.hpc.udel.edu
In a Windows (cmd) window or adding a line to a batch script, use
pscp traine@darwin.hpc.udel.edu:/lustre/scratch/traine/remote-file local-file
to copy a single file, remote-file, from account, traine, on the remote system, darwin.hpc.udel.edu, to local-file on your local system in the current directory, or
pscp -r traine@darwin.hpc.udel.edu:/lustre/scratch/traine/remote-dir local-dir
to copy an entire directory, remote-dir, from account, traine, on the remote system, darwin.hpc.udel.edu, to local-dir on your local system in the current directory.
In a Windows (cmd) window or adding a line to a batch script, use
pscp local-file traine@darwin.hpc.udel.edu:/lustre/scratch/traine/remote-file
to copy a single file, local-file, on your local system in the current directory, to account, traine, on remote host, darwin.hpc.udel.edu, in the specified directory for remote-file, or
pscp -r local-dir traine@darwin.hpc.udel.edu:/lustre/scratch/traine/remote-dir
to copy an entire directory, local-dir, on your local system in the current directory, to account, traine, on remote host, darwin.hpc.udel.edu, in the specified directory for remote-dir.
Please review PuTTY command line documentation for complete details if you would like to use it in a Windows cmd window. In the following examples, we have two saved sessions configured called darwin-traine and x-darwin-traine based on configuring your client as described in the online X-Windows (X11) and SSH document
In a Windows (cmd) window or adding a line to a batch script, use
putty.exe -load "darwin-traine"
or with X11 forwarding and running Xming, use a saved session configured with X11 forwarding
putty.exe -load "x-darwin-traine"
In a Windows (cmd) window or adding a line to a batch script using a saved session called darwin-traine with username traine and encryption cipher selection policy set to Arcfour (SSH-2 only), use
pscp darwin-traine:/lustre/work/it_css/traine/remote-file local-file
using arcfour cipher to copy a single file, remote-file, from account, traine, on the remote system, darwin.hpc.udel.edu, to local-file on your local system, or
pscp -r darwin-traine:/lustre/work/it_css/traine/remote-dir local-dir
using arcfour cipher to copy an entire directory, remote-dir, from account, traine, on the remote system, darwin.hpc.udel.edu, to local-dir on your local system.
In a Windows (cmd) window or adding a line to a batch script using a saved session called darwin-traine with username traine and encryption cipher selection policy set to Arcfour (SSH-2 only), use
pscp local-file darwin-traine:/lustre/work/it_css/traine/remote-file
using arcfour cipher to copy a single file, local-file, on your local system in the current directory, to account, traine, on the remote system, darwin.hpc.udel.edu, in the specified directory for remote-file on your remote system, or
pscp -r local-dir darwin-traine:/lustre/work/it_css/traine/remote-dir
using arcfour cipher to copy an entire directory, local-dir, on your local system in the current directory, to account, traine, on the remote system, darwin.hpc.udel.edu, in the specified directory for remote-dir on your remote system.