@rpardee Your scp client on your windows box should be able to copy independent of any ssh server you are running. If you are running a cygwin variant on your Windows box, this shouldn't be a problem at all. PuTTY can be a little trickier, but I don't recall ever having problems with scp to or from linux.
@rpardee I mean personally, I would flip the transaction and pull from the linux with the windows client. Having said that:
ssh user@remote_host -t "scp local_file remote_user@remote_host:/remote/path"
You can execute a remote command over the existing ssh session as above by using the -t flag. So, you could use your existing session to run scp.
@rpardee Yeah, it sends any command. In that example it was sending the scp command.
@sirgeefive woah--trippy! So that sends the scp command to my windows host to do a pull from linux into windows?