Automating a process in Windows
January 31, 2005 10:38 AM
Subscribe
I'd like to automate some sort of synchronize process to run every time I start/close a
separate application in Windows. It should download a data file on launch and upload after exiting, without having to think about it. Is there any easy way to do this? Preferably using SFTP or another secure method.
posted by sfluke20 to computers & internet (13 comments total)
One option is to make the ftp site into a "network drive"; there are a couple of ways to do this under ms windows, samba being the best bet.
If that's not possible, WinSCP is a Windows SFTP client that'll allow you to click and edit files on the foreign server.
If that doesn't work, you can do explicitly what the above solutions really do: write a batch file to download the files, save it to a temporary location, start your editing application on the local copy, and upload the modified copy after your editing application closes.
posted by orthogonality at 11:17 AM on January 31, 2005