Copy Files from Linux to Windows using pscp Over SSH
Use the following program that comes with putty to copy files from *nix machine to a windows machine.
pscp -r -C User@Machine:/var/log/httpd/* c:\weblog\
-C Enables compression, which sounds like a good shout accross slow links.
Read other posts