Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ftp'ing to unix

Status
Not open for further replies.

jawon

Programmer
Feb 6, 2003
31
US
I have html files on a Windows pc that I'd like to schedule for ftp'ing to a unix box with a webserver. Is the Task Scheduler what I need. How do I set it up and what's the code I'd need?
 
We use PUTTY and its companion utility PSCP to transfer files via ssh...avail at

This assumes you have telnet/ssh access to the unix box. Write a simple batch script using the parameters and syntax explained in the putty docs and call that script from the task scheduler.

Sample script webup.bat included below:

pscp -v -p -pw [serverpasword] \\Server2k-a\750_zip\zip\localbak.zip [PuttyProfileName]:/home/backups/local
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top