need some help to make a simple program or something...

x3ro

Senior member
Jun 27, 2002
401
0
0
Basically,

I'm randomly copying varied named files from my computer to three separate servers. It's becoming a real PITA to open three separate folders, and copy and paste the files in each one, over and over. It's at work, so I have no control over how their network works.

I really would like to create a simple program or something that I can drag and drop the files onto (varied amounts of the files... anywhere from 1 file to 5 files) and have it automatically copy the files to all three servers...

I know absolutely nothing about programming, but I've had a few people help me on some BAT files, but they wont handle multiple files drag and dropped at once...

Any help?!
 

EagleKeeper

Discussion Club Moderator<br>Elite Member
Staff member
Oct 30, 2000
42,589
5
0
Setup a batch file to copy all files in a identified "source" folder to the target systems.
Drag/drop the desired files to the "source" folder and run the batch file.
 

LS

Member
Jul 31, 2001
68
0
0
Put this into a batch file. Change the copy destinations to your server's names. This batch file will handle multiple files dropped onto it.


:loop
if [%1]==[] exit
copy %1 F:\server1
copy %1 \\server2
copy %1 \\10.1.0.3
shift
goto loop