I have created an app whose only UI is a windows task bar icon. When the app is started directly (e.g. double click it in Windows explorer), it shows task bar icon correctly. I need to make sure this app is always running. For that, I created a windows service in C# which checks every 10 seconds if the app is still running and if not, it will restart it by calling
System.Diagnostics.Process.Start("MyApp.exe");
The process is started as I can see it from the task manager. However, I cannot find task bar icon. One thing I noticed is that it runs under System user name when it is started from Window Service.
How can I make the task bar icon visible when started from Windows Service?