Program to control multiple instances of other program

06/22/2017 20:54 Buckyx#1
Hey guys I have developed working application(C# WinForms) which works in background mostly 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/24/2017 18:01 Njahs#2
[Only registered and activated users can see links. Click Here To Register...]

You can either just kill an instance of your program or somwhow tell it that it needs to shut down.
An easy approach would be using files. The instance of the program waits for the creation / a specific content /... of a file and exits.

Better (and more difficult) solutions are named [Only registered and activated users can see links. Click Here To Register...].