• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

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

x3ro

Senior member
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?!
 
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.
 
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
 
Back
Top