On Windows 8 I am running a windows service. This service is supposed to start a program by
Process.Start(exePath);
But the process exits immediately - even first line in the Main procedure is not executed. Before, when running the same process in same service on Windows 7, everything worked fine.
How can I make it work again? How to properly start a process from a windows service?