I have few console-applications processes that I run under windows. Each process runs under separate window and it looks messy. Is there a way to unite the processes under one hub that will manage them?
Asked
Active
Viewed 42 times
0
-
What kind of work do these console applications do? If they're doing daemon-y (server) things, you might be better served using services instead. Any UI (if necessary) would then be separate from the actual work they're doing. – Luaan Aug 24 '16 at 08:35
1 Answers
1
You can create new console application that will launch others with special parameters (to hide windows) and receive their standart output, so it will be possible to show output from all processes in your window.
In some cases alternative way could be to convert those processes to Windows services.
Update: googled for quick example. It is here or in this SO question