Delphi: Is it possible to run short applications from a service?

I created a scheduler. At first it was streaming, but due to memory leaks and shared tasks, I switched to subprocesses.

The service starts subprocesses for N minutes or at a specific time. I ended up with everything, but now I'm not sure if the service can run the application or not?

I want to use this as a processfarm - like PostgreSQL on Windows. But I want to avoid that vivusscanners "feed" (block) my subprocesses, and I need all the rights to run them.

Can I do thins under any OS from WinXP to Win7?

What do I need to think, what I need to calculate, etc.?

Thanks for every answer: dd

+3
source share
1 answer

Yes, services can run other programs.

+2
source

Source: https://habr.com/ru/post/1753896/


All Articles