I am trying to write a process monitoring service. This service should restart a Windows store app if it is not running.
Is it possible for Windows service to start desktop apps?
This works if I run it as a console app in C#
Process.Start("C://myapp.exe");
But when I use it in a service. Nothing happens.