Program to control multiple instances of other program

06/22/2017 20:52 Buckyx#1
Hey guys I have developed working application which works in backgroun and only logs actions so I can check if its working as expected

but I am running multiple instances(each with own executables and files) and its overwhelming to control all of them separately

whats a good approach/pattern to control them with another application? my idea is there would be a GUI with tabs for each application and would be able to run process and terminate process. preferably with option to copy and create another instances as needed
06/23/2017 11:17 Omdi#2
Your idea is the way to go.
I used the same approach for one of my projects.
Take a look at the screenshots :)

[Only registered and activated users can see links. Click Here To Register...]
06/23/2017 17:27 warfley#3
Well just a stupid question, why do you copy the files?

I mean you could simply use the same files, or, if there are config files which get edited, use a different working directory and link the files that don't get changed. Otherwise you are wasting space, and a lot of time, as copying is very slow, and also the files that dont change can be cached by the OS