Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

I often need to send files from my computer to a bunch of servers, who are on the same domain and on Windows OS. The files are always uploaded at the same place (like C:\foo\bar) in each servers.

Now, you will be scared by what I'll say : I upload each files remotely by RDP (mounting my local disk) and placing them manually.

I found this really annoying, since we've got like 45 servers on Windows in my company.

The must would be to have a nice UI, with my list of servers, and an explorer to send remotely, letting me the choice for which of them I will work on.

Thanks you in advance guys. Sincerely, a lazy SU.

PS : I'm not against the use of scripts, but it could be nice to have an UI.

share|improve this question
Is it always the same list of servers? Is the shareing via remote desktop the only way to transfer files between the machines (due to a securty guideline?) – ChaosCakeCoder Feb 25 at 8:21
Yeah, always the same list (sometimes we add one...). And yep, actually our guideline forbids us any ftp/other transfert since we are working in production. Of course, when we need to send big files we use ftp, but files I want to send are tiny vbs scripts. – Robinson G. Feb 25 at 9:32
Just an random shot: could you not create a scheduled task on each server that copies the files from a common shared drive (like YourComputer/C$/vbs_scripts) every couple of hours? – ChaosCakeCoder Feb 25 at 9:42
Now that you say this, we have a mean of transfert by ftp on each server. Let me explain : Each morning our healthcheck script generate a .txt, this .txt is sent (by ftp) on a remote server (on our domain) and this server send a mail with all the .txt. Now the fact is, when I need to modify the structure of the script, I need to do it for the 50 servers. So yes, we can FTP. It's my bad to not have saying this before, i totally forget. What advice can you give me ? Thanks :) – Robinson G. Feb 25 at 10:03

1 Answer

After the comments (and if I understood you correctly): Use the FTP cmdline tools to process a textfile with the necessary ftp commands. Here should http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/ftp.mspx?mfr=true be helpful. Or you could use my favorite scripting engine Autohotkey. EDIT: typo ..

share|improve this answer
1  
Methinks you meant "commands", unless your FTP server used to be run by the British Army. – cpast Feb 25 at 10:32
@cpast: sure ... you could also use commandos, but they are just to epxensive. But it would be very secure. Just use 50 soldies to do the task... would also increase the overall security :-) – ChaosCakeCoder Feb 25 at 10:38
Thanks dude, will take a look at it. Anyway I will try to share my scripts folders, so I can automate it with a batch. – Robinson G. Feb 25 at 11:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.