I have a WPF Application that starts several "hosted" processes, When i start my WPF Application, It will start the same .exe process couple of times with different arguments in each time.
I want to name each process with a different name (or description) - so I could detect which is which in Task manager (if i want to shutdown one of them).
I understand i cannot set a different process ImageName for each - since they are all the same actual .exe file.
Is there a way I atleast change the process description during run-time, or during its start time (change a ProcessStartInfo parameter or something like that) ..?